From 5446cb441320876feada2fea60447eeb35dd5a55 Mon Sep 17 00:00:00 2001
From: Marco Almeida
Date: Tue, 29 Aug 2023 18:07:16 +0100
Subject: [PATCH 01/37] Do not remove "sale date from" when the sale is still
active
Do not remove "sale date from" when the sale is still active, as in some legislations it's mandatory to show the start and end date of sales, and developers can get it from this field.
Closes #34696
---
plugins/woocommerce/includes/wc-product-functions.php | 1 -
1 file changed, 1 deletion(-)
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( '' );
From b63fd9986d617d884eee8f3012f9576c3fb24f0c Mon Sep 17 00:00:00 2001
From: Jon Lane
Date: Wed, 20 Sep 2023 14:23:07 -0700
Subject: [PATCH 02/37] Update order status to cancelled
---
.../changelog/e2e-update-order-to-cancelled | 4 +++
.../e2e-pw/tests/merchant/order-edit.spec.js | 35 ++++++++++++++++++-
2 files changed, 38 insertions(+), 1 deletion(-)
create mode 100644 plugins/woocommerce/changelog/e2e-update-order-to-cancelled
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/tests/e2e-pw/tests/merchant/order-edit.spec.js b/plugins/woocommerce/tests/e2e-pw/tests/merchant/order-edit.spec.js
index 270f93ba851..ed6c13e500b 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 } ) => {
From 715c0d11705c0ba9a2ebddee9544bbf29aeaed82 Mon Sep 17 00:00:00 2001
From: Jon Lane
Date: Wed, 20 Sep 2023 14:50:59 -0700
Subject: [PATCH 03/37] Add test to bulk update order status
---
.../changelog/e2e-bulk-update-order-status | 4 +
.../tests/merchant/order-bulk-edit.spec.js | 92 +++++++++++++++++++
2 files changed, 96 insertions(+)
create mode 100644 plugins/woocommerce/changelog/e2e-bulk-update-order-status
create mode 100644 plugins/woocommerce/tests/e2e-pw/tests/merchant/order-bulk-edit.spec.js
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/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..1fdf2490280
--- /dev/null
+++ b/plugins/woocommerce/tests/e2e-pw/tests/merchant/order-bulk-edit.spec.js
@@ -0,0 +1,92 @@
+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 for there to be 5 orders (plus a header and footer row)
+ await expect( page.getByRole( 'row' ) ).toHaveCount( 7 );
+
+ // 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();
+ } );
+
+} );
From 3d451e75a69cd4accf7a8ebc9cbe0deaaba26601 Mon Sep 17 00:00:00 2001
From: Jon Lane
Date: Thu, 21 Sep 2023 15:09:28 -0700
Subject: [PATCH 04/37] Remove count because other tests may have orders
---
.../tests/e2e-pw/tests/merchant/order-bulk-edit.spec.js | 3 ---
1 file changed, 3 deletions(-)
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
index 1fdf2490280..0a0619827d9 100644
--- 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
@@ -67,9 +67,6 @@ test.describe( 'Bulk edit orders', () => {
test( 'can bulk update order status', async ( { page } ) => {
await page.goto( 'wp-admin/admin.php?page=wc-orders' );
- // expect for there to be 5 orders (plus a header and footer row)
- await expect( page.getByRole( 'row' ) ).toHaveCount( 7 );
-
// expect order status 'processing' to show
await expect( page.locator( `#order-${ orderId1 }`).getByText( 'Processing') ).toBeVisible();
await expect( page.locator( `#order-${ orderId2 }`).getByText( 'Processing') ).toBeVisible();
From 5b8336cc8a3cd61601538e027feabb8072cc20b3 Mon Sep 17 00:00:00 2001
From: Marco Almeida
Date: Wed, 27 Sep 2023 10:01:56 +0100
Subject: [PATCH 05/37] Create changelog/39948-patch-4
---
changelog/39948-patch-4 | 4 ++++
1 file changed, 4 insertions(+)
create mode 100644 changelog/39948-patch-4
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
From 30d369adaa88ecb631e11bf5618028c1f6c35dcf Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Joni=20Erkkil=C3=A4?=
Date: Sat, 30 Sep 2023 16:05:40 +0300
Subject: [PATCH 06/37] Added aria-label to wrapper element
---
plugins/woocommerce/includes/wc-template-functions.php | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/plugins/woocommerce/includes/wc-template-functions.php b/plugins/woocommerce/includes/wc-template-functions.php
index 678cd1ac361..e2403851d0e 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' => '',
From e11afdc898034c53cff6a3f3919a28f51a6f851d Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Joni=20Erkkil=C3=A4?=
Date: Sat, 30 Sep 2023 16:05:55 +0300
Subject: [PATCH 07/37] Added changelog file
---
plugins/woocommerce/changelog/breadcrumb-accessibility | 4 ++++
1 file changed, 4 insertions(+)
create mode 100644 plugins/woocommerce/changelog/breadcrumb-accessibility
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
From 715b4ccc31943c908dff9ab51fc54c1859a6d3fd Mon Sep 17 00:00:00 2001
From: Niels Lange
Date: Fri, 13 Oct 2023 12:56:48 +0700
Subject: [PATCH 08/37] =?UTF-8?q?Add=20docs=20=E2=80=9CTranslating=20WooCo?=
=?UTF-8?q?mmerce=E2=80=9D?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
docs/localization-translation/README.md | 175 ++++++++++++++++++++++++
1 file changed, 175 insertions(+)
create mode 100644 docs/localization-translation/README.md
diff --git a/docs/localization-translation/README.md b/docs/localization-translation/README.md
new file mode 100644
index 00000000000..d3b608118fc
--- /dev/null
+++ b/docs/localization-translation/README.md
@@ -0,0 +1,175 @@
+# 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 [translate.wordpress.org](https://translate.wordpress.org/projects/wp-plugins/woocommerce/).
+
+To create custom translations:
+
+- For a simple approach, choose the [Loco Translate](https://wordpress.org/plugins/loco-translate/) plugin.
+- If you're more experienced, consider [Poedit ](https://poedit.net/).
+
+This document provides details on both methods.
+
+## 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 [translate.wordpress.org](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 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.
+
+ ![](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.
+
+ ![](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.
+
+ ![](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`).
+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 Loco Translate
+
+1. Install and activate the [Loco Translate](https://wordpress.org/plugins/loco-translate/) plugin.
+2. Go to the new Loco Translate menu item created in your Dashboard with five sub-sections.
+3. Go to the `Plugins` section, and select `WooCommerce`.
+
+ ![](https://woocommerce.com/wp-content/uploads/2012/01/loco-translate-woocommerce.png)
+
+4. Add new languages using the `Add New Language` link.
+
+ ![](https://woocommerce.com/wp-content/uploads/2012/01/loco-translate-new-language.png)
+
+5. Choose the language to add in the list, or enter the language ISO code (ex: `fr_FR`, `en_US` etc.), select the folder to add the translation files to, and click `Start Translating`.
+
+ ![](https://woocommerce.com/wp-content/uploads/2012/01/loco-translate-create-language.png)
+
+ > **Note:**
+ >
+ > - Loco Translate offers three different locations for where to create the translation. The best choice for your own translation is Custom, not just to prevent custom translations from being undone by updates, but also because it’s needed for strings in extensions like WooCommerce Subscriptions to be properly translated. Avoid the Author location since it’s inside the plugin and will be overwritten by extension updates, as well as the System location, which could be overwritten by translations from translate.wordpress.org.
+ > - If you encounter any technical issues while using Loco Translate, please get in touch with the Loco Translate support team: https://wordpress.org/support/plugin/loco-translate/
+
+6. Save when finished.
+ ![](https://woocommerce.com/wp-content/uploads/2012/01/loco-translate-translating-1.png)
+ > **Note:** When a new version of WooCommerce is released and updated on your site, you need refresh the .po file to look for new strings. Use the “Sync” button to find any new string to start translating.
+
+## Creating custom translations with PoEdit
+
+[Poedit ](https://poedit.net/) is a more advanced alternative to the [Loco Translate](https://wordpress.org/plugins/loco-translate/) plugin. Only advanced users or translators wishing to create a custom translation to WooCommerce should attempt this method.
+
+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.
+ ![](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.
+ ![](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;
+}
+```
+
+## Translating text without a localization file
+
+With the [Say what?](https://wordpress.org/plugins/say-what/) plugin, you can effortlessly translate or modify specific words without delving into a WordPress theme's `.po` file. No custom coding needed.
+
+Upon activation, the plugin prompts you to specify:
+
+1. **Original String**: The text you aim to translate. Check the plugin source code for the precise string.
+2. **Text Domain**: Use `woocommerce`.
+3. **Replacement Text**: The text you'd like to display in place of the original.
+
+## 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:
+
+![](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.
+
+If this is the case, then it is necessary to translate both these forms for your translation to work as expected. To do this, please use the Single and Plural tabs that show up in the translation section:
+
+![](https://woocommerce.com/wp-content/uploads/2023/03/Single_Plural_Loco_Translate-1.png)
From ab281ac1d21df65d3a8f87469a858e14ea2b9773 Mon Sep 17 00:00:00 2001
From: Niels Lange
Date: Fri, 13 Oct 2023 13:07:51 +0700
Subject: [PATCH 09/37] Fix *.md linting errors
---
docs/localization-translation/README.md | 34 ++++++++++++++-----------
1 file changed, 19 insertions(+), 15 deletions(-)
diff --git a/docs/localization-translation/README.md b/docs/localization-translation/README.md
index d3b608118fc..2c7663d92a6 100644
--- a/docs/localization-translation/README.md
+++ b/docs/localization-translation/README.md
@@ -32,18 +32,18 @@ If you’re new to translating, check out the [translators handbook](https://mak
### Downloading translations from translate.wordpress.org manually
-1. Go to https://translate.wordpress.org/projects/wp-plugins/woocommerce and look for your language in the list.
+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.
- ![](https://woocommerce.com/wp-content/uploads/2012/01/2016-02-17-at-09.57.png)
+ ![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.
- ![](https://woocommerce.com/wp-content/uploads/2012/01/2016-02-17-at-09.59.png)
+ ![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.
- ![](https://woocommerce.com/wp-content/uploads/2012/01/2016-02-17-at-10.00.png)
+ ![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`).
6. Upload to your site under `wp-content/languages/woocommerce/`. Once uploaded, this translation file may be used.
@@ -58,23 +58,23 @@ WooCommerce includes a language file (`.pot` file) that contains all of the Engl
2. Go to the new Loco Translate menu item created in your Dashboard with five sub-sections.
3. Go to the `Plugins` section, and select `WooCommerce`.
- ![](https://woocommerce.com/wp-content/uploads/2012/01/loco-translate-woocommerce.png)
+ ![screenshot](https://woocommerce.com/wp-content/uploads/2012/01/loco-translate-woocommerce.png)
4. Add new languages using the `Add New Language` link.
- ![](https://woocommerce.com/wp-content/uploads/2012/01/loco-translate-new-language.png)
+ ![screenshot](https://woocommerce.com/wp-content/uploads/2012/01/loco-translate-new-language.png)
5. Choose the language to add in the list, or enter the language ISO code (ex: `fr_FR`, `en_US` etc.), select the folder to add the translation files to, and click `Start Translating`.
- ![](https://woocommerce.com/wp-content/uploads/2012/01/loco-translate-create-language.png)
+ ![screenshot](https://woocommerce.com/wp-content/uploads/2012/01/loco-translate-create-language.png)
> **Note:**
>
> - Loco Translate offers three different locations for where to create the translation. The best choice for your own translation is Custom, not just to prevent custom translations from being undone by updates, but also because it’s needed for strings in extensions like WooCommerce Subscriptions to be properly translated. Avoid the Author location since it’s inside the plugin and will be overwritten by extension updates, as well as the System location, which could be overwritten by translations from translate.wordpress.org.
- > - If you encounter any technical issues while using Loco Translate, please get in touch with the Loco Translate support team: https://wordpress.org/support/plugin/loco-translate/
+ > - If you encounter any technical issues while using Loco Translate, please get in touch with [the Loco Translate support team](https://wordpress.org/support/plugin/loco-translate/).
6. Save when finished.
- ![](https://woocommerce.com/wp-content/uploads/2012/01/loco-translate-translating-1.png)
+ ![screenshot](https://woocommerce.com/wp-content/uploads/2012/01/loco-translate-translating-1.png)
> **Note:** When a new version of WooCommerce is released and updated on your site, you need refresh the .po file to look for new strings. Use the “Sync” button to find any new string to start translating.
## Creating custom translations with PoEdit
@@ -86,11 +86,15 @@ WooCommerce comes with a `.pot` file that can be imported into PoEdit to transla
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.
- ![](https://woocommerce.com/wp-content/uploads/2012/01/Screen-Shot-2013-05-09-at-10.16.46.png)
+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.
- ![](https://woocommerce.com/wp-content/uploads/2012/01/Screen-Shot-2013-05-09-at-10.20.58.png)
+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.
@@ -135,7 +139,7 @@ Upon activation, the plugin prompts you to specify:
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:
-![](https://woocommerce.com/wp-content/uploads/2012/01/not_translated.jpg)
+![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.
@@ -172,4 +176,4 @@ If some of your translated strings don’t show up as expected on your WooCommer
If this is the case, then it is necessary to translate both these forms for your translation to work as expected. To do this, please use the Single and Plural tabs that show up in the translation section:
-![](https://woocommerce.com/wp-content/uploads/2023/03/Single_Plural_Loco_Translate-1.png)
+![screenshot](https://woocommerce.com/wp-content/uploads/2023/03/Single_Plural_Loco_Translate-1.png)
From 428ce8ec4f4721f77912086ee71f44754880269c Mon Sep 17 00:00:00 2001
From: Niels Lange
Date: Fri, 13 Oct 2023 13:29:40 +0700
Subject: [PATCH 10/37] Save additional *.md liniting error
---
docs/localization-translation/README.md | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/docs/localization-translation/README.md b/docs/localization-translation/README.md
index 2c7663d92a6..20bb4da6150 100644
--- a/docs/localization-translation/README.md
+++ b/docs/localization-translation/README.md
@@ -73,8 +73,10 @@ WooCommerce includes a language file (`.pot` file) that contains all of the Engl
> - Loco Translate offers three different locations for where to create the translation. The best choice for your own translation is Custom, not just to prevent custom translations from being undone by updates, but also because it’s needed for strings in extensions like WooCommerce Subscriptions to be properly translated. Avoid the Author location since it’s inside the plugin and will be overwritten by extension updates, as well as the System location, which could be overwritten by translations from translate.wordpress.org.
> - If you encounter any technical issues while using Loco Translate, please get in touch with [the Loco Translate support team](https://wordpress.org/support/plugin/loco-translate/).
-6. Save when finished.
- ![screenshot](https://woocommerce.com/wp-content/uploads/2012/01/loco-translate-translating-1.png)
+6. Save when finished.
+
+ ![screenshot](https://woocommerce.com/wp-content/uploads/2012/01/loco-translate-translating-1.png)
+
> **Note:** When a new version of WooCommerce is released and updated on your site, you need refresh the .po file to look for new strings. Use the “Sync” button to find any new string to start translating.
## Creating custom translations with PoEdit
From 2361f0512a8b120f06413a6fccbdc5c37170fa64 Mon Sep 17 00:00:00 2001
From: Marco Almeida
Date: Fri, 13 Oct 2023 18:02:28 +0100
Subject: [PATCH 11/37] Create 39948-patch-4 changelog file
---
plugins/woocommerce/changelog/39948-patch-4 | 4 ++++
1 file changed, 4 insertions(+)
create mode 100644 plugins/woocommerce/changelog/39948-patch-4
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
From c4cbaf495bec72ff9929097e7a030eeedc2cbf2b Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Joni=20Erkkil=C3=A4?=
Date: Sat, 14 Oct 2023 09:39:08 +0300
Subject: [PATCH 12/37] Capitalize aria-label value
---
plugins/woocommerce/includes/wc-template-functions.php | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/plugins/woocommerce/includes/wc-template-functions.php b/plugins/woocommerce/includes/wc-template-functions.php
index e2403851d0e..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' => '',
From 3e9f2c29acc257d09f2130cfa8069f6b26847b16 Mon Sep 17 00:00:00 2001
From: Niels Lange
Date: Tue, 17 Oct 2023 09:40:15 +0700
Subject: [PATCH 13/37] Display full URL
---
docs/localization-translation/README.md | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/docs/localization-translation/README.md b/docs/localization-translation/README.md
index 20bb4da6150..6e11f7042d5 100644
--- a/docs/localization-translation/README.md
+++ b/docs/localization-translation/README.md
@@ -2,7 +2,7 @@
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 [translate.wordpress.org](https://translate.wordpress.org/projects/wp-plugins/woocommerce/).
+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:
@@ -22,7 +22,7 @@ Once this has been done, the shop displays in your locale if the language file e
## 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 [translate.wordpress.org](https://translate.wordpress.org/projects/wp-plugins/woocommerce/) for approval.
+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
From 80aad6da83e10cd15919cb432baa8db868193caf Mon Sep 17 00:00:00 2001
From: Niels Lange
Date: Tue, 17 Oct 2023 09:49:27 +0700
Subject: [PATCH 14/37] Explain how to locate the corresponding language code
---
docs/localization-translation/README.md | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/docs/localization-translation/README.md b/docs/localization-translation/README.md
index 6e11f7042d5..774998e504f 100644
--- a/docs/localization-translation/README.md
+++ b/docs/localization-translation/README.md
@@ -45,7 +45,10 @@ If you’re new to translating, check out the [translators handbook](https://mak
![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`).
+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
From 4a8c446007cf717711d17b1215af8ec072f10b05 Mon Sep 17 00:00:00 2001
From: Niels Lange
Date: Tue, 17 Oct 2023 09:52:28 +0700
Subject: [PATCH 15/37] Remove superlative sentence
---
docs/localization-translation/README.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/docs/localization-translation/README.md b/docs/localization-translation/README.md
index 774998e504f..36d527645fd 100644
--- a/docs/localization-translation/README.md
+++ b/docs/localization-translation/README.md
@@ -84,7 +84,7 @@ WooCommerce includes a language file (`.pot` file) that contains all of the Engl
## Creating custom translations with PoEdit
-[Poedit ](https://poedit.net/) is a more advanced alternative to the [Loco Translate](https://wordpress.org/plugins/loco-translate/) plugin. Only advanced users or translators wishing to create a custom translation to WooCommerce should attempt this method.
+[Poedit ](https://poedit.net/) is a more advanced alternative to the [Loco Translate](https://wordpress.org/plugins/loco-translate/) plugin.
WooCommerce comes with a `.pot` file that can be imported into PoEdit to translate.
From 6603e2bcada19071b16a3107b6aab5324375be69 Mon Sep 17 00:00:00 2001
From: Niels Lange
Date: Tue, 17 Oct 2023 10:33:25 +0700
Subject: [PATCH 16/37] List other language tools
---
docs/localization-translation/README.md | 64 ++++++++-----------------
1 file changed, 20 insertions(+), 44 deletions(-)
diff --git a/docs/localization-translation/README.md b/docs/localization-translation/README.md
index 36d527645fd..fd298fa5f85 100644
--- a/docs/localization-translation/README.md
+++ b/docs/localization-translation/README.md
@@ -4,12 +4,7 @@ WooCommerce is already translated into several languages and is translation-read
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:
-
-- For a simple approach, choose the [Loco Translate](https://wordpress.org/plugins/loco-translate/) plugin.
-- If you're more experienced, consider [Poedit ](https://poedit.net/).
-
-This document provides details on both methods.
+To create custom translations you can consider using [Poedit](https://poedit.net/).
## Set up WordPress in your language
@@ -55,37 +50,8 @@ If you’re new to translating, check out the [translators handbook](https://mak
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 Loco Translate
-
-1. Install and activate the [Loco Translate](https://wordpress.org/plugins/loco-translate/) plugin.
-2. Go to the new Loco Translate menu item created in your Dashboard with five sub-sections.
-3. Go to the `Plugins` section, and select `WooCommerce`.
-
- ![screenshot](https://woocommerce.com/wp-content/uploads/2012/01/loco-translate-woocommerce.png)
-
-4. Add new languages using the `Add New Language` link.
-
- ![screenshot](https://woocommerce.com/wp-content/uploads/2012/01/loco-translate-new-language.png)
-
-5. Choose the language to add in the list, or enter the language ISO code (ex: `fr_FR`, `en_US` etc.), select the folder to add the translation files to, and click `Start Translating`.
-
- ![screenshot](https://woocommerce.com/wp-content/uploads/2012/01/loco-translate-create-language.png)
-
- > **Note:**
- >
- > - Loco Translate offers three different locations for where to create the translation. The best choice for your own translation is Custom, not just to prevent custom translations from being undone by updates, but also because it’s needed for strings in extensions like WooCommerce Subscriptions to be properly translated. Avoid the Author location since it’s inside the plugin and will be overwritten by extension updates, as well as the System location, which could be overwritten by translations from translate.wordpress.org.
- > - If you encounter any technical issues while using Loco Translate, please get in touch with [the Loco Translate support team](https://wordpress.org/support/plugin/loco-translate/).
-
-6. Save when finished.
-
- ![screenshot](https://woocommerce.com/wp-content/uploads/2012/01/loco-translate-translating-1.png)
-
- > **Note:** When a new version of WooCommerce is released and updated on your site, you need refresh the .po file to look for new strings. Use the “Sync” button to find any new string to start translating.
-
## Creating custom translations with PoEdit
-[Poedit ](https://poedit.net/) is a more advanced alternative to the [Loco Translate](https://wordpress.org/plugins/loco-translate/) plugin.
-
WooCommerce comes with a `.pot` file that can be imported into PoEdit to translate.
To get started:
@@ -128,15 +94,21 @@ function load_custom_plugin_translation_file( $mofile, $domain ) {
}
```
-## Translating text without a localization file
+## Other tools
-With the [Say what?](https://wordpress.org/plugins/say-what/) plugin, you can effortlessly translate or modify specific words without delving into a WordPress theme's `.po` file. No custom coding needed.
+There are some other third-party tools that can help with translations. The following list shows a few of them.
-Upon activation, the plugin prompts you to specify:
+### Loco Translate
-1. **Original String**: The text you aim to translate. Check the plugin source code for the precise string.
-2. **Text Domain**: Use `woocommerce`.
-3. **Replacement Text**: The text you'd like to display in place of the original.
+[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
@@ -177,8 +149,12 @@ 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.
+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).
-If this is the case, then it is necessary to translate both these forms for your translation to work as expected. To do this, please use the Single and Plural tabs that show up in the translation section:
+This screenshot shows that the Singular translation is available:
-![screenshot](https://woocommerce.com/wp-content/uploads/2023/03/Single_Plural_Loco_Translate-1.png)
+![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)
From e25cbb1f876c49c6d0e03e0e96005c743ac5608b Mon Sep 17 00:00:00 2001
From: Ilyas Foo
Date: Wed, 18 Oct 2023 10:18:08 +0800
Subject: [PATCH 17/37] Add active theme label to intro screen (#40824)
* Add detect of current theme for active theme label
* Lint I have, master Yoda
* Changelog
---
.../woocommerce/changelog/add-40794-active-theme-label | 4 ++++
plugins/woocommerce/src/Admin/API/OnboardingThemes.php | 10 ++++++----
2 files changed, 10 insertions(+), 4 deletions(-)
create mode 100644 plugins/woocommerce/changelog/add-40794-active-theme-label
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/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/',
),
From 1e865580832772f72754c9354cfc20584fd3942c Mon Sep 17 00:00:00 2001
From: RJ <27843274+rjchow@users.noreply.github.com>
Date: Wed, 18 Oct 2023 15:14:51 +0800
Subject: [PATCH 18/37] fix: cys design-with-api loader should not loop
(#40829)
---
.../add-loader-component-shouldloop-prop | 4 +++
.../src/components/Loader/Loader.tsx | 21 ++++++++++----
.../src/components/Loader/stories/index.tsx | 28 +++++++++++++++++--
.../design-with-ai/pages/ApiCallLoader.tsx | 2 +-
.../fix-cys-design-with-ai-loader-loop | 4 +++
5 files changed, 51 insertions(+), 8 deletions(-)
create mode 100644 packages/js/onboarding/changelog/add-loader-component-shouldloop-prop
create mode 100644 plugins/woocommerce/changelog/fix-cys-design-with-ai-loader-loop
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/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/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
From 2c557f6d309144c73f3086e13ac10da7bda10ceb Mon Sep 17 00:00:00 2001
From: Jaclyn Chen
Date: Wed, 18 Oct 2023 15:22:46 +0800
Subject: [PATCH 19/37] Update mobile app onboarding modal to be two steps
(#40613)
---
.../components/MobileAppInstallationInfo.tsx | 7 -
.../components/MobileAppLoginInfo.tsx | 54 ++++++
.../components/MobileAppLoginStepper.tsx | 154 ++++++++++++++++++
.../homescreen/mobile-app-modal/index.tsx | 37 +++--
.../pages/MobileAppLoginStepperPage.tsx | 50 ++++++
.../mobile-app-modal/pages/index.tsx | 2 +-
.../homescreen/mobile-app-modal/style.scss | 11 +-
.../wcios-mobile-onboarding-task-iteration-2 | 4 +
8 files changed, 292 insertions(+), 27 deletions(-)
create mode 100644 plugins/woocommerce-admin/client/homescreen/mobile-app-modal/components/MobileAppLoginInfo.tsx
create mode 100644 plugins/woocommerce-admin/client/homescreen/mobile-app-modal/components/MobileAppLoginStepper.tsx
create mode 100644 plugins/woocommerce-admin/client/homescreen/mobile-app-modal/pages/MobileAppLoginStepperPage.tsx
create mode 100644 plugins/woocommerce/changelog/wcios-mobile-onboarding-task-iteration-2
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/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
From a1505531bbd7d3bda6346d423b5979d1e7512d01 Mon Sep 17 00:00:00 2001
From: RJ <27843274+rjchow@users.noreply.github.com>
Date: Wed, 18 Oct 2023 18:15:36 +0800
Subject: [PATCH 20/37] fix: cys intro screen parallelised network calls
(#40827)
---
.../client/customize-store/intro/services.ts | 77 ++++++++++++-------
.../fix-cys-intro-parallelise-network-calls | 4 +
2 files changed, 54 insertions(+), 27 deletions(-)
create mode 100644 plugins/woocommerce/changelog/fix-cys-intro-parallelise-network-calls
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/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
From cee08e44d932e508fb458764123f00623f36bdee Mon Sep 17 00:00:00 2001
From: louwie17
Date: Wed, 18 Oct 2023 09:22:55 -0300
Subject: [PATCH 21/37] Hide header on variation edit page and remove use of
`:has()` CSS selector (#40843)
* Make sure we hide the header on the variation edit page and remove use of has()
* Add changelogs
---
.../js/product-editor/changelog/fix-40842_hide_header | 4 ++++
.../src/components/block-editor/style.scss | 9 ---------
plugins/woocommerce-admin/client/layout/controller.js | 3 +++
plugins/woocommerce/changelog/fix-40842_hide_header | 4 ++++
4 files changed, 11 insertions(+), 9 deletions(-)
create mode 100644 packages/js/product-editor/changelog/fix-40842_hide_header
create mode 100644 plugins/woocommerce/changelog/fix-40842_hide_header
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/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/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/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.
From a44386a70b210eb81429453a9df263670a47d34e Mon Sep 17 00:00:00 2001
From: Sagar Tamang
Date: Wed, 18 Oct 2023 18:36:51 +0545
Subject: [PATCH 22/37] fix/40319: Fatal error in class-wc-helper-updater.php
when transient parameter is null. (#40733)
* fix - Fatal error in class-wc-helper-updater.php when transient parameter is null.
* Added changelog
* fix - phpcs errors
---
plugins/woocommerce/changelog/fix-40319 | 4 ++++
.../admin/helper/class-wc-helper-updater.php | 20 +++++++++++--------
2 files changed, 16 insertions(+), 8 deletions(-)
create mode 100644 plugins/woocommerce/changelog/fix-40319
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/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;
}
From 39019d2750910291fe33243ce5db2af725ba4d2a Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Maikel=20David=20P=C3=A9rez=20G=C3=B3mez?=
Date: Wed, 18 Oct 2023 09:47:33 -0400
Subject: [PATCH 23/37] Manage single variation as virtual (#40809)
* Add virtual section to the product variation template
* Add changelog file
* Let the toogle block to use inverted value to be checked
* Fix virtual toggle to be inverted
* Add changelog file
---
.../js/product-editor/changelog/add-40805 | 4 +++
.../src/blocks/generic/toggle/block.json | 6 ++++
.../src/blocks/generic/toggle/edit.tsx | 28 +++++++++++++++++--
.../src/blocks/generic/toggle/types.ts | 2 ++
plugins/woocommerce/changelog/add-40805 | 4 +++
.../ProductVariationTemplate.php | 21 +++++++++++++-
.../SimpleProductTemplate.php | 6 ++--
7 files changed, 65 insertions(+), 6 deletions(-)
create mode 100644 packages/js/product-editor/changelog/add-40805
create mode 100644 plugins/woocommerce/changelog/add-40805
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/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 && (
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..1c68db7e0eb 100644
--- a/plugins/woocommerce/src/Admin/Features/ProductBlockEditor/ProductTemplates/SimpleProductTemplate.php
+++ b/plugins/woocommerce/src/Admin/Features/ProductBlockEditor/ProductTemplates/SimpleProductTemplate.php
@@ -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' ),
],
]
);
From 51c9b9051e3f81530835e09911886616e33d845d Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Maikel=20David=20P=C3=A9rez=20G=C3=B3mez?=
Date: Wed, 18 Oct 2023 10:15:43 -0400
Subject: [PATCH 24/37] [Downloads] Manage limits (#40797)
* Create ManageDownloadLimitsModal component
* Integrate ManageDownloadLimitsModal with product downloads block
* Add changelog file
* When there's at least 1 file uploaded, we add a Manage limits button to the Downloads section heading
* Both fields only accept numbers
* Add suffix to each input
* Add integer validation message
* Fix validation to support -1 and 0 values
---
.../js/product-editor/changelog/add-35144 | 4 +
.../blocks/product-fields/downloads/edit.tsx | 47 ++++
.../product-fields/downloads/editor.scss | 1 +
.../js/product-editor/src/components/index.ts | 5 +
.../manage-download-limits-modal/index.ts | 2 +
.../manage-download-limits-modal.tsx | 241 ++++++++++++++++++
.../manage-download-limits-modal/style.scss | 45 ++++
.../manage-download-limits-modal/types.ts | 10 +
packages/js/product-editor/src/style.scss | 1 +
9 files changed, 356 insertions(+)
create mode 100644 packages/js/product-editor/changelog/add-35144
create mode 100644 packages/js/product-editor/src/components/manage-download-limits-modal/index.ts
create mode 100644 packages/js/product-editor/src/components/manage-download-limits-modal/manage-download-limits-modal.tsx
create mode 100644 packages/js/product-editor/src/components/manage-download-limits-modal/style.scss
create mode 100644 packages/js/product-editor/src/components/manage-download-limits-modal/types.ts
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/src/blocks/product-fields/downloads/edit.tsx b/packages/js/product-editor/src/blocks/product-fields/downloads/edit.tsx
index 7108d9649d9..796b42bb105 100644
--- a/packages/js/product-editor/src/blocks/product-fields/downloads/edit.tsx
+++ b/packages/js/product-editor/src/blocks/product-fields/downloads/edit.tsx
@@ -8,6 +8,7 @@ import {
createElement,
Fragment,
createInterpolateElement,
+ useState,
} from '@wordpress/element';
import { closeSmall } from '@wordpress/icons';
import { MediaItem } from '@wordpress/media-utils';
@@ -26,6 +27,10 @@ import { UploadsBlockAttributes } from './types';
import { UploadImage } from './upload-image';
import { DownloadsMenu } from './downloads-menu';
import { ProductEditorBlockEditProps } from '../../../types';
+import {
+ ManageDownloadLimitsModal,
+ ManageDownloadLimitsModalProps,
+} from '../../../components/manage-download-limits-modal';
function getFileName( url?: string ) {
const [ name ] = url?.split( '/' ).reverse() ?? [];
@@ -55,6 +60,12 @@ export function Edit( {
postType,
'downloads'
);
+ const [ downloadLimit, setDownloadLimit ] = useEntityProp<
+ Product[ 'download_limit' ]
+ >( '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/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 */
From 8e5223b3830ed436afc7bf6d105027e9fa5da455 Mon Sep 17 00:00:00 2001
From: Jonathan Lane
Date: Wed, 18 Oct 2023 08:37:02 -0700
Subject: [PATCH 25/37] Add test to add and remove order notes. (#40317)
* Add test to add and remove order notes.
* Changelog
---------
Co-authored-by: Jon Lane
---
.../woocommerce/changelog/e2e-add-order-notes | 4 +++
.../e2e-pw/tests/merchant/order-edit.spec.js | 34 +++++++++++++++++++
2 files changed, 38 insertions(+)
create mode 100644 plugins/woocommerce/changelog/e2e-add-order-notes
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/tests/e2e-pw/tests/merchant/order-edit.spec.js b/plugins/woocommerce/tests/e2e-pw/tests/merchant/order-edit.spec.js
index ed6c13e500b..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
@@ -120,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;
From ef268fe54555018108d5e7ed17f7d5f1c43f2e8e Mon Sep 17 00:00:00 2001
From: Matt Sherman
Date: Wed, 18 Oct 2023 11:37:10 -0400
Subject: [PATCH 26/37] Add @woocommerce/expression-evaluation dependency
---
packages/js/block-templates/package.json | 1 +
1 file changed, 1 insertion(+)
diff --git a/packages/js/block-templates/package.json b/packages/js/block-templates/package.json
index db48c18cee1..e9dfd31862c 100644
--- a/packages/js/block-templates/package.json
+++ b/packages/js/block-templates/package.json
@@ -28,6 +28,7 @@
"access": "public"
},
"dependencies": {
+ "@woocommerce/expression-evaluation": "workspace:*",
"@wordpress/block-editor": "^9.8.0",
"@wordpress/blocks": "^12.3.0"
},
From 32460aac987ab55a7fcab0198f1a30db63227372 Mon Sep 17 00:00:00 2001
From: Matt Sherman
Date: Wed, 18 Oct 2023 11:37:16 -0400
Subject: [PATCH 27/37] Update lock file
---
pnpm-lock.yaml | 1385 +++++++++++++++++++++---------------------------
1 file changed, 608 insertions(+), 777 deletions(-)
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 2592df5ab18..b96e5215d76 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -462,6 +462,9 @@ 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)
@@ -3928,7 +3931,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 +4156,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 +4172,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 +4185,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 +4246,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 +4368,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 +4469,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 +4785,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 +4798,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 +4811,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 +4822,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
@@ -5029,7 +5032,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 +5043,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 +5086,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 +5102,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
@@ -5355,8 +5358,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 +5373,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:
@@ -5631,7 +5634,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 +5644,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 +5654,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 +5699,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
@@ -5801,7 +5804,7 @@ packages:
dependencies:
'@babel/core': 7.17.8
'@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.17.8)
'@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.17.8)
transitivePeerDependencies:
@@ -5816,7 +5819,7 @@ packages:
dependencies:
'@babel/core': 7.21.3
'@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.21.3)
'@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.21.3)
transitivePeerDependencies:
@@ -5873,8 +5876,8 @@ packages:
'@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.20.2
+ '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.12.9)
+ '@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==}
@@ -5883,8 +5886,8 @@ packages:
'@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-plugin-utils': 7.20.2
+ '@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-class-properties@7.18.6(@babel/core@7.21.3):
@@ -5940,36 +5943,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-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-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 +5985,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 +6036,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 +6134,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):
@@ -6215,7 +6227,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-json-strings': 7.8.3(@babel/core@7.17.8)
dev: true
@@ -6226,7 +6238,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-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 +6287,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 +6364,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 +6387,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 +6441,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):
@@ -6605,32 +6626,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 +6706,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):
@@ -6761,33 +6788,36 @@ packages:
/@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):
@@ -6834,19 +6864,21 @@ packages:
/@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 +6892,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 +6920,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 +6931,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):
@@ -6930,7 +6963,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-proposal-unicode-property-regex@7.18.6(@babel/core@7.21.3):
@@ -6941,7 +6974,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-syntax-async-generators@7.8.4(@babel/core@7.12.9):
resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==}
@@ -6957,7 +6990,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 +6999,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==}
@@ -7026,7 +7059,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 +7069,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 +7079,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 +7140,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 +7148,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 +7157,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 +7194,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 +7204,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 +7214,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 +7248,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 +7256,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 +7265,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 +7293,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,7 +7303,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
dev: true
/@babel/plugin-syntax-jsx@7.21.4(@babel/core@7.12.9):
@@ -7299,7 +7332,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 +7367,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 +7375,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 +7384,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 +7392,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 +7400,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 +7409,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 +7417,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 +7425,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 +7434,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==}
@@ -7417,7 +7450,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 +7459,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 +7467,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 +7475,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 +7484,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 +7492,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 +7500,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 +7509,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 +7518,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 +7528,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 +7538,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==}
@@ -7542,7 +7575,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 +7585,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 +7661,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==}
@@ -7790,7 +7823,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 +7832,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 +7842,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 +7890,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==}
@@ -7959,17 +7992,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 +8083,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 +8092,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 +8102,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 +8150,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==}
@@ -8191,7 +8222,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 +8232,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 +8243,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 +8291,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 +8301,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 +8311,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 +8364,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 +8394,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 +8404,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 +8415,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 +8464,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==}
@@ -8580,7 +8611,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 +8620,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 +8630,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 +8678,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 +8687,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 +8697,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 +8719,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 +8731,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 +8743,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):
@@ -8776,10 +8801,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 +8816,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 +8850,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 +8861,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 +8907,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 +8921,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 +8935,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):
@@ -9008,10 +9020,8 @@ 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
- transitivePeerDependencies:
- - supports-color
dev: true
/@babel/plugin-transform-modules-umd@7.18.6(@babel/core@7.12.9):
@@ -9093,7 +9103,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 +9172,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 +9182,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 +9192,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==}
@@ -9242,7 +9252,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 +9264,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 +9277,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 +9395,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 +9404,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 +9414,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 +9433,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 +9442,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 +9452,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,8 +9572,8 @@ 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/types': 7.22.15
@@ -9575,8 +9585,8 @@ 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/types': 7.22.15
@@ -9602,8 +9612,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):
@@ -9614,7 +9624,7 @@ packages:
dependencies:
'@babel/core': 7.21.3
'@babel/helper-annotate-as-pure': 7.18.6
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-plugin-utils': 7.22.5
dev: true
/@babel/plugin-transform-regenerator@7.16.0(@babel/core@7.12.9):
@@ -9734,7 +9744,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 +9754,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 +9764,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 +9795,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 +9878,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 +9949,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 +9960,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 +9971,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 +10019,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 +10028,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 +10038,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 +10086,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 +10095,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 +10105,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 +10153,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 +10163,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 +10173,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==}
@@ -10281,7 +10291,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 +10301,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==}
@@ -10800,8 +10810,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 +10859,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 +10896,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 +10945,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)
@@ -11006,7 +11016,7 @@ packages:
'@babel/helper-plugin-utils': 7.21.5
'@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.17.8)
'@babel/plugin-transform-dotall-regex': 7.18.6(@babel/core@7.17.8)
- '@babel/types': 7.22.4
+ '@babel/types': 7.22.15
esutils: 2.0.3
dev: true
@@ -11019,7 +11029,7 @@ packages:
'@babel/helper-plugin-utils': 7.21.5
'@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.21.3)
'@babel/plugin-transform-dotall-regex': 7.18.6(@babel/core@7.21.3)
- '@babel/types': 7.22.4
+ '@babel/types': 7.22.15
esutils: 2.0.3
/@babel/preset-react@7.22.3(@babel/core@7.17.8):
@@ -11468,7 +11478,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 +11560,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 +11584,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 +11646,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 +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
@@ -11690,7 +11700,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 +11823,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 +11837,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 +11851,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 +11861,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 +12201,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 +12222,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 +12243,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 +12284,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 +13119,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 +13177,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
@@ -14176,7 +14136,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 +14148,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 +14168,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 +14183,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 +14206,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 +14215,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 +14229,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 +14238,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 +14252,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 +14279,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 +14288,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 +14302,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 +14318,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 +14334,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 +14358,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 +14378,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 +14387,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 +14401,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 +14415,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 +14429,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 +14451,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 +14461,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 +14476,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 +14507,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 +14530,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 +14559,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 +14571,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 +14583,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 +14603,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 +14616,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 +14628,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 +14640,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 +14660,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 +14680,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 +14708,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 +14748,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 +14768,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 +14778,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 +14788,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 +14803,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 +14829,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 +14851,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 +14877,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 +14886,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 +14900,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 +14910,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 +14925,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 +14935,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 +14945,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 +14960,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 +14969,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 +14983,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 +14997,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 +15007,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 +15022,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 +15032,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 +15047,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 +15260,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 +15270,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 +15279,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 +15291,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 +15309,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 +15319,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 +15335,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 +15349,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 +15501,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 +15532,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 +15575,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 +15610,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 +15665,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 +15725,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 +15761,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 +15795,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 +15822,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 +15850,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 +15876,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 +15897,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 +15910,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 +15937,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 +15954,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 +16024,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 +16128,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 +16171,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 +16189,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 +16213,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 +16250,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 +16287,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 +16370,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 +16450,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 +16528,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 +16567,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 +16661,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 +16671,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 +16696,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 +16755,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 +16886,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 +16938,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 +17028,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 +17113,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 +17128,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 +17150,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 +17170,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 +17222,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 +17236,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 +17259,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)
@@ -17802,7 +17762,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 +17784,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 +17807,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 +17821,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
@@ -19006,7 +18966,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 +18975,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 +19253,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 +19269,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 +19563,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 +19621,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 +19679,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 +19745,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 +19798,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 +19851,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
@@ -19945,7 +19905,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
@@ -19998,7 +19958,7 @@ packages:
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 +20012,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 +20083,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 +20116,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 +20152,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 +20201,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 +20231,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 +20259,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 +20313,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 +20367,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 +20421,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 +20475,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 +20529,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 +20583,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 +20637,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
@@ -20732,7 +20692,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
@@ -20786,7 +20746,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
@@ -20847,7 +20807,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 +20868,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 +20955,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 +20975,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 +20997,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 +21017,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 +21048,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 +21072,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 +21098,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 +21182,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 +21195,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 +21229,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 +21252,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 +21273,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 +21295,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 +21318,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 +21499,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 +21520,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 +21532,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 +21605,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 +21656,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
@@ -21893,7 +21853,7 @@ packages:
cosmiconfig: 7.0.1
eslint: 8.32.0
eslint-config-prettier: 8.5.0(eslint@8.32.0)
- eslint-plugin-import: 2.25.4(@typescript-eslint/parser@5.54.0)(eslint@8.32.0)
+ eslint-plugin-import: 2.25.4(@typescript-eslint/parser@5.54.0)(eslint-import-resolver-typescript@2.5.0)(eslint-import-resolver-webpack@0.13.2)(eslint@8.32.0)
eslint-plugin-jest: 27.2.1(@typescript-eslint/eslint-plugin@5.54.0)(eslint@8.32.0)(jest@27.5.1)(typescript@5.1.6)
eslint-plugin-jsdoc: 39.9.1(eslint@8.32.0)
eslint-plugin-jsx-a11y: 6.5.1(eslint@8.32.0)
@@ -21934,7 +21894,7 @@ packages:
cosmiconfig: 7.0.1
eslint: 8.32.0
eslint-config-prettier: 8.5.0(eslint@8.32.0)
- eslint-plugin-import: 2.25.4(@typescript-eslint/parser@5.54.0)(eslint@8.32.0)
+ eslint-plugin-import: 2.25.4(@typescript-eslint/parser@5.54.0)(eslint-import-resolver-typescript@2.5.0)(eslint-import-resolver-webpack@0.13.2)(eslint@8.32.0)
eslint-plugin-jest: 27.2.1(@typescript-eslint/eslint-plugin@5.54.0)(eslint@8.32.0)(jest@27.5.1)(typescript@5.1.6)
eslint-plugin-jsdoc: 39.9.1(eslint@8.32.0)
eslint-plugin-jsx-a11y: 6.5.1(eslint@8.32.0)
@@ -21975,7 +21935,7 @@ packages:
cosmiconfig: 7.0.1
eslint: 8.32.0
eslint-config-prettier: 8.5.0(eslint@8.32.0)
- eslint-plugin-import: 2.25.4(@typescript-eslint/parser@5.54.0)(eslint@8.32.0)
+ eslint-plugin-import: 2.25.4(@typescript-eslint/parser@5.54.0)(eslint-import-resolver-typescript@2.5.0)(eslint-import-resolver-webpack@0.13.2)(eslint@8.32.0)
eslint-plugin-jest: 27.2.1(@typescript-eslint/eslint-plugin@5.54.0)(eslint@8.32.0)(jest@29.5.0)(typescript@5.1.6)
eslint-plugin-jsdoc: 39.9.1(eslint@8.32.0)
eslint-plugin-jsx-a11y: 6.5.1(eslint@8.32.0)
@@ -22185,7 +22145,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 +22174,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 +22357,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 +22377,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 +22390,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 +22405,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 +22493,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 +22506,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 +22536,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 +22570,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 +22586,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 +22662,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 +22684,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 +22813,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 +22842,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 +22871,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 +22905,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 +22924,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 +22944,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 +22964,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 +23129,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 +23197,6 @@ packages:
- '@webpack-cli/generators'
- '@webpack-cli/migrate'
- acorn
- - babel-plugin-macros
- bufferutil
- canvas
- debug
@@ -23265,7 +23224,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 +23254,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 +23284,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 +23437,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 +23450,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 +23463,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 +23476,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 +23500,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 +23564,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 +23780,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 +24337,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
@@ -25018,7 +24977,7 @@ packages:
'@babel/compat-data': 7.21.0
'@babel/core': 7.17.8
'@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.17.8)
- semver: 6.3.0
+ semver: 6.3.1
transitivePeerDependencies:
- supports-color
dev: true
@@ -25031,7 +24990,7 @@ packages:
'@babel/compat-data': 7.21.0
'@babel/core': 7.21.3
'@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.21.3)
- semver: 6.3.0
+ semver: 6.3.1
transitivePeerDependencies:
- supports-color
dev: true
@@ -25978,6 +25937,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 +26857,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 +28832,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 +28844,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 +29075,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 +29095,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
@@ -29514,9 +29474,9 @@ packages:
has: 1.0.3
is-core-module: 2.8.0
is-glob: 4.0.3
- minimatch: 3.1.2
+ minimatch: 3.0.4
object.values: 1.1.5
- resolve: 1.22.1
+ resolve: 1.20.0
tsconfig-paths: 3.14.0
transitivePeerDependencies:
- eslint-import-resolver-typescript
@@ -29554,36 +29514,6 @@ packages:
- eslint-import-resolver-webpack
- supports-color
- /eslint-plugin-import@2.25.4(@typescript-eslint/parser@5.54.0)(eslint@8.32.0):
- resolution: {integrity: sha512-/KJBASVFxpu0xg1kIBn9AUa8hQVnszpwgE7Ld0lKAlx7Ie87yzEzCgSkekt+le/YVhiaosO4Y14GDAOc41nfxA==}
- engines: {node: '>=4'}
- peerDependencies:
- '@typescript-eslint/parser': '*'
- eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8
- peerDependenciesMeta:
- '@typescript-eslint/parser':
- optional: true
- dependencies:
- '@typescript-eslint/parser': 5.54.0(eslint@8.32.0)(typescript@5.1.6)
- array-includes: 3.1.4
- array.prototype.flat: 1.2.5
- debug: 2.6.9(supports-color@6.1.0)
- doctrine: 2.1.0
- eslint: 8.32.0
- eslint-import-resolver-node: 0.3.6
- eslint-module-utils: 2.7.3(@typescript-eslint/parser@5.54.0)(eslint-import-resolver-node@0.3.6)(eslint-import-resolver-typescript@2.5.0)(eslint-import-resolver-webpack@0.13.2)
- has: 1.0.3
- is-core-module: 2.8.0
- is-glob: 4.0.3
- minimatch: 3.1.2
- object.values: 1.1.5
- resolve: 1.22.1
- tsconfig-paths: 3.14.0
- transitivePeerDependencies:
- - eslint-import-resolver-typescript
- - eslint-import-resolver-webpack
- - supports-color
-
/eslint-plugin-jest@23.20.0(eslint@7.32.0)(typescript@5.1.6):
resolution: {integrity: sha512-+6BGQt85OREevBDWCvhqj1yYA4+BFK4XnRZSGJionuEYmcglMZYLNNBBemwzbqUAckURaHdJSBcjHPyrtypZOw==}
engines: {node: '>=8'}
@@ -29902,7 +29832,7 @@ packages:
object.values: 1.1.5
prop-types: 15.8.1
resolve: 2.0.0-next.3
- semver: 6.3.0
+ semver: 6.3.1
string.prototype.matchall: 4.0.6
dev: true
@@ -31249,7 +31179,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 +31211,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 +31315,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 +31333,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 +31350,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 +32109,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 +32997,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 +34450,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 +34460,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 +34478,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 +34505,6 @@ packages:
- babel-plugin-macros
- supports-color
- ts-node
- dev: true
/jest-config@24.9.0:
resolution: {integrity: sha512-RATtQJtVYQrp7fvWg6f5y3pEFj9I+H8sWw4aKxnDZ96mob5i5SD6ZEGWgMLXQ4LE8UurrjbdlLWdUeo+28QpfQ==}
@@ -34736,7 +34636,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 +34671,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 +34715,6 @@ packages:
transitivePeerDependencies:
- babel-plugin-macros
- supports-color
- dev: true
/jest-dev-server@4.4.0:
resolution: {integrity: sha512-STEHJ3iPSC8HbrQ3TME0ozGX2KT28lbT4XopPxUm2WimsX3fcB3YOptRh12YphQisMhfqNSNTZUmWyT3HEXS2A==}
@@ -36484,7 +36344,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 +36725,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 +36735,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 +36764,6 @@ packages:
- babel-plugin-macros
- supports-color
- ts-node
- dev: true
/jmespath@0.16.0:
resolution: {integrity: sha512-9FzQjJ7MATs1tSpnco1K6ayiYE3figslrXA72G2HQ/n76RzvYlofyi5QM+iX4YRs/pu3yzxlVQSST23+dMDknw==}
@@ -42546,7 +42363,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 +42373,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 +42397,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 +42409,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 +42418,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 +42427,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 +42437,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 +42464,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 +42492,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 +42522,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 +42586,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 +42597,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 +42607,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 +42616,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 +42627,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 +42639,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 +42653,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 +42666,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 +42675,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 +42699,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 +42745,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 +42776,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 +42799,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 +42814,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 +42830,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 +42841,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 +42852,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 +42863,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 +42902,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 +42917,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 +42936,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 +42953,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 +42972,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 +42984,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 +42993,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 +43011,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 +43033,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 +43061,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 +43076,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 +43089,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 +43101,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 +43112,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 +43126,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 +43139,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 +43150,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 +43202,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 +43216,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 +43232,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 +43251,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 +43402,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 +43413,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 +43423,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 +43433,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 +43442,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 +43453,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 +43463,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 +43478,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
@@ -47071,7 +46894,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 +47741,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 +47754,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 +47763,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 +47776,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 +47787,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 +47797,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 +47816,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 +47830,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 +48007,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 +48036,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':
From 375717c65587e3ff550d5c9e0689378eda66f91f Mon Sep 17 00:00:00 2001
From: Matt Sherman
Date: Wed, 18 Oct 2023 11:38:21 -0400
Subject: [PATCH 28/37] Changelog
---
.../changelog/add-block-templates-dependencies | 5 +++++
1 file changed, 5 insertions(+)
create mode 100644 packages/js/block-templates/changelog/add-block-templates-dependencies
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).
+
+
From a1e38b0b2599e1062daf0299c4a2235a72a6c7f4 Mon Sep 17 00:00:00 2001
From: Matt Sherman
Date: Wed, 18 Oct 2023 11:58:31 -0400
Subject: [PATCH 29/37] Add @woocommerce/element to dependencies
---
packages/js/block-templates/package.json | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/packages/js/block-templates/package.json b/packages/js/block-templates/package.json
index e9dfd31862c..c13a38fb85d 100644
--- a/packages/js/block-templates/package.json
+++ b/packages/js/block-templates/package.json
@@ -30,7 +30,8 @@
"dependencies": {
"@woocommerce/expression-evaluation": "workspace:*",
"@wordpress/block-editor": "^9.8.0",
- "@wordpress/blocks": "^12.3.0"
+ "@wordpress/blocks": "^12.3.0",
+ "@wordpress/element": "wp-6.0"
},
"devDependencies": {
"@babel/core": "^7.21.3",
From 1538e9af4e717d408cbed26d83e3ef01c48b22ee Mon Sep 17 00:00:00 2001
From: Matt Sherman
Date: Wed, 18 Oct 2023 11:58:38 -0400
Subject: [PATCH 30/37] Update lock file
---
pnpm-lock.yaml | 195 ++++++++++++++++++++++++++++++-------------------
1 file changed, 118 insertions(+), 77 deletions(-)
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index b96e5215d76..fa99457a5b3 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -471,6 +471,9 @@ importers:
'@wordpress/blocks':
specifier: ^12.3.0
version: 12.5.0(react@17.0.2)
+ '@wordpress/element':
+ specifier: wp-6.0
+ version: 4.4.1
devDependencies:
'@babel/core':
specifier: ^7.21.3
@@ -4873,13 +4876,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):
@@ -4907,13 +4912,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==}
@@ -5302,7 +5309,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==}
@@ -5397,7 +5403,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
@@ -5785,12 +5791,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:
@@ -5799,6 +5806,7 @@ 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:
@@ -5814,6 +5822,7 @@ 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:
@@ -5843,7 +5852,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):
@@ -5867,7 +5878,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==}
@@ -6212,17 +6225,19 @@ 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:
@@ -6234,6 +6249,7 @@ packages:
/@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:
@@ -6535,7 +6551,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
@@ -6543,19 +6559,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:
@@ -6570,6 +6588,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:
@@ -6759,6 +6778,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):
@@ -6783,6 +6804,8 @@ 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):
@@ -6831,6 +6854,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):
@@ -6859,6 +6884,8 @@ 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):
@@ -6948,16 +6975,18 @@ 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:
@@ -6969,6 +6998,7 @@ packages:
/@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:
@@ -6982,7 +7012,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==}
@@ -7041,7 +7071,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):
@@ -7050,7 +7080,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==}
@@ -7306,25 +7336,6 @@ packages:
'@babel/helper-plugin-utils': 7.22.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
-
/@babel/plugin-syntax-jsx@7.21.4(@babel/core@7.21.3):
resolution: {integrity: sha512-5hewiLct5OKyh6PLKEYaFclcqtIgCb6bmELouxjF6up5q3Sov7rOayW4RwhbaBL0dit8rA80GNfY+UuDp2mBbQ==}
engines: {node: '>=6.9.0'}
@@ -7442,7 +7453,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==}
@@ -7556,7 +7567,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):
@@ -7566,7 +7577,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==}
@@ -7936,12 +7947,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
@@ -7955,12 +7966,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
@@ -8211,7 +8222,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):
@@ -8950,7 +8961,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
@@ -8963,7 +8974,7 @@ 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-plugin-utils': 7.22.5
'@babel/helper-validator-identifier': 7.19.1
dev: true
@@ -8976,7 +8987,7 @@ 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-plugin-utils': 7.22.5
'@babel/helper-validator-identifier': 7.19.1
/@babel/plugin-transform-modules-umd@7.16.0(@babel/core@7.12.9):
@@ -9021,7 +9032,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
dev: true
/@babel/plugin-transform-modules-umd@7.18.6(@babel/core@7.12.9):
@@ -9239,7 +9250,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
@@ -9575,7 +9586,7 @@ packages:
'@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):
@@ -9588,7 +9599,7 @@ packages:
'@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
@@ -9673,7 +9684,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
@@ -10281,7 +10292,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):
@@ -10343,7 +10354,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):
@@ -10354,7 +10365,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==}
@@ -11016,7 +11027,7 @@ packages:
'@babel/helper-plugin-utils': 7.21.5
'@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.17.8)
'@babel/plugin-transform-dotall-regex': 7.18.6(@babel/core@7.17.8)
- '@babel/types': 7.22.15
+ '@babel/types': 7.22.4
esutils: 2.0.3
dev: true
@@ -11029,7 +11040,7 @@ packages:
'@babel/helper-plugin-utils': 7.21.5
'@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.21.3)
'@babel/plugin-transform-dotall-regex': 7.18.6(@babel/core@7.21.3)
- '@babel/types': 7.22.15
+ '@babel/types': 7.22.4
esutils: 2.0.3
/@babel/preset-react@7.22.3(@babel/core@7.17.8):
@@ -21853,7 +21864,7 @@ packages:
cosmiconfig: 7.0.1
eslint: 8.32.0
eslint-config-prettier: 8.5.0(eslint@8.32.0)
- eslint-plugin-import: 2.25.4(@typescript-eslint/parser@5.54.0)(eslint-import-resolver-typescript@2.5.0)(eslint-import-resolver-webpack@0.13.2)(eslint@8.32.0)
+ eslint-plugin-import: 2.25.4(@typescript-eslint/parser@5.54.0)(eslint@8.32.0)
eslint-plugin-jest: 27.2.1(@typescript-eslint/eslint-plugin@5.54.0)(eslint@8.32.0)(jest@27.5.1)(typescript@5.1.6)
eslint-plugin-jsdoc: 39.9.1(eslint@8.32.0)
eslint-plugin-jsx-a11y: 6.5.1(eslint@8.32.0)
@@ -21894,7 +21905,7 @@ packages:
cosmiconfig: 7.0.1
eslint: 8.32.0
eslint-config-prettier: 8.5.0(eslint@8.32.0)
- eslint-plugin-import: 2.25.4(@typescript-eslint/parser@5.54.0)(eslint-import-resolver-typescript@2.5.0)(eslint-import-resolver-webpack@0.13.2)(eslint@8.32.0)
+ eslint-plugin-import: 2.25.4(@typescript-eslint/parser@5.54.0)(eslint@8.32.0)
eslint-plugin-jest: 27.2.1(@typescript-eslint/eslint-plugin@5.54.0)(eslint@8.32.0)(jest@27.5.1)(typescript@5.1.6)
eslint-plugin-jsdoc: 39.9.1(eslint@8.32.0)
eslint-plugin-jsx-a11y: 6.5.1(eslint@8.32.0)
@@ -21935,7 +21946,7 @@ packages:
cosmiconfig: 7.0.1
eslint: 8.32.0
eslint-config-prettier: 8.5.0(eslint@8.32.0)
- eslint-plugin-import: 2.25.4(@typescript-eslint/parser@5.54.0)(eslint-import-resolver-typescript@2.5.0)(eslint-import-resolver-webpack@0.13.2)(eslint@8.32.0)
+ eslint-plugin-import: 2.25.4(@typescript-eslint/parser@5.54.0)(eslint@8.32.0)
eslint-plugin-jest: 27.2.1(@typescript-eslint/eslint-plugin@5.54.0)(eslint@8.32.0)(jest@29.5.0)(typescript@5.1.6)
eslint-plugin-jsdoc: 39.9.1(eslint@8.32.0)
eslint-plugin-jsx-a11y: 6.5.1(eslint@8.32.0)
@@ -24497,7 +24508,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
@@ -24977,7 +24988,7 @@ packages:
'@babel/compat-data': 7.21.0
'@babel/core': 7.17.8
'@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.17.8)
- semver: 6.3.1
+ semver: 6.3.0
transitivePeerDependencies:
- supports-color
dev: true
@@ -24990,7 +25001,7 @@ packages:
'@babel/compat-data': 7.21.0
'@babel/core': 7.21.3
'@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.21.3)
- semver: 6.3.1
+ semver: 6.3.0
transitivePeerDependencies:
- supports-color
dev: true
@@ -29474,7 +29485,7 @@ packages:
has: 1.0.3
is-core-module: 2.8.0
is-glob: 4.0.3
- minimatch: 3.0.4
+ minimatch: 3.1.2
object.values: 1.1.5
resolve: 1.20.0
tsconfig-paths: 3.14.0
@@ -29514,6 +29525,36 @@ packages:
- eslint-import-resolver-webpack
- supports-color
+ /eslint-plugin-import@2.25.4(@typescript-eslint/parser@5.54.0)(eslint@8.32.0):
+ resolution: {integrity: sha512-/KJBASVFxpu0xg1kIBn9AUa8hQVnszpwgE7Ld0lKAlx7Ie87yzEzCgSkekt+le/YVhiaosO4Y14GDAOc41nfxA==}
+ engines: {node: '>=4'}
+ peerDependencies:
+ '@typescript-eslint/parser': '*'
+ eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8
+ peerDependenciesMeta:
+ '@typescript-eslint/parser':
+ optional: true
+ dependencies:
+ '@typescript-eslint/parser': 5.54.0(eslint@8.32.0)(typescript@5.1.6)
+ array-includes: 3.1.4
+ array.prototype.flat: 1.2.5
+ debug: 2.6.9(supports-color@6.1.0)
+ doctrine: 2.1.0
+ eslint: 8.32.0
+ eslint-import-resolver-node: 0.3.6
+ eslint-module-utils: 2.7.3(@typescript-eslint/parser@5.54.0)(eslint-import-resolver-node@0.3.6)(eslint-import-resolver-typescript@2.5.0)(eslint-import-resolver-webpack@0.13.2)
+ has: 1.0.3
+ is-core-module: 2.8.0
+ is-glob: 4.0.3
+ minimatch: 3.1.2
+ object.values: 1.1.5
+ resolve: 1.20.0
+ tsconfig-paths: 3.14.0
+ transitivePeerDependencies:
+ - eslint-import-resolver-typescript
+ - eslint-import-resolver-webpack
+ - supports-color
+
/eslint-plugin-jest@23.20.0(eslint@7.32.0)(typescript@5.1.6):
resolution: {integrity: sha512-+6BGQt85OREevBDWCvhqj1yYA4+BFK4XnRZSGJionuEYmcglMZYLNNBBemwzbqUAckURaHdJSBcjHPyrtypZOw==}
engines: {node: '>=8'}
@@ -37958,7 +37999,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==}
@@ -39796,7 +39837,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==}
From 8ca38b6df215371496feaffa2b99f09bb3909a3f Mon Sep 17 00:00:00 2001
From: Matt Sherman
Date: Wed, 18 Oct 2023 12:07:23 -0400
Subject: [PATCH 31/37] Add react dependencies
---
packages/js/block-templates/package.json | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/packages/js/block-templates/package.json b/packages/js/block-templates/package.json
index c13a38fb85d..c2f371a1f04 100644
--- a/packages/js/block-templates/package.json
+++ b/packages/js/block-templates/package.json
@@ -39,6 +39,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",
@@ -53,6 +54,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",
@@ -75,5 +78,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"
}
}
From 5e77702bad9825f803bdfb643e7efb00189d741a Mon Sep 17 00:00:00 2001
From: Matt Sherman
Date: Wed, 18 Oct 2023 12:08:09 -0400
Subject: [PATCH 32/37] Update lock file
---
pnpm-lock.yaml | 893 ++++++++++++++++++++-----------------------------
1 file changed, 371 insertions(+), 522 deletions(-)
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index fa99457a5b3..ee04f296c79 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -117,7 +117,7 @@ importers:
version: 1.1.2(webpack@5.76.3)
webpack:
specifier: ^5.76.2
- version: 5.76.3(webpack-cli@4.9.2)
+ version: 5.76.3(webpack-cli@3.3.12)
packages/js/admin-e2e-tests:
dependencies:
@@ -467,7 +467,7 @@ importers:
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)
@@ -490,15 +490,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
@@ -532,6 +535,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
@@ -4410,7 +4419,7 @@ packages:
'@wordpress/primitives': 3.38.0
'@wordpress/react-i18n': 3.8.0
classnames: 2.3.1
- debug: 4.3.4(supports-color@9.2.2)
+ debug: 4.3.4(supports-color@8.1.1)
react: 17.0.2
react-dom: 17.0.2(react@17.0.2)
react-popper: 2.2.5(@popperjs/core@2.11.4)(react@17.0.2)
@@ -4449,7 +4458,7 @@ packages:
'@wordpress/primitives': 3.38.0
'@wordpress/react-i18n': 3.8.0
classnames: 2.3.1
- debug: 4.3.4(supports-color@9.2.2)
+ debug: 4.3.4(supports-color@8.1.1)
react: 17.0.2
react-dom: 17.0.2(react@17.0.2)
react-popper: 2.2.5(@popperjs/core@2.11.4)(react@17.0.2)
@@ -4575,6 +4584,7 @@ packages:
/@babel/compat-data@7.16.4:
resolution: {integrity: sha512-1o/jo7D+kC9ZjHX5v+EHrdjl3PhxMrLSOTGsOdHJ+KL8HCaEK6ehrVL2RS6oHDZp+L7xLirLrPmQtEng769J/Q==}
engines: {node: '>=6.9.0'}
+ dev: true
/@babel/compat-data@7.17.7:
resolution: {integrity: sha512-p8pdE6j0a29TNGebNm7NzYZWB3xVZJBZ7XGs42uAKzQo8VQ3F0By/cQCtUEABwIqw5zo6WA4NbmxsfzADzMKnQ==}
@@ -4598,7 +4608,7 @@ packages:
'@babel/traverse': 7.17.3
'@babel/types': 7.17.0
convert-source-map: 1.8.0
- debug: 4.3.4(supports-color@9.2.2)
+ debug: 4.3.4(supports-color@8.1.1)
gensync: 1.0.0-beta.2
json5: 2.2.0
lodash: 4.17.21
@@ -4623,7 +4633,7 @@ packages:
'@babel/traverse': 7.19.3
'@babel/types': 7.19.3
convert-source-map: 1.8.0
- debug: 4.3.4(supports-color@9.2.2)
+ debug: 4.3.4(supports-color@8.1.1)
gensync: 1.0.0-beta.2
json5: 2.2.0
semver: 6.3.0
@@ -4645,7 +4655,7 @@ packages:
'@babel/traverse': 7.21.3
'@babel/types': 7.22.15
convert-source-map: 1.8.0
- debug: 4.3.4(supports-color@9.2.2)
+ debug: 4.3.4(supports-color@8.1.1)
gensync: 1.0.0-beta.2
json5: 2.2.3
semver: 6.3.1
@@ -4777,6 +4787,7 @@ packages:
'@babel/helper-validator-option': 7.18.6
browserslist: 4.19.3
semver: 6.3.0
+ dev: true
/@babel/helper-compilation-targets@7.17.7(@babel/core@7.12.9):
resolution: {integrity: sha512-UFzlz2jjd8kroj0hmCFV5zr+tQPi1dpC2cRsDV/3IEW8bJfCPrPpmcSN6ZS8RqIq4LXcmpipCQFPddyFA5Yc7w==}
@@ -4841,6 +4852,7 @@ packages:
browserslist: 4.21.4
lru-cache: 5.1.1
semver: 6.3.1
+ dev: true
/@babel/helper-compilation-targets@7.20.7(@babel/core@7.17.8):
resolution: {integrity: sha512-4tGORmfQcrc+bvrjb5y3dG9Mx1IOZjsHqQVUz7XCNHO+iTmqxWnVg3KRygjGmpRLJGdQSKuvFinbIb0CnZwHAQ==}
@@ -4854,7 +4866,6 @@ packages:
browserslist: 4.21.4
lru-cache: 5.1.1
semver: 6.3.1
- dev: true
/@babel/helper-compilation-targets@7.20.7(@babel/core@7.21.3):
resolution: {integrity: sha512-4tGORmfQcrc+bvrjb5y3dG9Mx1IOZjsHqQVUz7XCNHO+iTmqxWnVg3KRygjGmpRLJGdQSKuvFinbIb0CnZwHAQ==}
@@ -4929,13 +4940,16 @@ 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.19.0(@babel/core@7.17.8):
resolution: {integrity: sha512-NRz8DwF4jT3UfrmUoZjd0Uph9HQnP30t7Ash+weACcyNkiYTywpIjDBgReJMKgr+n86sn2nPVVmJ28Dm053Kqw==}
@@ -4944,14 +4958,15 @@ packages:
'@babel/core': ^7.0.0
dependencies:
'@babel/core': 7.17.8
- '@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.17.8)
- '@babel/helper-split-export-declaration': 7.22.6
- dev: true
+ '@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.21.3):
resolution: {integrity: sha512-NRz8DwF4jT3UfrmUoZjd0Uph9HQnP30t7Ash+weACcyNkiYTywpIjDBgReJMKgr+n86sn2nPVVmJ28Dm053Kqw==}
@@ -4986,6 +5001,7 @@ packages:
'@babel/helper-skip-transparent-expression-wrappers': 7.22.5
'@babel/helper-split-export-declaration': 7.22.6
semver: 6.3.1
+ dev: true
/@babel/helper-create-class-features-plugin@7.22.15(@babel/core@7.17.8):
resolution: {integrity: sha512-jKkwA59IXcvSaiK2UN45kKwSC9o+KuoXsBDvHvU/7BecYIp8GQ2UwrVvFgJASUT+hBnwJx6MhvMCuMzwZZ7jlg==}
@@ -5003,7 +5019,6 @@ packages:
'@babel/helper-skip-transparent-expression-wrappers': 7.22.5
'@babel/helper-split-export-declaration': 7.22.6
semver: 6.3.1
- dev: true
/@babel/helper-create-class-features-plugin@7.22.15(@babel/core@7.21.3):
resolution: {integrity: sha512-jKkwA59IXcvSaiK2UN45kKwSC9o+KuoXsBDvHvU/7BecYIp8GQ2UwrVvFgJASUT+hBnwJx6MhvMCuMzwZZ7jlg==}
@@ -5031,6 +5046,7 @@ packages:
'@babel/core': 7.12.9
'@babel/helper-annotate-as-pure': 7.18.6
regexpu-core: 5.2.1
+ dev: true
/@babel/helper-create-regexp-features-plugin@7.19.0(@babel/core@7.17.8):
resolution: {integrity: sha512-htnV+mHX32DF81amCDrwIDr8nrp1PTm+3wfBN9/v8QJOLEioOCOG7qNyq0nHeFiWbT3Eb7gsPwEmV64UCQ1jzw==}
@@ -5041,7 +5057,6 @@ packages:
'@babel/core': 7.17.8
'@babel/helper-annotate-as-pure': 7.22.5
regexpu-core: 5.2.1
- dev: true
/@babel/helper-create-regexp-features-plugin@7.19.0(@babel/core@7.21.3):
resolution: {integrity: sha512-htnV+mHX32DF81amCDrwIDr8nrp1PTm+3wfBN9/v8QJOLEioOCOG7qNyq0nHeFiWbT3Eb7gsPwEmV64UCQ1jzw==}
@@ -5063,7 +5078,7 @@ packages:
'@babel/helper-module-imports': 7.22.15
'@babel/helper-plugin-utils': 7.22.5
'@babel/traverse': 7.21.3
- debug: 4.3.4(supports-color@9.2.2)
+ debug: 4.3.4(supports-color@8.1.1)
lodash.debounce: 4.0.8
resolve: 1.22.1
semver: 6.3.1
@@ -5079,12 +5094,13 @@ packages:
'@babel/core': 7.12.9
'@babel/helper-compilation-targets': 7.20.7(@babel/core@7.12.9)
'@babel/helper-plugin-utils': 7.22.5
- debug: 4.3.4(supports-color@9.2.2)
+ debug: 4.3.4(supports-color@8.1.1)
lodash.debounce: 4.0.8
resolve: 1.22.1
semver: 6.3.1
transitivePeerDependencies:
- supports-color
+ dev: true
/@babel/helper-define-polyfill-provider@0.3.3(@babel/core@7.17.8):
resolution: {integrity: sha512-z5aQKU4IzbqCC1XH0nAqfsFLMVSo22SBKUc0BxGrLkolTdPTructy0ToNnlO2zA4j9Q/7pjMZf0DSY+DSTYzww==}
@@ -5094,13 +5110,12 @@ packages:
'@babel/core': 7.17.8
'@babel/helper-compilation-targets': 7.20.7(@babel/core@7.17.8)
'@babel/helper-plugin-utils': 7.22.5
- debug: 4.3.4(supports-color@9.2.2)
+ debug: 4.3.4(supports-color@8.1.1)
lodash.debounce: 4.0.8
resolve: 1.22.1
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- dev: true
/@babel/helper-define-polyfill-provider@0.3.3(@babel/core@7.21.3):
resolution: {integrity: sha512-z5aQKU4IzbqCC1XH0nAqfsFLMVSo22SBKUc0BxGrLkolTdPTructy0ToNnlO2zA4j9Q/7pjMZf0DSY+DSTYzww==}
@@ -5110,7 +5125,7 @@ packages:
'@babel/core': 7.21.3
'@babel/helper-compilation-targets': 7.20.7(@babel/core@7.21.3)
'@babel/helper-plugin-utils': 7.22.5
- debug: 4.3.4(supports-color@9.2.2)
+ debug: 4.3.4(supports-color@8.1.1)
lodash.debounce: 4.0.8
resolve: 1.22.1
semver: 6.3.1
@@ -5175,6 +5190,7 @@ packages:
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.22.4
+ dev: true
/@babel/helper-module-imports@7.16.7:
resolution: {integrity: sha512-LVtS6TqjJHFc+nYeITRo6VLXve70xmq7wPhWTqDJusJEgGmkAACWwMiTNrvfoQo6hEhFwAIixNkvB0jPXDL8Wg==}
@@ -5236,7 +5252,7 @@ packages:
engines: {node: '>=6.9.0'}
dependencies:
'@babel/helper-environment-visitor': 7.18.9
- '@babel/helper-module-imports': 7.21.4
+ '@babel/helper-module-imports': 7.22.15
'@babel/helper-simple-access': 7.20.2
'@babel/helper-split-export-declaration': 7.18.6
'@babel/helper-validator-identifier': 7.19.1
@@ -5258,6 +5274,7 @@ packages:
'@babel/helper-simple-access': 7.22.5
'@babel/helper-split-export-declaration': 7.22.6
'@babel/helper-validator-identifier': 7.22.15
+ dev: true
/@babel/helper-module-transforms@7.22.15(@babel/core@7.17.8):
resolution: {integrity: sha512-l1UiX4UyHSFsYt17iQ3Se5pQQZZHa22zyIXURmvkmLCD4t/aU+dvNWHatKac/D9Vm9UES7nvIqHs4jZqKviUmQ==}
@@ -5271,7 +5288,6 @@ packages:
'@babel/helper-simple-access': 7.22.5
'@babel/helper-split-export-declaration': 7.22.6
'@babel/helper-validator-identifier': 7.22.15
- dev: true
/@babel/helper-module-transforms@7.22.15(@babel/core@7.21.3):
resolution: {integrity: sha512-l1UiX4UyHSFsYt17iQ3Se5pQQZZHa22zyIXURmvkmLCD4t/aU+dvNWHatKac/D9Vm9UES7nvIqHs4jZqKviUmQ==}
@@ -5305,6 +5321,7 @@ packages:
/@babel/helper-plugin-utils@7.14.5:
resolution: {integrity: sha512-/37qQCE3K0vvZKwoK4XU/irIJQdIfCJuhU5eKnNxpFDsOkgFaUAwbv+RYw6eYgsC0E4hS7r5KqGULUogqui0fQ==}
engines: {node: '>=6.9.0'}
+ dev: true
/@babel/helper-plugin-utils@7.18.9:
resolution: {integrity: sha512-aBXPT3bmtLryXaoJLyYPXPlSD4p1ld9aYeR+sJNOZjJJGiOpb+fKfh3NkcCu7J54nUJwCERPBExCCpyCOHnu/w==}
@@ -5331,6 +5348,7 @@ packages:
'@babel/types': 7.22.4
transitivePeerDependencies:
- supports-color
+ dev: true
/@babel/helper-remap-async-to-generator@7.16.8:
resolution: {integrity: sha512-fm0gH7Flb8H51LqJHy3HJ3wnE1+qtYR2A99K06ahwrawLdOFsCEWjZOrYricXJHoPSudNKxrMBUPEIPxiIIvBw==}
@@ -5356,6 +5374,7 @@ packages:
'@babel/types': 7.22.15
transitivePeerDependencies:
- supports-color
+ dev: true
/@babel/helper-remap-async-to-generator@7.18.9(@babel/core@7.17.8):
resolution: {integrity: sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA==}
@@ -5370,7 +5389,6 @@ packages:
'@babel/types': 7.22.15
transitivePeerDependencies:
- supports-color
- dev: true
/@babel/helper-remap-async-to-generator@7.18.9(@babel/core@7.21.3):
resolution: {integrity: sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA==}
@@ -5397,6 +5415,7 @@ packages:
'@babel/types': 7.22.15
transitivePeerDependencies:
- supports-color
+ dev: true
/@babel/helper-replace-supers@7.20.7:
resolution: {integrity: sha512-vujDMtB6LVfNW13jhlCrp48QNslK6JXi7lQG736HVbHz/mbf4Dc7tIRh1Xf5C0rF7BP8iiSxGMCmY6Ci1ven3A==}
@@ -5421,6 +5440,7 @@ packages:
'@babel/helper-environment-visitor': 7.22.5
'@babel/helper-member-expression-to-functions': 7.22.15
'@babel/helper-optimise-call-expression': 7.22.5
+ dev: true
/@babel/helper-replace-supers@7.22.9(@babel/core@7.17.8):
resolution: {integrity: sha512-LJIKvvpgPOPUThdYqcX6IXRuIcTkcAub0IaDRGCZH0p5GPUp7PhRU9QVgFcDDd51BaPkk77ZjqFwh6DZTAEmGg==}
@@ -5432,7 +5452,6 @@ packages:
'@babel/helper-environment-visitor': 7.22.5
'@babel/helper-member-expression-to-functions': 7.22.15
'@babel/helper-optimise-call-expression': 7.22.5
- dev: true
/@babel/helper-replace-supers@7.22.9(@babel/core@7.21.3):
resolution: {integrity: sha512-LJIKvvpgPOPUThdYqcX6IXRuIcTkcAub0IaDRGCZH0p5GPUp7PhRU9QVgFcDDd51BaPkk77ZjqFwh6DZTAEmGg==}
@@ -5510,6 +5529,7 @@ packages:
/@babel/helper-validator-option@7.14.5:
resolution: {integrity: sha512-OX8D5eeX4XwcroVW45NMvoYaIuFI+GQpA2a8Gi+X/U/cDUIRsV37qQfF905F0htTRCREQIB4KqPeaveRJUl3Ow==}
engines: {node: '>=6.9.0'}
+ dev: true
/@babel/helper-validator-option@7.16.7:
resolution: {integrity: sha512-TRtenOuRUVo9oIQGPC5G9DgK4743cdxvtOw0weQNpZXaS16SCBi5MNjZF8vba3ETURjZpTbVn7Vvcf2eAwFozQ==}
@@ -5745,6 +5765,7 @@ packages:
'@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.12.9)
transitivePeerDependencies:
- supports-color
+ dev: true
/@babel/plugin-proposal-async-generator-functions@7.16.8(@babel/core@7.12.9):
resolution: {integrity: sha512-71YHIvMuiuqWJQkebWJtdhQTfd4Q4mF76q2IX37uZPkG9+olBxsX+rH1vkhFto4UeJZ9dPY2s+mDvhDm1u2BGQ==}
@@ -5802,6 +5823,7 @@ packages:
'@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.12.9)
transitivePeerDependencies:
- supports-color
+ dev: true
/@babel/plugin-proposal-async-generator-functions@7.20.7(@babel/core@7.17.8):
resolution: {integrity: sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==}
@@ -5817,7 +5839,6 @@ packages:
'@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.17.8)
transitivePeerDependencies:
- supports-color
- dev: true
/@babel/plugin-proposal-async-generator-functions@7.20.7(@babel/core@7.21.3):
resolution: {integrity: sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==}
@@ -5843,6 +5864,9 @@ packages:
'@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
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
/@babel/plugin-proposal-class-properties@7.16.7(@babel/core@7.12.9):
resolution: {integrity: sha512-IobU0Xme31ewjYOShSIqd/ZGM/r/cuOz2z0MDbNrhF5FW+ZVgi0f2lyeoj9KFPDOAqsYxmLWZte1WOwlvY9aww==}
@@ -5889,8 +5913,11 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.12.9)
- '@babel/helper-plugin-utils': 7.22.5
+ '@babel/helper-create-class-features-plugin': 7.19.0(@babel/core@7.12.9)
+ '@babel/helper-plugin-utils': 7.20.2
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
/@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.17.8):
resolution: {integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==}
@@ -5899,9 +5926,10 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@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/helper-create-class-features-plugin': 7.19.0(@babel/core@7.17.8)
+ '@babel/helper-plugin-utils': 7.20.2
+ transitivePeerDependencies:
+ - supports-color
/@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.21.3):
resolution: {integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==}
@@ -5925,6 +5953,8 @@ packages:
'@babel/helper-create-class-features-plugin': 7.19.0(@babel/core@7.12.9)
'@babel/helper-plugin-utils': 7.21.5
'@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.12.9)
+ transitivePeerDependencies:
+ - supports-color
dev: true
/@babel/plugin-proposal-class-static-block@7.17.6(@babel/core@7.17.8):
@@ -5937,6 +5967,8 @@ packages:
'@babel/helper-create-class-features-plugin': 7.19.0(@babel/core@7.17.8)
'@babel/helper-plugin-utils': 7.21.5
'@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.17.8)
+ transitivePeerDependencies:
+ - supports-color
dev: true
/@babel/plugin-proposal-class-static-block@7.17.6(@babel/core@7.21.3):
@@ -5964,6 +5996,8 @@ packages:
'@babel/helper-create-class-features-plugin': 7.19.0(@babel/core@7.12.9)
'@babel/helper-plugin-utils': 7.22.5
'@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.12.9)
+ transitivePeerDependencies:
+ - supports-color
dev: true
/@babel/plugin-proposal-class-static-block@7.18.6(@babel/core@7.17.8):
@@ -5977,6 +6011,8 @@ packages:
'@babel/helper-create-class-features-plugin': 7.19.0(@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)
+ transitivePeerDependencies:
+ - supports-color
dev: true
/@babel/plugin-proposal-class-static-block@7.18.6(@babel/core@7.21.3):
@@ -5990,6 +6026,8 @@ packages:
'@babel/helper-create-class-features-plugin': 7.19.0(@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)
+ transitivePeerDependencies:
+ - supports-color
/@babel/plugin-proposal-decorators@7.16.4(@babel/core@7.21.3):
resolution: {integrity: sha512-RESBNX16eNqnBeEVR5sCJpnW0mHiNLNNvGA8PrRuK/4ZJ4TO+6bHleRUuGQYDERVySOKtOhSya/C4MIhwAMAgg==}
@@ -6012,6 +6050,7 @@ packages:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.20.2
'@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.12.9)
+ dev: true
/@babel/plugin-proposal-dynamic-import@7.16.7(@babel/core@7.12.9):
resolution: {integrity: sha512-I8SW9Ho3/8DRSdmDdH3gORdyUuYnk1m4cMxUAdu5oy4n3OfN8flDEH+d60iG7dUfi0KkYwSvoalHzzdRzpWHTg==}
@@ -6081,15 +6120,15 @@ packages:
'@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):
+ /@babel/plugin-proposal-export-default-from@7.16.7(@babel/core@7.17.8):
resolution: {integrity: sha512-+cENpW1rgIjExn+o5c8Jw/4BuH4eGKKYvkMB8/0ZxFQ9mC0t4z09VsPIwNg6waF69QYC81zxGeAsREGuqQoKeg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.12.9
+ '@babel/core': 7.17.8
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-export-default-from': 7.16.7(@babel/core@7.12.9)
+ '@babel/plugin-syntax-export-default-from': 7.16.7(@babel/core@7.17.8)
/@babel/plugin-proposal-export-default-from@7.16.7(@babel/core@7.21.3):
resolution: {integrity: sha512-+cENpW1rgIjExn+o5c8Jw/4BuH4eGKKYvkMB8/0ZxFQ9mC0t4z09VsPIwNg6waF69QYC81zxGeAsREGuqQoKeg==}
@@ -6110,6 +6149,7 @@ packages:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.20.2
'@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.12.9)
+ dev: true
/@babel/plugin-proposal-export-namespace-from@7.16.7(@babel/core@7.12.9):
resolution: {integrity: sha512-ZxdtqDXLRGBL64ocZcs7ovt71L3jhC1RGSyR996svrCi3PYqHNkb3SwPJCs8RIzD86s+WPpt2S73+EHCGO+NUA==}
@@ -6188,6 +6228,7 @@ packages:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.20.2
'@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.12.9)
+ dev: true
/@babel/plugin-proposal-json-strings@7.16.7(@babel/core@7.12.9):
resolution: {integrity: sha512-lNZ3EEggsGY78JavgbHsK9u5P3pQaW7k4axlgFLYkMd7UBsiNahCITShLjNQschPyjtO6dADrL24757IdhBrsQ==}
@@ -6266,6 +6307,7 @@ packages:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.20.2
'@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.12.9)
+ dev: true
/@babel/plugin-proposal-logical-assignment-operators@7.16.7(@babel/core@7.12.9):
resolution: {integrity: sha512-K3XzyZJGQCr00+EtYtrDjmwX7o7PLK6U9bi1nCwkQioRFVUv6dJoxbQjtWVtP+bCPy82bONBKG8NPyQ4+i6yjg==}
@@ -6344,6 +6386,7 @@ packages:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.20.2
'@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.12.9)
+ dev: true
/@babel/plugin-proposal-nullish-coalescing-operator@7.16.7(@babel/core@7.12.9):
resolution: {integrity: sha512-aUOrYU3EVtjf62jQrCj63pYZ7k6vns2h/DQvHPWGmsJRYzWXZ6/AsfgpiRy6XiuIDADhJzP2Q9MwSMKauBQ+UQ==}
@@ -6387,6 +6430,7 @@ packages:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.22.5
'@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.12.9)
+ dev: true
/@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.17.8):
resolution: {integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==}
@@ -6398,7 +6442,6 @@ packages:
'@babel/core': 7.17.8
'@babel/helper-plugin-utils': 7.22.5
'@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.17.8)
- dev: true
/@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.21.3):
resolution: {integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==}
@@ -6420,6 +6463,7 @@ packages:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.20.2
'@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.12.9)
+ dev: true
/@babel/plugin-proposal-numeric-separator@7.16.7(@babel/core@7.12.9):
resolution: {integrity: sha512-vQgPMknOIgiuVqbokToyXbkY/OmmjAzr/0lhSIbG/KmnzXPGwW/AdhdKpi+O4X/VkWiWjnkKOBiqJrTaC98VKw==}
@@ -6513,6 +6557,7 @@ packages:
'@babel/helper-plugin-utils': 7.14.5
'@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.12.9)
'@babel/plugin-transform-parameters': 7.16.3(@babel/core@7.12.9)
+ dev: true
/@babel/plugin-proposal-object-rest-spread@7.17.3(@babel/core@7.12.9):
resolution: {integrity: sha512-yuL5iQA/TbZn+RGAfxQXfi7CNLmKi1f8zInn4IgobuCWcAb7i+zj4TYzQ9l8cEzVyJ89PDGuqxK1xZpUDISesw==}
@@ -6569,6 +6614,7 @@ packages:
'@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)
+ dev: true
/@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.17.8):
resolution: {integrity: sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==}
@@ -6583,7 +6629,6 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
'@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.17.8)
'@babel/plugin-transform-parameters': 7.21.3(@babel/core@7.17.8)
- dev: true
/@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.21.3):
resolution: {integrity: sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==}
@@ -6608,6 +6653,7 @@ packages:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.20.2
'@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.12.9)
+ dev: true
/@babel/plugin-proposal-optional-catch-binding@7.16.7(@babel/core@7.12.9):
resolution: {integrity: sha512-eMOH/L4OvWSZAE1VkHbr1vckLG1WUcHGJSLqqQwl2GaUqG6QjddvrOaTUMNYiv77H5IKPMZ9U9P7EaHwvAShfA==}
@@ -6652,6 +6698,7 @@ packages:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.22.5
'@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.12.9)
+ dev: true
/@babel/plugin-proposal-optional-catch-binding@7.18.6(@babel/core@7.17.8):
resolution: {integrity: sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==}
@@ -6663,7 +6710,6 @@ packages:
'@babel/core': 7.17.8
'@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==}
@@ -6686,6 +6732,7 @@ packages:
'@babel/helper-plugin-utils': 7.20.2
'@babel/helper-skip-transparent-expression-wrappers': 7.18.9
'@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.12.9)
+ dev: true
/@babel/plugin-proposal-optional-chaining@7.16.7(@babel/core@7.12.9):
resolution: {integrity: sha512-eC3xy+ZrUcBtP7x+sq62Q/HYd674pPTb/77XZMb5wbDPGWIdUbSr4Agr052+zaUPSb+gGRnjxXfKFvx5iMJ+DA==}
@@ -6733,6 +6780,7 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
'@babel/helper-skip-transparent-expression-wrappers': 7.22.5
'@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.12.9)
+ dev: true
/@babel/plugin-proposal-optional-chaining@7.18.9(@babel/core@7.17.8):
resolution: {integrity: sha512-v5nwt4IqBXihxGsW2QmCWMDS3B3bzGIk/EQVZz2ei7f3NJl8NzAJVvUmpDW5q1CRNY+Beb/k58UAH1Km1N411w==}
@@ -6745,7 +6793,6 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
'@babel/helper-skip-transparent-expression-wrappers': 7.22.5
'@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.17.8)
- dev: true
/@babel/plugin-proposal-optional-chaining@7.18.9(@babel/core@7.21.3):
resolution: {integrity: sha512-v5nwt4IqBXihxGsW2QmCWMDS3B3bzGIk/EQVZz2ei7f3NJl8NzAJVvUmpDW5q1CRNY+Beb/k58UAH1Km1N411w==}
@@ -6768,6 +6815,9 @@ packages:
'@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
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
/@babel/plugin-proposal-private-methods@7.16.11(@babel/core@7.12.9):
resolution: {integrity: sha512-F/2uAkPlXDr8+BHpZvo19w3hLFKge+k75XUprE6jaqKxjGkSYcK+4c+bup5PdW/7W/Rpjwql7FTVEDW+fRAQsw==}
@@ -6938,6 +6988,7 @@ packages:
'@babel/core': 7.12.9
'@babel/helper-create-regexp-features-plugin': 7.19.0(@babel/core@7.12.9)
'@babel/helper-plugin-utils': 7.20.2
+ dev: true
/@babel/plugin-proposal-unicode-property-regex@7.16.7(@babel/core@7.12.9):
resolution: {integrity: sha512-QRK0YI/40VLhNVGIjRNAAQkEHws0cswSdFFjpFyt943YmJIU1da9uW63Iu6NFV6CxTZW5eTDCrwZUstBWgp/Rg==}
@@ -6982,6 +7033,7 @@ packages:
'@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
+ dev: true
/@babel/plugin-proposal-unicode-property-regex@7.18.6(@babel/core@7.17.8):
resolution: {integrity: sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==}
@@ -7021,7 +7073,6 @@ packages:
dependencies:
'@babel/core': 7.17.8
'@babel/helper-plugin-utils': 7.22.5
- dev: true
/@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.21.3):
resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==}
@@ -7072,7 +7123,6 @@ packages:
dependencies:
'@babel/core': 7.17.8
'@babel/helper-plugin-utils': 7.22.5
- dev: true
/@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.21.3):
resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==}
@@ -7128,6 +7178,7 @@ packages:
dependencies:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.22.5
+ dev: true
/@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.17.8):
resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==}
@@ -7136,7 +7187,6 @@ packages:
dependencies:
'@babel/core': 7.17.8
'@babel/helper-plugin-utils': 7.22.5
- dev: true
/@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.21.3):
resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==}
@@ -7146,13 +7196,13 @@ packages:
'@babel/core': 7.21.3
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-syntax-export-default-from@7.16.7(@babel/core@7.12.9):
+ /@babel/plugin-syntax-export-default-from@7.16.7(@babel/core@7.17.8):
resolution: {integrity: sha512-4C3E4NsrLOgftKaTYTULhHsuQrGv3FHrBzOMDiS7UYKIpgGBkAdawg4h+EI8zPeK9M0fiIIh72hIwsI24K7MbA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.12.9
+ '@babel/core': 7.17.8
'@babel/helper-plugin-utils': 7.22.5
/@babel/plugin-syntax-export-default-from@7.16.7(@babel/core@7.21.3):
@@ -7171,6 +7221,7 @@ packages:
dependencies:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.22.5
+ dev: true
/@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.17.8):
resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==}
@@ -7189,15 +7240,6 @@ packages:
'@babel/core': 7.21.3
'@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==}
- 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-flow@7.16.7(@babel/core@7.17.8):
resolution: {integrity: sha512-UDo3YGQO0jH6ytzVwgSLv9i/CzMcUjbKenL67dTrAZPPv6GFAtDhe6jqnvmoKzC/7htNTohhos+onPtDMqJwaQ==}
engines: {node: '>=6.9.0'}
@@ -7206,7 +7248,6 @@ packages:
dependencies:
'@babel/core': 7.17.8
'@babel/helper-plugin-utils': 7.22.5
- dev: true
/@babel/plugin-syntax-flow@7.16.7(@babel/core@7.21.3):
resolution: {integrity: sha512-UDo3YGQO0jH6ytzVwgSLv9i/CzMcUjbKenL67dTrAZPPv6GFAtDhe6jqnvmoKzC/7htNTohhos+onPtDMqJwaQ==}
@@ -7345,15 +7386,6 @@ packages:
'@babel/core': 7.21.3
'@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==}
- 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.22.5(@babel/core@7.17.8):
resolution: {integrity: sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg==}
engines: {node: '>=6.9.0'}
@@ -7412,7 +7444,6 @@ packages:
dependencies:
'@babel/core': 7.17.8
'@babel/helper-plugin-utils': 7.22.5
- dev: true
/@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.21.3):
resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==}
@@ -7462,7 +7493,6 @@ packages:
dependencies:
'@babel/core': 7.17.8
'@babel/helper-plugin-utils': 7.22.5
- dev: true
/@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.21.3):
resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==}
@@ -7487,7 +7517,6 @@ packages:
dependencies:
'@babel/core': 7.17.8
'@babel/helper-plugin-utils': 7.22.5
- dev: true
/@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.21.3):
resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==}
@@ -7512,7 +7541,6 @@ packages:
dependencies:
'@babel/core': 7.17.8
'@babel/helper-plugin-utils': 7.22.5
- dev: true
/@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.21.3):
resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==}
@@ -7608,13 +7636,13 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-typescript@7.22.5(@babel/core@7.12.9):
+ /@babel/plugin-syntax-typescript@7.22.5(@babel/core@7.17.8):
resolution: {integrity: sha512-1mS2o03i7t1c6VzH6fdQ3OA8tcEIxwG18zIPRp+UY1Ihv6W+XZzBCVxExF9upussPXJ0xE9XRHwMoNs1ep/nRQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.12.9
+ '@babel/core': 7.17.8
'@babel/helper-plugin-utils': 7.22.5
/@babel/plugin-syntax-typescript@7.22.5(@babel/core@7.21.3):
@@ -7634,6 +7662,7 @@ packages:
dependencies:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.20.2
+ dev: true
/@babel/plugin-transform-arrow-functions@7.16.7(@babel/core@7.12.9):
resolution: {integrity: sha512-9ffkFFMbvzTvv+7dTp/66xvZAWASuPD5Tl9LK3Z9vhOmANo6j94rik+5YMBt4CwHVMWLWpMsriIc2zsa3WW3xQ==}
@@ -7673,6 +7702,7 @@ packages:
dependencies:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.22.5
+ dev: true
/@babel/plugin-transform-arrow-functions@7.18.6(@babel/core@7.17.8):
resolution: {integrity: sha512-9S9X9RUefzrsHZmKMbDXxweEH+YlE8JJEuat9FdvW9Qh1cw7W64jELCtWNkPBPX5En45uy28KGvA/AySqUh8CQ==}
@@ -7682,7 +7712,6 @@ packages:
dependencies:
'@babel/core': 7.17.8
'@babel/helper-plugin-utils': 7.22.5
- dev: true
/@babel/plugin-transform-arrow-functions@7.18.6(@babel/core@7.21.3):
resolution: {integrity: sha512-9S9X9RUefzrsHZmKMbDXxweEH+YlE8JJEuat9FdvW9Qh1cw7W64jELCtWNkPBPX5En45uy28KGvA/AySqUh8CQ==}
@@ -7705,6 +7734,7 @@ packages:
'@babel/helper-remap-async-to-generator': 7.18.9(@babel/core@7.12.9)
transitivePeerDependencies:
- supports-color
+ dev: true
/@babel/plugin-transform-async-to-generator@7.16.8(@babel/core@7.12.9):
resolution: {integrity: sha512-MtmUmTJQHCnyJVrScNzNlofQJ3dLFuobYn3mwOTKHnSCMtbNsqvF71GQmJfFjdrXSsAA7iysFmYWw4bXZ20hOg==}
@@ -7760,6 +7790,7 @@ packages:
'@babel/helper-remap-async-to-generator': 7.18.9(@babel/core@7.12.9)
transitivePeerDependencies:
- supports-color
+ dev: true
/@babel/plugin-transform-async-to-generator@7.18.6(@babel/core@7.17.8):
resolution: {integrity: sha512-ARE5wZLKnTgPW7/1ftQmSi1CmkqqHo2DNmtztFhvgtOWSDfq0Cq9/9L+KnZNYSNrydBekhW3rwShduf59RoXag==}
@@ -7773,7 +7804,6 @@ packages:
'@babel/helper-remap-async-to-generator': 7.18.9(@babel/core@7.17.8)
transitivePeerDependencies:
- supports-color
- dev: true
/@babel/plugin-transform-async-to-generator@7.18.6(@babel/core@7.21.3):
resolution: {integrity: sha512-ARE5wZLKnTgPW7/1ftQmSi1CmkqqHo2DNmtztFhvgtOWSDfq0Cq9/9L+KnZNYSNrydBekhW3rwShduf59RoXag==}
@@ -7796,6 +7826,7 @@ packages:
dependencies:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.20.2
+ dev: true
/@babel/plugin-transform-block-scoped-functions@7.16.7(@babel/core@7.12.9):
resolution: {integrity: sha512-JUuzlzmF40Z9cXyytcbZEZKckgrQzChbQJw/5PuEHYeqzCsvebDx0K0jWnIIVcmmDOAVctCgnYs0pMcrYj2zJg==}
@@ -7835,6 +7866,7 @@ packages:
dependencies:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.22.5
+ dev: true
/@babel/plugin-transform-block-scoped-functions@7.18.6(@babel/core@7.17.8):
resolution: {integrity: sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==}
@@ -7844,7 +7876,6 @@ packages:
dependencies:
'@babel/core': 7.17.8
'@babel/helper-plugin-utils': 7.22.5
- dev: true
/@babel/plugin-transform-block-scoped-functions@7.18.6(@babel/core@7.21.3):
resolution: {integrity: sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==}
@@ -7863,6 +7894,7 @@ packages:
dependencies:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.20.2
+ dev: true
/@babel/plugin-transform-block-scoping@7.16.7(@babel/core@7.12.9):
resolution: {integrity: sha512-ObZev2nxVAYA4bhyusELdo9hb3H+A56bxH3FZMbEImZFiEDYVHXQSJ1hQKFlDnlt8G9bBrCZ5ZpURZUrV4G5qQ==}
@@ -7902,6 +7934,7 @@ packages:
dependencies:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.22.5
+ dev: true
/@babel/plugin-transform-block-scoping@7.21.0(@babel/core@7.17.8):
resolution: {integrity: sha512-Mdrbunoh9SxwFZapeHVrwFmri16+oYotcZysSzhNIVDwIAb1UV+kvnxULSYq9J3/q5MDG+4X6w8QVgD1zhBXNQ==}
@@ -7911,7 +7944,6 @@ packages:
dependencies:
'@babel/core': 7.17.8
'@babel/helper-plugin-utils': 7.22.5
- dev: true
/@babel/plugin-transform-block-scoping@7.21.0(@babel/core@7.21.3):
resolution: {integrity: sha512-Mdrbunoh9SxwFZapeHVrwFmri16+oYotcZysSzhNIVDwIAb1UV+kvnxULSYq9J3/q5MDG+4X6w8QVgD1zhBXNQ==}
@@ -7938,6 +7970,7 @@ packages:
globals: 11.12.0
transitivePeerDependencies:
- supports-color
+ dev: true
/@babel/plugin-transform-classes@7.16.7(@babel/core@7.12.9):
resolution: {integrity: sha512-WY7og38SFAGYRe64BrjKf8OrE6ulEHtr5jEYaZMwox9KebgqPi67Zqz8K53EKk1fFEJgm96r32rkKZ3qA2nCWQ==}
@@ -8012,6 +8045,7 @@ packages:
'@babel/helper-replace-supers': 7.22.9(@babel/core@7.12.9)
'@babel/helper-split-export-declaration': 7.22.6
globals: 11.12.0
+ dev: true
/@babel/plugin-transform-classes@7.21.0(@babel/core@7.17.8):
resolution: {integrity: sha512-RZhbYTCEUAe6ntPehC4hlslPWosNHDox+vAs4On/mCLRLfoDVHf6hVEd7kuxr1RnHwJmxFfUM3cZiZRmPxJPXQ==}
@@ -8029,7 +8063,6 @@ packages:
'@babel/helper-replace-supers': 7.22.9(@babel/core@7.17.8)
'@babel/helper-split-export-declaration': 7.22.6
globals: 11.12.0
- dev: true
/@babel/plugin-transform-classes@7.21.0(@babel/core@7.21.3):
resolution: {integrity: sha512-RZhbYTCEUAe6ntPehC4hlslPWosNHDox+vAs4On/mCLRLfoDVHf6hVEd7kuxr1RnHwJmxFfUM3cZiZRmPxJPXQ==}
@@ -8056,6 +8089,7 @@ packages:
dependencies:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.20.2
+ dev: true
/@babel/plugin-transform-computed-properties@7.16.7(@babel/core@7.12.9):
resolution: {integrity: sha512-gN72G9bcmenVILj//sv1zLNaPyYcOzUho2lIJBMh/iakJ9ygCo/hEF9cpGb61SCMEDxbbyBoVQxrt+bWKu5KGw==}
@@ -8095,6 +8129,7 @@ packages:
dependencies:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.22.5
+ dev: true
/@babel/plugin-transform-computed-properties@7.18.9(@babel/core@7.17.8):
resolution: {integrity: sha512-+i0ZU1bCDymKakLxn5srGHrsAPRELC2WIbzwjLhHW9SIE1cPYkLCL0NlnXMZaM1vhfgA2+M7hySk42VBvrkBRw==}
@@ -8104,7 +8139,6 @@ packages:
dependencies:
'@babel/core': 7.17.8
'@babel/helper-plugin-utils': 7.22.5
- dev: true
/@babel/plugin-transform-computed-properties@7.18.9(@babel/core@7.21.3):
resolution: {integrity: sha512-+i0ZU1bCDymKakLxn5srGHrsAPRELC2WIbzwjLhHW9SIE1cPYkLCL0NlnXMZaM1vhfgA2+M7hySk42VBvrkBRw==}
@@ -8123,6 +8157,7 @@ packages:
dependencies:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.20.2
+ dev: true
/@babel/plugin-transform-destructuring@7.17.7(@babel/core@7.12.9):
resolution: {integrity: sha512-XVh0r5yq9sLR4vZ6eVZe8FKfIcSgaTBxVBRSYokRj2qksf6QerYnTxz9/GTuKTH/n/HwLP7t6gtlybHetJ/6hQ==}
@@ -8162,6 +8197,7 @@ packages:
dependencies:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.22.5
+ dev: true
/@babel/plugin-transform-destructuring@7.21.3(@babel/core@7.17.8):
resolution: {integrity: sha512-bp6hwMFzuiE4HqYEyoGJ/V2LeIWn+hLVKc4pnj++E5XQptwhtcGmSayM029d/j2X1bPKGTlsyPwAubuU22KhMA==}
@@ -8171,7 +8207,6 @@ packages:
dependencies:
'@babel/core': 7.17.8
'@babel/helper-plugin-utils': 7.22.5
- dev: true
/@babel/plugin-transform-destructuring@7.21.3(@babel/core@7.21.3):
resolution: {integrity: sha512-bp6hwMFzuiE4HqYEyoGJ/V2LeIWn+hLVKc4pnj++E5XQptwhtcGmSayM029d/j2X1bPKGTlsyPwAubuU22KhMA==}
@@ -8191,6 +8226,7 @@ packages:
'@babel/core': 7.12.9
'@babel/helper-create-regexp-features-plugin': 7.19.0(@babel/core@7.12.9)
'@babel/helper-plugin-utils': 7.20.2
+ dev: true
/@babel/plugin-transform-dotall-regex@7.16.7(@babel/core@7.12.9):
resolution: {integrity: sha512-Lyttaao2SjZF6Pf4vk1dVKv8YypMpomAbygW+mU5cYP3S5cWTfCJjG8xV6CFdzGFlfWK81IjL9viiTvpb6G7gQ==}
@@ -8234,6 +8270,7 @@ packages:
'@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
+ dev: true
/@babel/plugin-transform-dotall-regex@7.18.6(@babel/core@7.17.8):
resolution: {integrity: sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg==}
@@ -8264,6 +8301,7 @@ packages:
dependencies:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.20.2
+ dev: true
/@babel/plugin-transform-duplicate-keys@7.16.7(@babel/core@7.12.9):
resolution: {integrity: sha512-03DvpbRfvWIXyK0/6QiR1KMTWeT6OcQ7tbhjrXyFS02kjuX/mu5Bvnh5SDSWHxyawit2g5aWhKwI86EE7GUnTw==}
@@ -8333,6 +8371,7 @@ packages:
'@babel/core': 7.12.9
'@babel/helper-builder-binary-assignment-operator-visitor': 7.18.9
'@babel/helper-plugin-utils': 7.20.2
+ dev: true
/@babel/plugin-transform-exponentiation-operator@7.16.7(@babel/core@7.12.9):
resolution: {integrity: sha512-8UYLSlyLgRixQvlYH3J2ekXFHDFLQutdy7FfFAMm3CPZ6q9wHCwnUyiXpQCe3gVVnQlHc5nsuiEVziteRNTXEA==}
@@ -8376,6 +8415,7 @@ packages:
'@babel/core': 7.12.9
'@babel/helper-builder-binary-assignment-operator-visitor': 7.18.9
'@babel/helper-plugin-utils': 7.22.5
+ dev: true
/@babel/plugin-transform-exponentiation-operator@7.18.6(@babel/core@7.17.8):
resolution: {integrity: sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw==}
@@ -8386,7 +8426,6 @@ packages:
'@babel/core': 7.17.8
'@babel/helper-builder-binary-assignment-operator-visitor': 7.18.9
'@babel/helper-plugin-utils': 7.22.5
- dev: true
/@babel/plugin-transform-exponentiation-operator@7.18.6(@babel/core@7.21.3):
resolution: {integrity: sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw==}
@@ -8398,16 +8437,6 @@ packages:
'@babel/helper-builder-binary-assignment-operator-visitor': 7.18.9
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-transform-flow-strip-types@7.16.7(@babel/core@7.12.9):
- resolution: {integrity: sha512-mzmCq3cNsDpZZu9FADYYyfZJIOrSONmHcop2XEKPdBNMa4PDC4eEvcOvzZaCNcjKu72v0XQlA5y1g58aLRXdYg==}
- 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-flow': 7.16.7(@babel/core@7.12.9)
-
/@babel/plugin-transform-flow-strip-types@7.16.7(@babel/core@7.17.8):
resolution: {integrity: sha512-mzmCq3cNsDpZZu9FADYYyfZJIOrSONmHcop2XEKPdBNMa4PDC4eEvcOvzZaCNcjKu72v0XQlA5y1g58aLRXdYg==}
engines: {node: '>=6.9.0'}
@@ -8417,7 +8446,6 @@ packages:
'@babel/core': 7.17.8
'@babel/helper-plugin-utils': 7.22.5
'@babel/plugin-syntax-flow': 7.16.7(@babel/core@7.17.8)
- dev: true
/@babel/plugin-transform-flow-strip-types@7.16.7(@babel/core@7.21.3):
resolution: {integrity: sha512-mzmCq3cNsDpZZu9FADYYyfZJIOrSONmHcop2XEKPdBNMa4PDC4eEvcOvzZaCNcjKu72v0XQlA5y1g58aLRXdYg==}
@@ -8437,6 +8465,7 @@ packages:
dependencies:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.20.2
+ dev: true
/@babel/plugin-transform-for-of@7.16.7(@babel/core@7.12.9):
resolution: {integrity: sha512-/QZm9W92Ptpw7sjI9Nx1mbcsWz33+l8kuMIQnDwgQBG5s3fAfQvkRjQ7NqXhtNcKOnPkdICmUHyCaWW06HCsqg==}
@@ -8476,6 +8505,7 @@ packages:
dependencies:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.22.5
+ dev: true
/@babel/plugin-transform-for-of@7.18.8(@babel/core@7.17.8):
resolution: {integrity: sha512-yEfTRnjuskWYo0k1mHUqrVWaZwrdq8AYbfrpqULOJOaucGSp4mNMVps+YtA8byoevxS/urwU75vyhQIxcCgiBQ==}
@@ -8485,7 +8515,6 @@ packages:
dependencies:
'@babel/core': 7.17.8
'@babel/helper-plugin-utils': 7.22.5
- dev: true
/@babel/plugin-transform-for-of@7.18.8(@babel/core@7.21.3):
resolution: {integrity: sha512-yEfTRnjuskWYo0k1mHUqrVWaZwrdq8AYbfrpqULOJOaucGSp4mNMVps+YtA8byoevxS/urwU75vyhQIxcCgiBQ==}
@@ -8505,6 +8534,7 @@ packages:
'@babel/core': 7.12.9
'@babel/helper-function-name': 7.19.0
'@babel/helper-plugin-utils': 7.20.2
+ dev: true
/@babel/plugin-transform-function-name@7.16.7(@babel/core@7.12.9):
resolution: {integrity: sha512-SU/C68YVwTRxqWj5kgsbKINakGag0KTgq9f2iZEXdStoAbOzLHEBRYzImmA6yFo8YZhJVflvXmIHUO7GWHmxxA==}
@@ -8514,8 +8544,8 @@ packages:
dependencies:
'@babel/core': 7.12.9
'@babel/helper-compilation-targets': 7.20.7(@babel/core@7.12.9)
- '@babel/helper-function-name': 7.22.5
- '@babel/helper-plugin-utils': 7.22.5
+ '@babel/helper-function-name': 7.21.0
+ '@babel/helper-plugin-utils': 7.21.5
dev: true
/@babel/plugin-transform-function-name@7.16.7(@babel/core@7.17.8):
@@ -8552,6 +8582,7 @@ packages:
'@babel/helper-compilation-targets': 7.20.7(@babel/core@7.12.9)
'@babel/helper-function-name': 7.21.0
'@babel/helper-plugin-utils': 7.21.5
+ dev: true
/@babel/plugin-transform-function-name@7.18.9(@babel/core@7.17.8):
resolution: {integrity: sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ==}
@@ -8561,9 +8592,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
- dev: true
+ '@babel/helper-function-name': 7.22.5
+ '@babel/helper-plugin-utils': 7.22.5
/@babel/plugin-transform-function-name@7.18.9(@babel/core@7.21.3):
resolution: {integrity: sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ==}
@@ -8573,8 +8603,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==}
@@ -8584,6 +8614,7 @@ packages:
dependencies:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.20.2
+ dev: true
/@babel/plugin-transform-literals@7.16.7(@babel/core@7.12.9):
resolution: {integrity: sha512-6tH8RTpTWI0s2sV6uq3e/C9wPo4PTqqZps4uF0kzQ9/xPLFQtipynvmT1g/dOfEJ+0EQsHhkQ/zyRId8J2b8zQ==}
@@ -8623,6 +8654,7 @@ packages:
dependencies:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.22.5
+ dev: true
/@babel/plugin-transform-literals@7.18.9(@babel/core@7.17.8):
resolution: {integrity: sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg==}
@@ -8632,7 +8664,6 @@ packages:
dependencies:
'@babel/core': 7.17.8
'@babel/helper-plugin-utils': 7.22.5
- dev: true
/@babel/plugin-transform-literals@7.18.9(@babel/core@7.21.3):
resolution: {integrity: sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg==}
@@ -8651,6 +8682,7 @@ packages:
dependencies:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.20.2
+ dev: true
/@babel/plugin-transform-member-expression-literals@7.16.7(@babel/core@7.12.9):
resolution: {integrity: sha512-mBruRMbktKQwbxaJof32LT9KLy2f3gH+27a5XSuXo6h7R3vqltl0PgZ80C8ZMKw98Bf8bqt6BEVi3svOh2PzMw==}
@@ -8690,6 +8722,7 @@ packages:
dependencies:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.22.5
+ dev: true
/@babel/plugin-transform-member-expression-literals@7.18.6(@babel/core@7.17.8):
resolution: {integrity: sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA==}
@@ -8699,7 +8732,6 @@ packages:
dependencies:
'@babel/core': 7.17.8
'@babel/helper-plugin-utils': 7.22.5
- dev: true
/@babel/plugin-transform-member-expression-literals@7.18.6(@babel/core@7.21.3):
resolution: {integrity: sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA==}
@@ -8722,6 +8754,7 @@ packages:
babel-plugin-dynamic-import-node: 2.3.3
transitivePeerDependencies:
- supports-color
+ dev: true
/@babel/plugin-transform-modules-amd@7.16.7(@babel/core@7.12.9):
resolution: {integrity: sha512-KaaEtgBL7FKYwjJ/teH63oAmE3lP34N3kshz8mm4VMAw7U3PxjVwwUmxEFksbgsNUaO3wId9R2AVQYSEGRa2+g==}
@@ -8804,6 +8837,7 @@ packages:
babel-plugin-dynamic-import-node: 2.3.3
transitivePeerDependencies:
- supports-color
+ dev: true
/@babel/plugin-transform-modules-commonjs@7.17.7(@babel/core@7.12.9):
resolution: {integrity: sha512-ITPmR2V7MqioMJyrxUo2onHNC3e+MvfFiFIR0RP21d3PtlVb6sfzoxNKiphSZUOM9hEIdzCcZe83ieX3yoqjUA==}
@@ -8861,17 +8895,6 @@ packages:
'@babel/helper-simple-access': 7.20.2
dev: true
- /@babel/plugin-transform-modules-commonjs@7.22.15(@babel/core@7.12.9):
- resolution: {integrity: sha512-jWL4eh90w0HQOTKP2MoXXUpVxilxsB2Vl4ji69rSjS3EcZ/v4sBmn+A3NpepuJzBhOaEBbR7udonlHHn5DWidg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@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/plugin-transform-modules-commonjs@7.22.15(@babel/core@7.17.8):
resolution: {integrity: sha512-jWL4eh90w0HQOTKP2MoXXUpVxilxsB2Vl4ji69rSjS3EcZ/v4sBmn+A3NpepuJzBhOaEBbR7udonlHHn5DWidg==}
engines: {node: '>=6.9.0'}
@@ -8882,7 +8905,6 @@ packages:
'@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==}
@@ -8909,6 +8931,7 @@ packages:
babel-plugin-dynamic-import-node: 2.3.3
transitivePeerDependencies:
- supports-color
+ dev: true
/@babel/plugin-transform-modules-systemjs@7.17.8(@babel/core@7.12.9):
resolution: {integrity: sha512-39reIkMTUVagzgA5x88zDYXPCMT6lcaRKs1+S9K6NKBPErbgO/w/kP8GlNQTC87b412ZTlmNgr3k2JrWgHH+Bw==}
@@ -9001,6 +9024,7 @@ packages:
'@babel/helper-plugin-utils': 7.20.2
transitivePeerDependencies:
- supports-color
+ dev: true
/@babel/plugin-transform-modules-umd@7.16.7(@babel/core@7.12.9):
resolution: {integrity: sha512-EMh7uolsC8O4xhudF2F6wedbSHm1HHZ0C6aJ7K67zcDNidMzVcxWdGr+htW9n21klm+bOn+Rx4CBsAntZd3rEQ==}
@@ -9075,6 +9099,7 @@ packages:
dependencies:
'@babel/core': 7.12.9
'@babel/helper-create-regexp-features-plugin': 7.19.0(@babel/core@7.12.9)
+ dev: true
/@babel/plugin-transform-named-capturing-groups-regex@7.16.8(@babel/core@7.12.9):
resolution: {integrity: sha512-j3Jw+n5PvpmhRR+mrgIh04puSANCk/T/UA3m3P1MjJkhlK906+ApHhDIqBQDdOgL/r1UYpz4GNclTXxyZrYGSw==}
@@ -9115,6 +9140,7 @@ packages:
'@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
+ dev: true
/@babel/plugin-transform-named-capturing-groups-regex@7.19.1(@babel/core@7.17.8):
resolution: {integrity: sha512-oWk9l9WItWBQYS4FgXD4Uyy5kq898lvkXpXQxoJEY1RnvPk4R/Dvu2ebXU9q8lP+rlMwUQTFf2Ok6d78ODa0kw==}
@@ -9125,7 +9151,6 @@ packages:
'@babel/core': 7.17.8
'@babel/helper-create-regexp-features-plugin': 7.19.0(@babel/core@7.17.8)
'@babel/helper-plugin-utils': 7.22.5
- dev: true
/@babel/plugin-transform-named-capturing-groups-regex@7.19.1(@babel/core@7.21.3):
resolution: {integrity: sha512-oWk9l9WItWBQYS4FgXD4Uyy5kq898lvkXpXQxoJEY1RnvPk4R/Dvu2ebXU9q8lP+rlMwUQTFf2Ok6d78ODa0kw==}
@@ -9145,6 +9170,7 @@ packages:
dependencies:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.20.2
+ dev: true
/@babel/plugin-transform-new-target@7.16.7(@babel/core@7.12.9):
resolution: {integrity: sha512-xiLDzWNMfKoGOpc6t3U+etCE2yRnn3SM09BXqWPIZOBpL2gvVrBWUKnsJx0K/ADi5F5YC5f8APFfWrz25TdlGg==}
@@ -9216,6 +9242,7 @@ packages:
'@babel/helper-replace-supers': 7.19.1
transitivePeerDependencies:
- supports-color
+ dev: true
/@babel/plugin-transform-object-super@7.16.7(@babel/core@7.12.9):
resolution: {integrity: sha512-14J1feiQVWaGvRxj2WjyMuXS2jsBkgB3MdSN5HuC2G5nRspa5RK9COcs82Pwy5BuGcjb+fYaUj94mYcOj7rCvw==}
@@ -9267,6 +9294,7 @@ packages:
'@babel/helper-replace-supers': 7.20.7
transitivePeerDependencies:
- supports-color
+ dev: true
/@babel/plugin-transform-object-super@7.18.6(@babel/core@7.17.8):
resolution: {integrity: sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA==}
@@ -9279,7 +9307,6 @@ packages:
'@babel/helper-replace-supers': 7.20.7
transitivePeerDependencies:
- supports-color
- dev: true
/@babel/plugin-transform-object-super@7.18.6(@babel/core@7.21.3):
resolution: {integrity: sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA==}
@@ -9301,6 +9328,7 @@ packages:
dependencies:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.20.2
+ dev: true
/@babel/plugin-transform-parameters@7.16.7(@babel/core@7.12.9):
resolution: {integrity: sha512-AT3MufQ7zZEhU2hwOA11axBnExW0Lszu4RL/tAlUJBuNoRak+wehQW8h6KcXOcgjY42fHtDxswuMhMjFEuv/aw==}
@@ -9340,6 +9368,7 @@ packages:
dependencies:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.22.5
+ dev: true
/@babel/plugin-transform-parameters@7.21.3(@babel/core@7.17.8):
resolution: {integrity: sha512-Wxc+TvppQG9xWFYatvCGPvZ6+SIUxQ2ZdiBP+PHYMIjnPXD+uThCshaz4NZOnODAtBjjcVQQ/3OKs9LW28purQ==}
@@ -9349,7 +9378,6 @@ packages:
dependencies:
'@babel/core': 7.17.8
'@babel/helper-plugin-utils': 7.22.5
- dev: true
/@babel/plugin-transform-parameters@7.21.3(@babel/core@7.21.3):
resolution: {integrity: sha512-Wxc+TvppQG9xWFYatvCGPvZ6+SIUxQ2ZdiBP+PHYMIjnPXD+uThCshaz4NZOnODAtBjjcVQQ/3OKs9LW28purQ==}
@@ -9368,6 +9396,7 @@ packages:
dependencies:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.20.2
+ dev: true
/@babel/plugin-transform-property-literals@7.16.7(@babel/core@7.12.9):
resolution: {integrity: sha512-z4FGr9NMGdoIl1RqavCqGG+ZuYjfZ/hkCIeuH6Do7tXmSm0ls11nYVSJqFEUOSJbDab5wC6lRE/w6YjVcr6Hqw==}
@@ -9407,6 +9436,7 @@ packages:
dependencies:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.22.5
+ dev: true
/@babel/plugin-transform-property-literals@7.18.6(@babel/core@7.17.8):
resolution: {integrity: sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==}
@@ -9416,7 +9446,6 @@ packages:
dependencies:
'@babel/core': 7.17.8
'@babel/helper-plugin-utils': 7.22.5
- dev: true
/@babel/plugin-transform-property-literals@7.18.6(@babel/core@7.21.3):
resolution: {integrity: sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==}
@@ -9437,15 +9466,6 @@ packages:
'@babel/helper-plugin-utils': 7.21.5
dev: true
- /@babel/plugin-transform-react-display-name@7.18.6(@babel/core@7.12.9):
- resolution: {integrity: sha512-TV4sQ+T013n61uMoygyMRm+xf04Bd5oqFpv2jAEQwSZ8NwQA7zeRPg1LMVg2PWi3zWBz+CLKD+v5bcpZ/BS0aA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.12.9
- '@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==}
engines: {node: '>=6.9.0'}
@@ -9454,7 +9474,6 @@ packages:
dependencies:
'@babel/core': 7.17.8
'@babel/helper-plugin-utils': 7.22.5
- dev: true
/@babel/plugin-transform-react-display-name@7.18.6(@babel/core@7.21.3):
resolution: {integrity: sha512-TV4sQ+T013n61uMoygyMRm+xf04Bd5oqFpv2jAEQwSZ8NwQA7zeRPg1LMVg2PWi3zWBz+CLKD+v5bcpZ/BS0aA==}
@@ -9485,13 +9504,13 @@ packages:
'@babel/plugin-transform-react-jsx': 7.22.3(@babel/core@7.21.3)
dev: true
- /@babel/plugin-transform-react-jsx-self@7.18.6(@babel/core@7.12.9):
+ /@babel/plugin-transform-react-jsx-self@7.18.6(@babel/core@7.17.8):
resolution: {integrity: sha512-A0LQGx4+4Jv7u/tWzoJF7alZwnBDQd6cGLh9P+Ttk4dpiL+J5p7NSNv/9tlEFFJDq3kjxOavWmbm6t0Gk+A3Ig==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.12.9
+ '@babel/core': 7.17.8
'@babel/helper-plugin-utils': 7.22.5
/@babel/plugin-transform-react-jsx-self@7.18.6(@babel/core@7.21.3):
@@ -9503,13 +9522,13 @@ packages:
'@babel/core': 7.21.3
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-transform-react-jsx-source@7.18.6(@babel/core@7.12.9):
+ /@babel/plugin-transform-react-jsx-source@7.18.6(@babel/core@7.17.8):
resolution: {integrity: sha512-utZmlASneDfdaMh0m/WausbjUjEdGrQJz0vFK93d7wD3xf5wBtX219+q6IlCNZeguIcxS2f/CvLZrlLSvSHQXw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.12.9
+ '@babel/core': 7.17.8
'@babel/helper-plugin-utils': 7.22.5
/@babel/plugin-transform-react-jsx-source@7.18.6(@babel/core@7.21.3):
@@ -9576,19 +9595,6 @@ packages:
'@babel/plugin-syntax-jsx': 7.21.4(@babel/core@7.21.3)
'@babel/types': 7.22.15
- /@babel/plugin-transform-react-jsx@7.22.3(@babel/core@7.12.9):
- resolution: {integrity: sha512-JEulRWG2f04a7L8VWaOngWiK6p+JOSpB+DAtwfJgOaej1qdbNxqtK7MwTBHjUA10NeFcszlFNqCdbRcirzh2uQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.12.9
- '@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.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):
resolution: {integrity: sha512-JEulRWG2f04a7L8VWaOngWiK6p+JOSpB+DAtwfJgOaej1qdbNxqtK7MwTBHjUA10NeFcszlFNqCdbRcirzh2uQ==}
engines: {node: '>=6.9.0'}
@@ -9601,7 +9607,6 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
'@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.17.8)
'@babel/types': 7.22.15
- dev: true
/@babel/plugin-transform-react-jsx@7.22.3(@babel/core@7.21.3):
resolution: {integrity: sha512-JEulRWG2f04a7L8VWaOngWiK6p+JOSpB+DAtwfJgOaej1qdbNxqtK7MwTBHjUA10NeFcszlFNqCdbRcirzh2uQ==}
@@ -9646,6 +9651,7 @@ packages:
dependencies:
'@babel/core': 7.12.9
regenerator-transform: 0.14.5
+ dev: true
/@babel/plugin-transform-regenerator@7.16.7(@babel/core@7.12.9):
resolution: {integrity: sha512-mF7jOgGYCkSJagJ6XCujSQg+6xC1M77/03K2oBmVJWoFGNUtnVJO4WHKJk3dnPC8HCcj4xBQP1Egm8DWh3Pb3Q==}
@@ -9717,6 +9723,7 @@ packages:
dependencies:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.20.2
+ dev: true
/@babel/plugin-transform-reserved-words@7.16.7(@babel/core@7.12.9):
resolution: {integrity: sha512-KQzzDnZ9hWQBjwi5lpY5v9shmm6IVG0U9pB18zvMu2i4H90xpT4gmqwPYsn8rObiadYe2M0gmgsiOIF5A/2rtg==}
@@ -9811,18 +9818,18 @@ packages:
- supports-color
dev: true
- /@babel/plugin-transform-runtime@7.19.1(@babel/core@7.12.9):
+ /@babel/plugin-transform-runtime@7.19.1(@babel/core@7.17.8):
resolution: {integrity: sha512-2nJjTUFIzBMP/f/miLxEK9vxwW/KUXsdvN4sR//TmuDhe6yU2h57WmIOE12Gng3MDP/xpjUV/ToZRdcf8Yj4fA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.12.9
+ '@babel/core': 7.17.8
'@babel/helper-module-imports': 7.22.15
'@babel/helper-plugin-utils': 7.22.5
- babel-plugin-polyfill-corejs2: 0.3.3(@babel/core@7.12.9)
- babel-plugin-polyfill-corejs3: 0.6.0(@babel/core@7.12.9)
- babel-plugin-polyfill-regenerator: 0.4.1(@babel/core@7.12.9)
+ babel-plugin-polyfill-corejs2: 0.3.3(@babel/core@7.17.8)
+ babel-plugin-polyfill-corejs3: 0.6.0(@babel/core@7.17.8)
+ babel-plugin-polyfill-regenerator: 0.4.1(@babel/core@7.17.8)
semver: 6.3.1
transitivePeerDependencies:
- supports-color
@@ -9851,6 +9858,7 @@ packages:
dependencies:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.20.2
+ dev: true
/@babel/plugin-transform-shorthand-properties@7.16.7(@babel/core@7.12.9):
resolution: {integrity: sha512-hah2+FEnoRoATdIb05IOXf+4GzXYTq75TVhIn1PewihbpyrNWUt2JbudKQOETWw6QpLe+AIUpJ5MVLYTQbeeUg==}
@@ -9890,6 +9898,7 @@ packages:
dependencies:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.22.5
+ dev: true
/@babel/plugin-transform-shorthand-properties@7.18.6(@babel/core@7.17.8):
resolution: {integrity: sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw==}
@@ -9899,7 +9908,6 @@ packages:
dependencies:
'@babel/core': 7.17.8
'@babel/helper-plugin-utils': 7.22.5
- dev: true
/@babel/plugin-transform-shorthand-properties@7.18.6(@babel/core@7.21.3):
resolution: {integrity: sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw==}
@@ -9919,6 +9927,7 @@ packages:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.20.2
'@babel/helper-skip-transparent-expression-wrappers': 7.18.9
+ dev: true
/@babel/plugin-transform-spread@7.16.7(@babel/core@7.12.9):
resolution: {integrity: sha512-+pjJpgAngb53L0iaA5gU/1MLXJIfXcYepLgXB3esVRf4fqmj8f2cxM3/FKaHsZms08hFQJkFccEWuIpm429TXg==}
@@ -9962,6 +9971,7 @@ packages:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.22.5
'@babel/helper-skip-transparent-expression-wrappers': 7.22.5
+ dev: true
/@babel/plugin-transform-spread@7.19.0(@babel/core@7.17.8):
resolution: {integrity: sha512-RsuMk7j6n+r752EtzyScnWkQyuJdli6LdO5Klv8Yx0OfPVTcQkIUfS8clx5e9yHXzlnhOZF3CbQ8C2uP5j074w==}
@@ -9972,7 +9982,6 @@ packages:
'@babel/core': 7.17.8
'@babel/helper-plugin-utils': 7.22.5
'@babel/helper-skip-transparent-expression-wrappers': 7.22.5
- dev: true
/@babel/plugin-transform-spread@7.19.0(@babel/core@7.21.3):
resolution: {integrity: sha512-RsuMk7j6n+r752EtzyScnWkQyuJdli6LdO5Klv8Yx0OfPVTcQkIUfS8clx5e9yHXzlnhOZF3CbQ8C2uP5j074w==}
@@ -9992,6 +10001,7 @@ packages:
dependencies:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.20.2
+ dev: true
/@babel/plugin-transform-sticky-regex@7.16.7(@babel/core@7.12.9):
resolution: {integrity: sha512-NJa0Bd/87QV5NZZzTuZG5BPJjLYadeSZ9fO6oOUoL4iQx+9EEuw/eEM92SrsT19Yc2jgB1u1hsjqDtH02c3Drw==}
@@ -10031,6 +10041,7 @@ packages:
dependencies:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.22.5
+ dev: true
/@babel/plugin-transform-sticky-regex@7.18.6(@babel/core@7.17.8):
resolution: {integrity: sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q==}
@@ -10040,7 +10051,6 @@ packages:
dependencies:
'@babel/core': 7.17.8
'@babel/helper-plugin-utils': 7.22.5
- dev: true
/@babel/plugin-transform-sticky-regex@7.18.6(@babel/core@7.21.3):
resolution: {integrity: sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q==}
@@ -10059,6 +10069,7 @@ packages:
dependencies:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.20.2
+ dev: true
/@babel/plugin-transform-template-literals@7.16.7(@babel/core@7.12.9):
resolution: {integrity: sha512-VwbkDDUeenlIjmfNeDX/V0aWrQH2QiVyJtwymVQSzItFDTpxfyJh3EVaQiS0rIN/CqbLGr0VcGmuwyTdZtdIsA==}
@@ -10098,6 +10109,7 @@ packages:
dependencies:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.22.5
+ dev: true
/@babel/plugin-transform-template-literals@7.18.9(@babel/core@7.17.8):
resolution: {integrity: sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA==}
@@ -10107,7 +10119,6 @@ packages:
dependencies:
'@babel/core': 7.17.8
'@babel/helper-plugin-utils': 7.22.5
- dev: true
/@babel/plugin-transform-template-literals@7.18.9(@babel/core@7.21.3):
resolution: {integrity: sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA==}
@@ -10126,6 +10137,7 @@ packages:
dependencies:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.20.2
+ dev: true
/@babel/plugin-transform-typeof-symbol@7.16.7(@babel/core@7.12.9):
resolution: {integrity: sha512-p2rOixCKRJzpg9JB4gjnG4gjWkWa89ZoYUnl9snJ1cWIcTH/hvxZqfO+WjG6T8DRBpctEol5jw1O5rA8gkCokQ==}
@@ -10196,6 +10208,8 @@ packages:
'@babel/helper-create-class-features-plugin': 7.19.0(@babel/core@7.17.8)
'@babel/helper-plugin-utils': 7.21.5
'@babel/plugin-syntax-typescript': 7.16.7(@babel/core@7.17.8)
+ transitivePeerDependencies:
+ - supports-color
dev: true
/@babel/plugin-transform-typescript@7.16.8(@babel/core@7.21.3):
@@ -10222,17 +10236,17 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
'@babel/plugin-syntax-typescript': 7.22.5(@babel/core@7.21.3)
- /@babel/plugin-transform-typescript@7.22.15(@babel/core@7.12.9):
+ /@babel/plugin-transform-typescript@7.22.15(@babel/core@7.17.8):
resolution: {integrity: sha512-1uirS0TnijxvQLnlv5wQBwOX3E1wCFX7ITv+9pBV2wKEk4K+M5tqDaoNXnTH8tjEIYHLO98MwiTWO04Ggz4XuA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.12.9
+ '@babel/core': 7.17.8
'@babel/helper-annotate-as-pure': 7.22.5
- '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.12.9)
+ '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.17.8)
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-typescript': 7.22.5(@babel/core@7.12.9)
+ '@babel/plugin-syntax-typescript': 7.22.5(@babel/core@7.17.8)
/@babel/plugin-transform-typescript@7.22.15(@babel/core@7.21.3):
resolution: {integrity: sha512-1uirS0TnijxvQLnlv5wQBwOX3E1wCFX7ITv+9pBV2wKEk4K+M5tqDaoNXnTH8tjEIYHLO98MwiTWO04Ggz4XuA==}
@@ -10254,6 +10268,7 @@ packages:
dependencies:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.20.2
+ dev: true
/@babel/plugin-transform-unicode-escapes@7.16.7(@babel/core@7.12.9):
resolution: {integrity: sha512-TAV5IGahIz3yZ9/Hfv35TV2xEm+kaBDaZQCn2S/hG9/CZ0DktxJv9eKfPc7yYCvOYR4JGx1h8C+jcSOvgaaI/Q==}
@@ -10323,6 +10338,7 @@ packages:
'@babel/core': 7.12.9
'@babel/helper-create-regexp-features-plugin': 7.19.0(@babel/core@7.12.9)
'@babel/helper-plugin-utils': 7.20.2
+ dev: true
/@babel/plugin-transform-unicode-regex@7.16.7(@babel/core@7.12.9):
resolution: {integrity: sha512-oC5tYYKw56HO75KZVLQ+R/Nl3Hro9kf8iG0hXoaHP7tjAyCpvqBiSNe6vGrZni1Z6MggmUOC6A7VP7AVmw225Q==}
@@ -10366,6 +10382,7 @@ packages:
'@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
+ dev: true
/@babel/plugin-transform-unicode-regex@7.18.6(@babel/core@7.17.8):
resolution: {integrity: sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA==}
@@ -10376,7 +10393,6 @@ packages:
'@babel/core': 7.17.8
'@babel/helper-create-regexp-features-plugin': 7.19.0(@babel/core@7.17.8)
'@babel/helper-plugin-utils': 7.22.5
- dev: true
/@babel/plugin-transform-unicode-regex@7.18.6(@babel/core@7.21.3):
resolution: {integrity: sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA==}
@@ -10470,6 +10486,7 @@ packages:
semver: 5.7.1
transitivePeerDependencies:
- supports-color
+ dev: true
/@babel/preset-env@7.16.11(@babel/core@7.12.9):
resolution: {integrity: sha512-qcmWG8R7ZW6WBRPZK//y+E3Cli151B20W1Rv7ln27vuPaXU/8TKms6jFdiJtF7UDTxcrb7mZd88tAeK9LjdT8g==}
@@ -11017,6 +11034,7 @@ packages:
'@babel/plugin-transform-dotall-regex': 7.18.6(@babel/core@7.12.9)
'@babel/types': 7.22.4
esutils: 2.0.3
+ dev: true
/@babel/preset-modules@0.1.5(@babel/core@7.17.8):
resolution: {integrity: sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==}
@@ -11083,6 +11101,8 @@ packages:
'@babel/helper-plugin-utils': 7.21.5
'@babel/helper-validator-option': 7.21.0
'@babel/plugin-transform-typescript': 7.16.8(@babel/core@7.17.8)
+ transitivePeerDependencies:
+ - supports-color
dev: true
/@babel/preset-typescript@7.16.7(@babel/core@7.21.3):
@@ -11239,7 +11259,7 @@ packages:
'@babel/helper-split-export-declaration': 7.18.6
'@babel/parser': 7.21.3
'@babel/types': 7.21.3
- debug: 4.3.4(supports-color@9.2.2)
+ debug: 4.3.4(supports-color@8.1.1)
globals: 11.12.0
transitivePeerDependencies:
- supports-color
@@ -11256,7 +11276,7 @@ packages:
'@babel/helper-split-export-declaration': 7.18.6
'@babel/parser': 7.22.15
'@babel/types': 7.22.15
- debug: 4.3.4(supports-color@9.2.2)
+ debug: 4.3.4(supports-color@8.1.1)
globals: 11.12.0
transitivePeerDependencies:
- supports-color
@@ -11273,7 +11293,7 @@ packages:
'@babel/helper-split-export-declaration': 7.22.6
'@babel/parser': 7.22.15
'@babel/types': 7.22.15
- debug: 4.3.4(supports-color@9.2.2)
+ debug: 4.3.4(supports-color@8.1.1)
globals: 11.12.0
transitivePeerDependencies:
- supports-color
@@ -11284,6 +11304,7 @@ packages:
dependencies:
'@babel/helper-validator-identifier': 7.19.1
to-fast-properties: 2.0.0
+ dev: true
/@babel/types@7.17.0:
resolution: {integrity: sha512-TmKSNO4D5rzhL5bjWFcVHHLETzfQ/AmbKpKPOSjlP0WoHZ6L911fgoOKY4Alp/emzG4cHJdyN49zpgkbXFEHHw==}
@@ -11754,7 +11775,7 @@ packages:
engines: {node: ^10.12.0 || >=12.0.0}
dependencies:
ajv: 6.12.6
- debug: 4.3.4(supports-color@9.2.2)
+ debug: 4.3.4(supports-color@8.1.1)
espree: 7.3.1
globals: 13.19.0
ignore: 4.0.6
@@ -11771,7 +11792,7 @@ packages:
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dependencies:
ajv: 6.12.6
- debug: 4.3.4(supports-color@9.2.2)
+ debug: 4.3.4(supports-color@8.1.1)
espree: 9.4.1
globals: 13.19.0
ignore: 5.2.0
@@ -11932,7 +11953,7 @@ packages:
engines: {node: '>=10.10.0'}
dependencies:
'@humanwhocodes/object-schema': 1.2.1
- debug: 4.3.4(supports-color@9.2.2)
+ debug: 4.3.4(supports-color@8.1.1)
minimatch: 3.1.2
transitivePeerDependencies:
- supports-color
@@ -11942,7 +11963,7 @@ packages:
engines: {node: '>=10.10.0'}
dependencies:
'@humanwhocodes/object-schema': 1.2.1
- debug: 4.3.4(supports-color@9.2.2)
+ debug: 4.3.4(supports-color@8.1.1)
minimatch: 3.1.2
transitivePeerDependencies:
- supports-color
@@ -13149,7 +13170,7 @@ packages:
/@kwsites/file-exists@1.1.1:
resolution: {integrity: sha512-m9/5YGR18lIwxSFDwfE3oA7bWuq9kdau6ugN4H2rJeyhFQZcG9AgSHkQtSD15a8WvTgfz9aikZMrKPHvbpqFiw==}
dependencies:
- debug: 4.3.4(supports-color@9.2.2)
+ debug: 4.3.4(supports-color@8.1.1)
transitivePeerDependencies:
- supports-color
@@ -13508,7 +13529,7 @@ packages:
'@oclif/color': 1.0.1
'@oclif/core': 1.16.1
chalk: 4.1.2
- debug: 4.3.4(supports-color@9.2.2)
+ debug: 4.3.4(supports-color@8.1.1)
fs-extra: 9.1.0
http-call: 5.3.0
load-json-file: 5.3.0
@@ -13526,7 +13547,7 @@ packages:
dependencies:
'@oclif/core': 1.16.1
chalk: 4.1.2
- debug: 4.3.4(supports-color@9.2.2)
+ debug: 4.3.4(supports-color@8.1.1)
fs-extra: 9.1.0
http-call: 5.3.0
lodash: 4.17.21
@@ -14063,7 +14084,7 @@ packages:
react-refresh: 0.11.0
schema-utils: 3.1.1
source-map: 0.7.3
- webpack: 5.76.3(webpack-cli@4.9.2)
+ webpack: 5.76.3(webpack-cli@3.3.12)
dev: true
/@pmmmwh/react-refresh-webpack-plugin@0.5.10(react-refresh@0.14.0)(webpack-dev-server@4.12.0)(webpack@5.70.0):
@@ -15172,7 +15193,7 @@ packages:
transitivePeerDependencies:
- encoding
- /@react-native-community/cli-plugin-metro@9.1.1(@babel/core@7.12.9):
+ /@react-native-community/cli-plugin-metro@9.1.1(@babel/core@7.17.8):
resolution: {integrity: sha512-8CBwEZrbYIeQw69Exg/oW20pV9C6mbYlDz0pxZJ0AYmC20Q+wFFs6sUh5zm28ZUh1L0LxNGmhle/YvMPqA+fMQ==}
dependencies:
'@react-native-community/cli-server-api': 9.1.0
@@ -15181,7 +15202,7 @@ packages:
metro: 0.72.2
metro-config: 0.72.2
metro-core: 0.72.2
- metro-react-native-babel-transformer: 0.72.1(@babel/core@7.12.9)
+ metro-react-native-babel-transformer: 0.72.1(@babel/core@7.17.8)
metro-resolver: 0.72.2
metro-runtime: 0.72.2
readline: 1.3.0
@@ -15230,7 +15251,7 @@ packages:
dependencies:
joi: 17.6.0
- /@react-native-community/cli@9.1.1(@babel/core@7.12.9):
+ /@react-native-community/cli@9.1.1(@babel/core@7.17.8):
resolution: {integrity: sha512-LjXcYahjFzM7TlsGzQLH9bCx3yvBsHEj/5Ytdnk0stdDET329JdXWEh6JiSRjVWPVAoDAV5pRAFmEOEGDNIiAw==}
engines: {node: '>=14'}
hasBin: true
@@ -15240,7 +15261,7 @@ packages:
'@react-native-community/cli-debugger-ui': 9.0.0
'@react-native-community/cli-doctor': 9.1.1
'@react-native-community/cli-hermes': 9.1.0
- '@react-native-community/cli-plugin-metro': 9.1.1(@babel/core@7.12.9)
+ '@react-native-community/cli-plugin-metro': 9.1.1(@babel/core@7.17.8)
'@react-native-community/cli-server-api': 9.1.0
'@react-native-community/cli-tools': 9.1.0
'@react-native-community/cli-types': 9.1.0
@@ -16079,7 +16100,7 @@ packages:
ts-dedent: 2.2.0
typescript: 5.1.6
util-deprecate: 1.0.2
- webpack: 5.76.3(webpack-cli@4.9.2)
+ webpack: 5.76.3(webpack-cli@3.3.12)
webpack-dev-middleware: 4.3.0(webpack@5.76.3)
webpack-hot-middleware: 2.25.1
webpack-virtual-modules: 0.4.3
@@ -16292,7 +16313,7 @@ packages:
typescript: 5.1.6
unfetch: 4.2.0
util-deprecate: 1.0.2
- webpack: 5.76.3(webpack-cli@4.9.2)
+ webpack: 5.76.3(webpack-cli@3.3.12)
dev: true
/@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):
@@ -16558,7 +16579,7 @@ packages:
react: 17.0.2
react-dom: 17.0.2(react@17.0.2)
typescript: 5.1.6
- webpack: 5.76.3(webpack-cli@4.9.2)
+ webpack: 5.76.3(webpack-cli@3.3.12)
transitivePeerDependencies:
- '@storybook/mdx2-csf'
- acorn
@@ -16805,7 +16826,7 @@ packages:
ts-dedent: 2.2.0
typescript: 5.1.6
util-deprecate: 1.0.2
- webpack: 5.76.3(webpack-cli@4.9.2)
+ webpack: 5.76.3(webpack-cli@3.3.12)
webpack-dev-middleware: 4.3.0(webpack@5.76.3)
webpack-virtual-modules: 0.4.3
transitivePeerDependencies:
@@ -16926,7 +16947,7 @@ packages:
typescript: '>= 4.x'
webpack: '>= 4'
dependencies:
- debug: 4.3.4(supports-color@9.2.2)
+ debug: 4.3.4(supports-color@8.1.1)
endent: 2.1.0
find-cache-dir: 3.3.2
flat-cache: 3.0.4
@@ -16934,7 +16955,7 @@ packages:
react-docgen-typescript: 2.2.2(typescript@5.1.6)
tslib: 2.5.0
typescript: 5.1.6
- webpack: 5.76.3(webpack-cli@4.9.2)
+ webpack: 5.76.3(webpack-cli@3.3.12)
transitivePeerDependencies:
- supports-color
dev: true
@@ -17098,7 +17119,7 @@ packages:
ts-dedent: 2.2.0
typescript: 5.1.6
util-deprecate: 1.0.2
- webpack: 5.76.3(webpack-cli@4.9.2)
+ webpack: 5.76.3(webpack-cli@3.3.12)
transitivePeerDependencies:
- '@storybook/mdx2-csf'
- '@swc/core'
@@ -18466,21 +18487,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==}
@@ -18494,17 +18500,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:
@@ -18687,7 +18682,7 @@ packages:
'@typescript-eslint/experimental-utils': 4.33.0(eslint@7.32.0)(typescript@5.1.6)
'@typescript-eslint/parser': 4.33.0(eslint@8.32.0)(typescript@5.1.6)
'@typescript-eslint/scope-manager': 4.33.0
- debug: 4.3.4(supports-color@9.2.2)
+ debug: 4.3.4(supports-color@8.1.1)
eslint: 7.32.0
functional-red-black-tree: 1.0.1
ignore: 5.2.0
@@ -18714,7 +18709,7 @@ packages:
'@typescript-eslint/scope-manager': 5.54.0
'@typescript-eslint/type-utils': 5.54.0(eslint@8.32.0)(typescript@5.1.6)
'@typescript-eslint/utils': 5.54.0(eslint@8.32.0)(typescript@5.1.6)
- debug: 4.3.4(supports-color@9.2.2)
+ debug: 4.3.4(supports-color@8.1.1)
eslint: 8.32.0
grapheme-splitter: 1.0.4
ignore: 5.2.0
@@ -18802,7 +18797,7 @@ packages:
'@typescript-eslint/scope-manager': 4.33.0
'@typescript-eslint/types': 4.33.0
'@typescript-eslint/typescript-estree': 4.33.0(typescript@5.1.6)
- debug: 4.3.4(supports-color@9.2.2)
+ debug: 4.3.4(supports-color@8.1.1)
eslint: 8.32.0
typescript: 5.1.6
transitivePeerDependencies:
@@ -18822,7 +18817,7 @@ packages:
'@typescript-eslint/scope-manager': 5.54.0
'@typescript-eslint/types': 5.54.0
'@typescript-eslint/typescript-estree': 5.54.0(typescript@5.1.6)
- debug: 4.3.4(supports-color@9.2.2)
+ debug: 4.3.4(supports-color@8.1.1)
eslint: 8.32.0
typescript: 5.1.6
transitivePeerDependencies:
@@ -18855,7 +18850,7 @@ packages:
dependencies:
'@typescript-eslint/typescript-estree': 5.54.0(typescript@5.1.6)
'@typescript-eslint/utils': 5.54.0(eslint@8.32.0)(typescript@5.1.6)
- debug: 4.3.4(supports-color@9.2.2)
+ debug: 4.3.4(supports-color@8.1.1)
eslint: 8.32.0
tsutils: 3.21.0(typescript@5.1.6)
typescript: 5.1.6
@@ -18880,7 +18875,7 @@ packages:
typescript:
optional: true
dependencies:
- debug: 4.3.4(supports-color@9.2.2)
+ debug: 4.3.4(supports-color@8.1.1)
eslint-visitor-keys: 1.3.0
glob: 7.2.3
is-glob: 4.0.3
@@ -18903,7 +18898,7 @@ packages:
dependencies:
'@typescript-eslint/types': 4.33.0
'@typescript-eslint/visitor-keys': 4.33.0
- debug: 4.3.4(supports-color@9.2.2)
+ debug: 4.3.4(supports-color@8.1.1)
globby: 11.1.0
is-glob: 4.0.3
semver: 7.5.3
@@ -18924,7 +18919,7 @@ packages:
dependencies:
'@typescript-eslint/types': 5.54.0
'@typescript-eslint/visitor-keys': 5.54.0
- debug: 4.3.4(supports-color@9.2.2)
+ debug: 4.3.4(supports-color@8.1.1)
globby: 11.1.0
is-glob: 4.0.3
semver: 7.5.0
@@ -19912,59 +19907,6 @@ 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.0
- 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'}
@@ -20699,60 +20641,6 @@ 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.0
- 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'}
@@ -23744,7 +23632,7 @@ packages:
resolution: {integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==}
engines: {node: '>= 6.0.0'}
dependencies:
- debug: 4.3.4(supports-color@9.2.2)
+ debug: 4.3.4(supports-color@8.1.1)
transitivePeerDependencies:
- supports-color
@@ -23752,7 +23640,7 @@ packages:
resolution: {integrity: sha512-Zn4cw2NEqd+9fiSVWMscnjyQ1a8Yfoc5oBajLeo5w+YBHgDUcEBY2hS4YpTz6iN5f/2zQiktcuM6tS8x1p9dpA==}
engines: {node: '>= 8.0.0'}
dependencies:
- debug: 4.3.4(supports-color@9.2.2)
+ debug: 4.3.4(supports-color@8.1.1)
depd: 1.1.2
humanize-ms: 1.2.1
transitivePeerDependencies:
@@ -24756,7 +24644,7 @@ packages:
loader-utils: 2.0.4
make-dir: 3.1.0
schema-utils: 2.7.1
- webpack: 5.76.3(webpack-cli@4.9.2)
+ webpack: 5.76.3(webpack-cli@3.3.12)
dev: true
/babel-loader@8.3.0(@babel/core@7.17.8)(webpack@4.46.0):
@@ -25017,6 +24905,7 @@ packages:
semver: 6.3.1
transitivePeerDependencies:
- supports-color
+ dev: true
/babel-plugin-polyfill-corejs2@0.3.3(@babel/core@7.17.8):
resolution: {integrity: sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q==}
@@ -25029,7 +24918,6 @@ packages:
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- dev: true
/babel-plugin-polyfill-corejs2@0.3.3(@babel/core@7.21.3):
resolution: {integrity: sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q==}
@@ -25125,6 +25013,7 @@ packages:
core-js-compat: 3.25.5
transitivePeerDependencies:
- supports-color
+ dev: true
/babel-plugin-polyfill-corejs3@0.6.0(@babel/core@7.17.8):
resolution: {integrity: sha512-+eHqR6OPcBhJOGgsIar7xoAB1GcSwVUA3XjAd7HJNzOXT4wv6/H7KIdA/Nc60cvUlDbKApmqNvD1B1bzOt4nyA==}
@@ -25136,7 +25025,6 @@ packages:
core-js-compat: 3.25.5
transitivePeerDependencies:
- supports-color
- dev: true
/babel-plugin-polyfill-corejs3@0.6.0(@babel/core@7.21.3):
resolution: {integrity: sha512-+eHqR6OPcBhJOGgsIar7xoAB1GcSwVUA3XjAd7HJNzOXT4wv6/H7KIdA/Nc60cvUlDbKApmqNvD1B1bzOt4nyA==}
@@ -25191,6 +25079,7 @@ packages:
'@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.12.9)
transitivePeerDependencies:
- supports-color
+ dev: true
/babel-plugin-polyfill-regenerator@0.4.1(@babel/core@7.17.8):
resolution: {integrity: sha512-NtQGmyQDXjQqQ+IzRkBVwEOz9lQ4zxAQZgoAYEtU9dJjnl1Oc98qnN7jcp+bE7O7aYzVpavXE3/VKXNzUbh7aw==}
@@ -25201,7 +25090,6 @@ packages:
'@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.17.8)
transitivePeerDependencies:
- supports-color
- dev: true
/babel-plugin-polyfill-regenerator@0.4.1(@babel/core@7.21.3):
resolution: {integrity: sha512-NtQGmyQDXjQqQ+IzRkBVwEOz9lQ4zxAQZgoAYEtU9dJjnl1Oc98qnN7jcp+bE7O7aYzVpavXE3/VKXNzUbh7aw==}
@@ -25348,38 +25236,38 @@ packages:
'@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.21.3)
'@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.21.3)
- /babel-preset-fbjs@3.4.0(@babel/core@7.12.9):
+ /babel-preset-fbjs@3.4.0(@babel/core@7.17.8):
resolution: {integrity: sha512-9ywCsCvo1ojrw0b+XYk7aFvTH6D9064t0RIL1rtMf3nsa02Xw41MS7sZw216Im35xj/UY0PDBQsa1brUDDF1Ow==}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.12.9
- '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.12.9)
- '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.12.9)
- '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.12.9)
- '@babel/plugin-syntax-flow': 7.16.7(@babel/core@7.12.9)
- '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.12.9)
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.12.9)
- '@babel/plugin-transform-arrow-functions': 7.18.6(@babel/core@7.12.9)
- '@babel/plugin-transform-block-scoped-functions': 7.18.6(@babel/core@7.12.9)
- '@babel/plugin-transform-block-scoping': 7.21.0(@babel/core@7.12.9)
- '@babel/plugin-transform-classes': 7.21.0(@babel/core@7.12.9)
- '@babel/plugin-transform-computed-properties': 7.18.9(@babel/core@7.12.9)
- '@babel/plugin-transform-destructuring': 7.21.3(@babel/core@7.12.9)
- '@babel/plugin-transform-flow-strip-types': 7.16.7(@babel/core@7.12.9)
- '@babel/plugin-transform-for-of': 7.18.8(@babel/core@7.12.9)
- '@babel/plugin-transform-function-name': 7.18.9(@babel/core@7.12.9)
- '@babel/plugin-transform-literals': 7.18.9(@babel/core@7.12.9)
- '@babel/plugin-transform-member-expression-literals': 7.18.6(@babel/core@7.12.9)
- '@babel/plugin-transform-modules-commonjs': 7.22.15(@babel/core@7.12.9)
- '@babel/plugin-transform-object-super': 7.18.6(@babel/core@7.12.9)
- '@babel/plugin-transform-parameters': 7.21.3(@babel/core@7.12.9)
- '@babel/plugin-transform-property-literals': 7.18.6(@babel/core@7.12.9)
- '@babel/plugin-transform-react-display-name': 7.18.6(@babel/core@7.12.9)
- '@babel/plugin-transform-react-jsx': 7.22.3(@babel/core@7.12.9)
- '@babel/plugin-transform-shorthand-properties': 7.18.6(@babel/core@7.12.9)
- '@babel/plugin-transform-spread': 7.19.0(@babel/core@7.12.9)
- '@babel/plugin-transform-template-literals': 7.18.9(@babel/core@7.12.9)
+ '@babel/core': 7.17.8
+ '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.17.8)
+ '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.17.8)
+ '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.17.8)
+ '@babel/plugin-syntax-flow': 7.16.7(@babel/core@7.17.8)
+ '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.17.8)
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.17.8)
+ '@babel/plugin-transform-arrow-functions': 7.18.6(@babel/core@7.17.8)
+ '@babel/plugin-transform-block-scoped-functions': 7.18.6(@babel/core@7.17.8)
+ '@babel/plugin-transform-block-scoping': 7.21.0(@babel/core@7.17.8)
+ '@babel/plugin-transform-classes': 7.21.0(@babel/core@7.17.8)
+ '@babel/plugin-transform-computed-properties': 7.18.9(@babel/core@7.17.8)
+ '@babel/plugin-transform-destructuring': 7.21.3(@babel/core@7.17.8)
+ '@babel/plugin-transform-flow-strip-types': 7.16.7(@babel/core@7.17.8)
+ '@babel/plugin-transform-for-of': 7.18.8(@babel/core@7.17.8)
+ '@babel/plugin-transform-function-name': 7.18.9(@babel/core@7.17.8)
+ '@babel/plugin-transform-literals': 7.18.9(@babel/core@7.17.8)
+ '@babel/plugin-transform-member-expression-literals': 7.18.6(@babel/core@7.17.8)
+ '@babel/plugin-transform-modules-commonjs': 7.22.15(@babel/core@7.17.8)
+ '@babel/plugin-transform-object-super': 7.18.6(@babel/core@7.17.8)
+ '@babel/plugin-transform-parameters': 7.21.3(@babel/core@7.17.8)
+ '@babel/plugin-transform-property-literals': 7.18.6(@babel/core@7.17.8)
+ '@babel/plugin-transform-react-display-name': 7.18.6(@babel/core@7.17.8)
+ '@babel/plugin-transform-react-jsx': 7.22.3(@babel/core@7.17.8)
+ '@babel/plugin-transform-shorthand-properties': 7.18.6(@babel/core@7.17.8)
+ '@babel/plugin-transform-spread': 7.19.0(@babel/core@7.17.8)
+ '@babel/plugin-transform-template-literals': 7.18.9(@babel/core@7.17.8)
babel-plugin-syntax-trailing-function-commas: 7.0.0-beta.0
transitivePeerDependencies:
- supports-color
@@ -26326,7 +26214,7 @@ packages:
resolution: {integrity: sha512-FwZ/wxjqe+5RgzF2SRsPSWsVB9+McAVRWW0tRkmbh7fBjrf3HFZZbcr8vr61p1K+NBaAPv57DRjxgIyfbHmd7g==}
engines: {node: '>=7.6.0'}
dependencies:
- debug: 4.3.4(supports-color@9.2.2)
+ debug: 4.3.4(supports-color@8.1.1)
puppeteer-core: 1.12.2
transitivePeerDependencies:
- bufferutil
@@ -27363,7 +27251,7 @@ packages:
normalize-path: 3.0.0
schema-utils: 4.0.0
serialize-javascript: 6.0.0
- webpack: 5.76.3(webpack-cli@4.9.2)
+ webpack: 5.76.3(webpack-cli@3.3.12)
dev: true
/copy-webpack-plugin@9.1.0(webpack@5.70.0):
@@ -27401,6 +27289,7 @@ packages:
dependencies:
browserslist: 4.19.3
semver: 7.0.0
+ dev: true
/core-js-compat@3.21.1:
resolution: {integrity: sha512-gbgX5AUvMb8gwxC7FLVWYT7Kkgu/y7+h/h1X43yJkNqhlK2fuYyQimqvKGNZFAY6CKii/GFKJ2cp/1/42TN36g==}
@@ -27741,7 +27630,7 @@ packages:
postcss-value-parser: 4.2.0
schema-utils: 3.1.1
semver: 7.5.3
- webpack: 5.76.3(webpack-cli@4.9.2)
+ webpack: 5.76.3(webpack-cli@3.3.12)
dev: true
/css-loader@6.7.1(webpack@5.70.0):
@@ -27775,7 +27664,7 @@ packages:
postcss-modules-values: 4.0.0(postcss@8.4.21)
postcss-value-parser: 4.2.0
semver: 7.3.8
- webpack: 5.76.3(webpack-cli@4.9.2)
+ webpack: 5.76.3(webpack-cli@3.3.12)
dev: true
/css-select-base-adapter@0.1.1:
@@ -28269,6 +28158,7 @@ packages:
dependencies:
ms: 2.1.2
supports-color: 9.2.2
+ dev: true
/debuglog@1.0.1:
resolution: {integrity: sha512-syBZ+rnAK3EgMsH2aYEOLUW7mZSY9Gb+0wUMCFsZvcmiz+HigA0LOcq/HoQqVuGG+EKykunc7QG2bzrponfaSw==}
@@ -29378,7 +29268,7 @@ packages:
eslint: '*'
eslint-plugin-import: '*'
dependencies:
- debug: 4.3.4(supports-color@9.2.2)
+ debug: 4.3.4(supports-color@8.1.1)
eslint: 8.32.0
eslint-plugin-import: 2.25.4(@typescript-eslint/parser@5.54.0)(eslint-import-resolver-typescript@2.5.0)(eslint-import-resolver-webpack@0.13.2)(eslint@8.32.0)
glob: 7.2.3
@@ -29487,7 +29377,7 @@ packages:
is-glob: 4.0.3
minimatch: 3.1.2
object.values: 1.1.5
- resolve: 1.20.0
+ resolve: 1.22.1
tsconfig-paths: 3.14.0
transitivePeerDependencies:
- eslint-import-resolver-typescript
@@ -29548,7 +29438,7 @@ packages:
is-glob: 4.0.3
minimatch: 3.1.2
object.values: 1.1.5
- resolve: 1.20.0
+ resolve: 1.22.1
tsconfig-paths: 3.14.0
transitivePeerDependencies:
- eslint-import-resolver-typescript
@@ -29649,7 +29539,7 @@ packages:
eslint: ^5.0.0 || ^6.0.0
dependencies:
comment-parser: 0.7.6
- debug: 4.3.4(supports-color@9.2.2)
+ debug: 4.3.4(supports-color@8.1.1)
eslint: 8.32.0
jsdoctypeparser: 6.1.0
lodash: 4.17.21
@@ -29668,7 +29558,7 @@ packages:
eslint: ^6.0.0 || ^7.0.0
dependencies:
comment-parser: 0.7.6
- debug: 4.3.4(supports-color@9.2.2)
+ debug: 4.3.4(supports-color@8.1.1)
eslint: 7.32.0
jsdoctypeparser: 9.0.0
lodash: 4.17.21
@@ -29687,7 +29577,7 @@ packages:
dependencies:
'@es-joy/jsdoccomment': 0.10.8
comment-parser: 1.2.4
- debug: 4.3.4(supports-color@9.2.2)
+ debug: 4.3.4(supports-color@8.1.1)
eslint: 7.32.0
esquery: 1.4.0
jsdoc-type-pratt-parser: 1.2.0
@@ -29707,7 +29597,7 @@ packages:
dependencies:
'@es-joy/jsdoccomment': 0.36.1
comment-parser: 1.3.1
- debug: 4.3.4(supports-color@9.2.2)
+ debug: 4.3.4(supports-color@8.1.1)
escape-string-regexp: 4.0.0
eslint: 8.32.0
esquery: 1.4.0
@@ -29873,7 +29763,7 @@ packages:
object.values: 1.1.5
prop-types: 15.8.1
resolve: 2.0.0-next.3
- semver: 6.3.1
+ semver: 6.3.0
string.prototype.matchall: 4.0.6
dev: true
@@ -30009,7 +29899,7 @@ packages:
ajv: 6.12.6
chalk: 2.4.2
cross-spawn: 6.0.5
- debug: 4.3.4(supports-color@9.2.2)
+ debug: 4.3.4(supports-color@8.1.1)
doctrine: 3.0.0
eslint-scope: 4.0.3
eslint-utils: 1.4.3
@@ -30054,7 +29944,7 @@ packages:
ajv: 6.12.6
chalk: 2.4.2
cross-spawn: 6.0.5
- debug: 4.3.4(supports-color@9.2.2)
+ debug: 4.3.4(supports-color@8.1.1)
doctrine: 3.0.0
eslint-scope: 5.1.1
eslint-utils: 1.4.3
@@ -30102,7 +29992,7 @@ packages:
ajv: 6.12.6
chalk: 4.1.2
cross-spawn: 7.0.3
- debug: 4.3.4(supports-color@9.2.2)
+ debug: 4.3.4(supports-color@8.1.1)
doctrine: 3.0.0
enquirer: 2.3.6
escape-string-regexp: 4.0.0
@@ -30152,7 +30042,7 @@ packages:
ajv: 6.12.6
chalk: 4.1.2
cross-spawn: 7.0.3
- debug: 4.3.4(supports-color@9.2.2)
+ debug: 4.3.4(supports-color@8.1.1)
doctrine: 3.0.0
escape-string-regexp: 4.0.0
eslint-scope: 7.1.1
@@ -30597,7 +30487,7 @@ packages:
engines: {node: '>= 10.17.0'}
hasBin: true
dependencies:
- debug: 4.3.4(supports-color@9.2.2)
+ debug: 4.3.4(supports-color@8.1.1)
get-stream: 5.2.0
yauzl: 2.10.0
optionalDependencies:
@@ -30946,7 +30836,7 @@ packages:
dependencies:
chalk: 4.1.2
commander: 5.1.0
- debug: 4.3.4(supports-color@9.2.2)
+ debug: 4.3.4(supports-color@8.1.1)
transitivePeerDependencies:
- supports-color
@@ -31267,7 +31157,7 @@ packages:
semver: 7.5.3
tapable: 1.1.3
typescript: 5.1.6
- webpack: 5.76.3(webpack-cli@4.9.2)
+ webpack: 5.76.3(webpack-cli@3.3.12)
dev: true
/fork-ts-checker-webpack-plugin@8.0.0(typescript@5.1.6)(webpack@5.70.0):
@@ -32818,7 +32708,7 @@ packages:
lodash: 4.17.21
pretty-error: 4.0.0
tapable: 2.2.1
- webpack: 5.76.3(webpack-cli@4.9.2)
+ webpack: 5.76.3(webpack-cli@3.3.12)
transitivePeerDependencies:
- acorn
dev: true
@@ -32850,7 +32740,7 @@ packages:
engines: {node: '>=8.0.0'}
dependencies:
content-type: 1.0.4
- debug: 4.3.4(supports-color@9.2.2)
+ debug: 4.3.4(supports-color@8.1.1)
is-retry-allowed: 1.2.0
is-stream: 2.0.1
parse-json: 4.0.0
@@ -32889,7 +32779,7 @@ packages:
dependencies:
'@tootallnate/once': 1.1.2
agent-base: 6.0.2
- debug: 4.3.4(supports-color@9.2.2)
+ debug: 4.3.4(supports-color@8.1.1)
transitivePeerDependencies:
- supports-color
@@ -32899,7 +32789,7 @@ packages:
dependencies:
'@tootallnate/once': 2.0.0
agent-base: 6.0.2
- debug: 4.3.4(supports-color@9.2.2)
+ debug: 4.3.4(supports-color@8.1.1)
transitivePeerDependencies:
- supports-color
dev: true
@@ -32970,7 +32860,7 @@ packages:
engines: {node: '>= 6.0.0'}
dependencies:
agent-base: 5.1.1
- debug: 4.3.4(supports-color@9.2.2)
+ debug: 4.3.4(supports-color@8.1.1)
transitivePeerDependencies:
- supports-color
@@ -32979,7 +32869,7 @@ packages:
engines: {node: '>= 6'}
dependencies:
agent-base: 6.0.2
- debug: 4.3.4(supports-color@9.2.2)
+ debug: 4.3.4(supports-color@8.1.1)
transitivePeerDependencies:
- supports-color
dev: true
@@ -32989,7 +32879,7 @@ packages:
engines: {node: '>= 6'}
dependencies:
agent-base: 6.0.2
- debug: 4.3.4(supports-color@9.2.2)
+ debug: 4.3.4(supports-color@8.1.1)
transitivePeerDependencies:
- supports-color
@@ -33022,7 +32912,7 @@ packages:
dependencies:
'@tannin/sprintf': 1.2.0
'@wordpress/compose': 3.25.3(react@17.0.2)
- debug: 4.3.4(supports-color@9.2.2)
+ debug: 4.3.4(supports-color@8.1.1)
events: 3.3.0
hash.js: 1.1.7
interpolate-components: 1.1.1
@@ -33043,7 +32933,7 @@ packages:
'@babel/runtime': 7.21.0
'@tannin/sprintf': 1.2.0
'@wordpress/compose': 3.25.3(react@17.0.2)
- debug: 4.3.4(supports-color@9.2.2)
+ debug: 4.3.4(supports-color@8.1.1)
events: 3.3.0
hash.js: 1.1.7
interpolate-components: 1.1.1
@@ -33065,7 +32955,7 @@ packages:
'@babel/runtime': 7.21.0
'@tannin/sprintf': 1.2.0
'@wordpress/compose': 5.4.1(react@17.0.2)
- debug: 4.3.4(supports-color@9.2.2)
+ debug: 4.3.4(supports-color@8.1.1)
events: 3.3.0
hash.js: 1.1.7
lodash: 4.17.21
@@ -34133,7 +34023,7 @@ packages:
resolution: {integrity: sha512-R47KzMtDJH6X4/YW9XTx+jrLnZnscW4VpNN+1PViSYTejLVPWv7oov+Duf8YQSPyVRUvueQqz1TcsC6mooZTXw==}
engines: {node: '>=6'}
dependencies:
- debug: 4.3.4(supports-color@9.2.2)
+ debug: 4.3.4(supports-color@8.1.1)
istanbul-lib-coverage: 2.0.5
make-dir: 2.1.0
rimraf: 2.7.1
@@ -34146,7 +34036,7 @@ packages:
resolution: {integrity: sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==}
engines: {node: '>=10'}
dependencies:
- debug: 4.3.4(supports-color@9.2.2)
+ debug: 4.3.4(supports-color@8.1.1)
istanbul-lib-coverage: 3.2.0
source-map: 0.6.1
transitivePeerDependencies:
@@ -36883,35 +36773,6 @@ packages:
/jsc-android@250230.2.1:
resolution: {integrity: sha512-KmxeBlRjwoqCnBBKGsihFtvsBHyUFlBxJPK4FzeYcIuBfdjv6jFys44JITAgSTbQD+vIdwMEfyZklsuQX0yI1Q==}
- /jscodeshift@0.13.1(@babel/preset-env@7.12.7):
- resolution: {integrity: sha512-lGyiEbGOvmMRKgWk4vf+lUrCWO/8YR8sUR3FKF1Cq5fovjZDlIcw3Hu5ppLHAnEXshVffvaM0eyuY/AbOeYpnQ==}
- hasBin: true
- peerDependencies:
- '@babel/preset-env': ^7.1.6
- dependencies:
- '@babel/core': 7.21.3
- '@babel/parser': 7.17.8
- '@babel/plugin-proposal-class-properties': 7.16.7(@babel/core@7.21.3)
- '@babel/plugin-proposal-nullish-coalescing-operator': 7.16.7(@babel/core@7.21.3)
- '@babel/plugin-proposal-optional-chaining': 7.16.7(@babel/core@7.21.3)
- '@babel/plugin-transform-modules-commonjs': 7.17.7(@babel/core@7.21.3)
- '@babel/preset-env': 7.12.7(@babel/core@7.12.9)
- '@babel/preset-flow': 7.16.7(@babel/core@7.21.3)
- '@babel/preset-typescript': 7.16.7(@babel/core@7.21.3)
- '@babel/register': 7.18.9(@babel/core@7.21.3)
- babel-core: 7.0.0-bridge.0(@babel/core@7.21.3)
- chalk: 4.1.2
- flow-parser: 0.121.0
- graceful-fs: 4.2.9
- micromatch: 3.1.10(supports-color@6.1.0)
- neo-async: 2.6.2
- node-dir: 0.1.17
- recast: 0.20.5
- temp: 0.8.4
- write-file-atomic: 2.4.1
- transitivePeerDependencies:
- - supports-color
-
/jscodeshift@0.13.1(@babel/preset-env@7.20.2):
resolution: {integrity: sha512-lGyiEbGOvmMRKgWk4vf+lUrCWO/8YR8sUR3FKF1Cq5fovjZDlIcw3Hu5ppLHAnEXshVffvaM0eyuY/AbOeYpnQ==}
hasBin: true
@@ -36940,7 +36801,6 @@ packages:
write-file-atomic: 2.4.1
transitivePeerDependencies:
- supports-color
- dev: true
/jsdoc-type-pratt-parser@1.1.1:
resolution: {integrity: sha512-uelRmpghNwPBuZScwgBG/OzodaFk5RbO5xaivBdsAY70icWfShwZ7PCMO0x1zSkOa8T1FzHThmrdoyg/0AwV5g==}
@@ -38533,48 +38393,48 @@ packages:
dependencies:
uglify-es: 3.3.9
- /metro-react-native-babel-preset@0.72.1(@babel/core@7.12.9):
+ /metro-react-native-babel-preset@0.72.1(@babel/core@7.17.8):
resolution: {integrity: sha512-DlvMw2tFrCqD9OXBoN11fPM09kHC22FZpnkTmG4Pr4kecV+aDmEGxwakjUcjELrX1JCXz2MLPvqeJkbiP1f5CA==}
peerDependencies:
'@babel/core': '*'
dependencies:
- '@babel/core': 7.12.9
- '@babel/plugin-proposal-async-generator-functions': 7.20.7(@babel/core@7.12.9)
- '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.12.9)
- '@babel/plugin-proposal-export-default-from': 7.16.7(@babel/core@7.12.9)
- '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.12.9)
- '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.12.9)
- '@babel/plugin-proposal-optional-catch-binding': 7.18.6(@babel/core@7.12.9)
- '@babel/plugin-proposal-optional-chaining': 7.18.9(@babel/core@7.12.9)
- '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.12.9)
- '@babel/plugin-syntax-export-default-from': 7.16.7(@babel/core@7.12.9)
- '@babel/plugin-syntax-flow': 7.16.7(@babel/core@7.12.9)
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.12.9)
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.12.9)
- '@babel/plugin-transform-arrow-functions': 7.18.6(@babel/core@7.12.9)
- '@babel/plugin-transform-async-to-generator': 7.18.6(@babel/core@7.12.9)
- '@babel/plugin-transform-block-scoping': 7.21.0(@babel/core@7.12.9)
- '@babel/plugin-transform-classes': 7.21.0(@babel/core@7.12.9)
- '@babel/plugin-transform-computed-properties': 7.18.9(@babel/core@7.12.9)
- '@babel/plugin-transform-destructuring': 7.21.3(@babel/core@7.12.9)
- '@babel/plugin-transform-exponentiation-operator': 7.18.6(@babel/core@7.12.9)
- '@babel/plugin-transform-flow-strip-types': 7.16.7(@babel/core@7.12.9)
- '@babel/plugin-transform-function-name': 7.18.9(@babel/core@7.12.9)
- '@babel/plugin-transform-literals': 7.18.9(@babel/core@7.12.9)
- '@babel/plugin-transform-modules-commonjs': 7.22.15(@babel/core@7.12.9)
- '@babel/plugin-transform-named-capturing-groups-regex': 7.19.1(@babel/core@7.12.9)
- '@babel/plugin-transform-parameters': 7.21.3(@babel/core@7.12.9)
- '@babel/plugin-transform-react-display-name': 7.18.6(@babel/core@7.12.9)
- '@babel/plugin-transform-react-jsx': 7.22.3(@babel/core@7.12.9)
- '@babel/plugin-transform-react-jsx-self': 7.18.6(@babel/core@7.12.9)
- '@babel/plugin-transform-react-jsx-source': 7.18.6(@babel/core@7.12.9)
- '@babel/plugin-transform-runtime': 7.19.1(@babel/core@7.12.9)
- '@babel/plugin-transform-shorthand-properties': 7.18.6(@babel/core@7.12.9)
- '@babel/plugin-transform-spread': 7.19.0(@babel/core@7.12.9)
- '@babel/plugin-transform-sticky-regex': 7.18.6(@babel/core@7.12.9)
- '@babel/plugin-transform-template-literals': 7.18.9(@babel/core@7.12.9)
- '@babel/plugin-transform-typescript': 7.22.15(@babel/core@7.12.9)
- '@babel/plugin-transform-unicode-regex': 7.18.6(@babel/core@7.12.9)
+ '@babel/core': 7.17.8
+ '@babel/plugin-proposal-async-generator-functions': 7.20.7(@babel/core@7.17.8)
+ '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.17.8)
+ '@babel/plugin-proposal-export-default-from': 7.16.7(@babel/core@7.17.8)
+ '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.17.8)
+ '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.17.8)
+ '@babel/plugin-proposal-optional-catch-binding': 7.18.6(@babel/core@7.17.8)
+ '@babel/plugin-proposal-optional-chaining': 7.18.9(@babel/core@7.17.8)
+ '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.17.8)
+ '@babel/plugin-syntax-export-default-from': 7.16.7(@babel/core@7.17.8)
+ '@babel/plugin-syntax-flow': 7.16.7(@babel/core@7.17.8)
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.17.8)
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.17.8)
+ '@babel/plugin-transform-arrow-functions': 7.18.6(@babel/core@7.17.8)
+ '@babel/plugin-transform-async-to-generator': 7.18.6(@babel/core@7.17.8)
+ '@babel/plugin-transform-block-scoping': 7.21.0(@babel/core@7.17.8)
+ '@babel/plugin-transform-classes': 7.21.0(@babel/core@7.17.8)
+ '@babel/plugin-transform-computed-properties': 7.18.9(@babel/core@7.17.8)
+ '@babel/plugin-transform-destructuring': 7.21.3(@babel/core@7.17.8)
+ '@babel/plugin-transform-exponentiation-operator': 7.18.6(@babel/core@7.17.8)
+ '@babel/plugin-transform-flow-strip-types': 7.16.7(@babel/core@7.17.8)
+ '@babel/plugin-transform-function-name': 7.18.9(@babel/core@7.17.8)
+ '@babel/plugin-transform-literals': 7.18.9(@babel/core@7.17.8)
+ '@babel/plugin-transform-modules-commonjs': 7.22.15(@babel/core@7.17.8)
+ '@babel/plugin-transform-named-capturing-groups-regex': 7.19.1(@babel/core@7.17.8)
+ '@babel/plugin-transform-parameters': 7.21.3(@babel/core@7.17.8)
+ '@babel/plugin-transform-react-display-name': 7.18.6(@babel/core@7.17.8)
+ '@babel/plugin-transform-react-jsx': 7.22.3(@babel/core@7.17.8)
+ '@babel/plugin-transform-react-jsx-self': 7.18.6(@babel/core@7.17.8)
+ '@babel/plugin-transform-react-jsx-source': 7.18.6(@babel/core@7.17.8)
+ '@babel/plugin-transform-runtime': 7.19.1(@babel/core@7.17.8)
+ '@babel/plugin-transform-shorthand-properties': 7.18.6(@babel/core@7.17.8)
+ '@babel/plugin-transform-spread': 7.19.0(@babel/core@7.17.8)
+ '@babel/plugin-transform-sticky-regex': 7.18.6(@babel/core@7.17.8)
+ '@babel/plugin-transform-template-literals': 7.18.9(@babel/core@7.17.8)
+ '@babel/plugin-transform-typescript': 7.22.15(@babel/core@7.17.8)
+ '@babel/plugin-transform-unicode-regex': 7.18.6(@babel/core@7.17.8)
'@babel/template': 7.22.15
react-refresh: 0.4.3
transitivePeerDependencies:
@@ -38627,16 +38487,16 @@ packages:
transitivePeerDependencies:
- supports-color
- /metro-react-native-babel-transformer@0.72.1(@babel/core@7.12.9):
+ /metro-react-native-babel-transformer@0.72.1(@babel/core@7.17.8):
resolution: {integrity: sha512-hMnN0MOgVloAk94YuXN7sLeDaZ51Y6xIcJXxIU1s/KaygAGXk6o7VAdwf2MY/IV1SIct5lkW4Gn71u/9/EvfXA==}
peerDependencies:
'@babel/core': '*'
dependencies:
- '@babel/core': 7.12.9
- babel-preset-fbjs: 3.4.0(@babel/core@7.12.9)
+ '@babel/core': 7.17.8
+ babel-preset-fbjs: 3.4.0(@babel/core@7.17.8)
hermes-parser: 0.8.0
metro-babel-transformer: 0.72.1
- metro-react-native-babel-preset: 0.72.1(@babel/core@7.12.9)
+ metro-react-native-babel-preset: 0.72.1(@babel/core@7.17.8)
metro-source-map: 0.72.1
nullthrows: 1.1.1
transitivePeerDependencies:
@@ -38815,7 +38675,7 @@ packages:
/micromark@2.11.4:
resolution: {integrity: sha512-+WoovN/ppKolQOFIAajxi7Lu9kInbPxFuTBVEavFcL8eAfVstoc5MocPmqBeAdBOJV00uaVjegzH4+MA0DN/uA==}
dependencies:
- debug: 4.3.4(supports-color@9.2.2)
+ debug: 4.3.4(supports-color@8.1.1)
parse-entities: 2.0.0
transitivePeerDependencies:
- supports-color
@@ -39348,7 +39208,7 @@ packages:
dependencies:
carlo: 0.9.46
chokidar: 3.5.2
- debug: 4.3.4(supports-color@9.2.2)
+ debug: 4.3.4(supports-color@8.1.1)
isbinaryfile: 3.0.3
mime: 2.5.2
opn: 5.5.0
@@ -39701,7 +39561,7 @@ packages:
ajv-errors: 1.0.1(ajv@6.12.6)
chalk: 4.1.2
cosmiconfig: 7.0.1
- debug: 4.3.4(supports-color@9.2.2)
+ debug: 4.3.4(supports-color@8.1.1)
globby: 11.1.0
ignore: 5.2.0
is-plain-obj: 3.0.0
@@ -39981,7 +39841,7 @@ packages:
'@oclif/plugin-warn-if-update-available': 2.0.4
aws-sdk: 2.1215.0
concurrently: 7.0.0
- debug: 4.3.4(supports-color@9.2.2)
+ debug: 4.3.4(supports-color@8.1.1)
find-yarn-workspace-root: 2.0.0
fs-extra: 8.1.0
github-slugger: 1.4.0
@@ -40311,7 +40171,7 @@ packages:
resolution: {integrity: sha512-UJKdSzgd3KOnXXAtqN5+/eeHcvTn1hBkesEmElVgvO/NAYcxAvmjzIGmnNd3Tb/gRAvMBdNRFD4qAWdHxY6QXg==}
engines: {node: '>=12.10.0'}
dependencies:
- debug: 4.3.4(supports-color@9.2.2)
+ debug: 4.3.4(supports-color@8.1.1)
p-queue: 6.6.2
transitivePeerDependencies:
- supports-color
@@ -40689,7 +40549,7 @@ packages:
dependencies:
'@babel/runtime': 7.21.0
crc32: 0.2.2
- debug: 4.3.4(supports-color@9.2.2)
+ debug: 4.3.4(supports-color@8.1.1)
seed-random: 2.2.0
transitivePeerDependencies:
- supports-color
@@ -41086,7 +40946,7 @@ packages:
postcss: 8.4.21
schema-utils: 3.1.1
semver: 7.5.3
- webpack: 5.76.3(webpack-cli@4.9.2)
+ webpack: 5.76.3(webpack-cli@3.3.12)
dev: true
/postcss-loader@6.2.1(postcss@8.4.21)(webpack@5.76.3):
@@ -42081,7 +41941,7 @@ packages:
engines: {node: '>=6.4.0'}
requiresBuild: true
dependencies:
- debug: 4.3.4(supports-color@9.2.2)
+ debug: 4.3.4(supports-color@8.1.1)
extract-zip: 1.7.0
https-proxy-agent: 2.2.4
mime: 2.6.0
@@ -42122,7 +41982,7 @@ packages:
engines: {node: '>=10.18.1'}
dependencies:
cross-fetch: 3.1.5
- debug: 4.3.4(supports-color@9.2.2)
+ debug: 4.3.4(supports-color@8.1.1)
devtools-protocol: 0.0.981744
extract-zip: 2.0.1
https-proxy-agent: 5.0.1
@@ -42151,7 +42011,7 @@ packages:
dependencies:
chromium-bidi: 0.4.4(devtools-protocol@0.0.1094867)
cross-fetch: 3.1.5
- debug: 4.3.4(supports-color@9.2.2)
+ debug: 4.3.4(supports-color@8.1.1)
devtools-protocol: 0.0.1094867
extract-zip: 2.0.1
https-proxy-agent: 5.0.1
@@ -42172,7 +42032,7 @@ packages:
engines: {node: '>=10.18.1'}
dependencies:
'@types/mime-types': 2.1.1
- debug: 4.3.4(supports-color@9.2.2)
+ debug: 4.3.4(supports-color@8.1.1)
extract-zip: 2.0.1
https-proxy-agent: 4.0.0
mime: 2.6.0
@@ -42196,7 +42056,7 @@ packages:
requiresBuild: true
dependencies:
'@types/mime-types': 2.1.1
- debug: 4.3.4(supports-color@9.2.2)
+ debug: 4.3.4(supports-color@8.1.1)
extract-zip: 1.7.0
https-proxy-agent: 4.0.0
mime: 2.6.0
@@ -42222,7 +42082,7 @@ packages:
engines: {node: '>=8.0.0'}
dependencies:
chalk: 2.4.2
- debug: 4.3.4(supports-color@9.2.2)
+ debug: 4.3.4(supports-color@8.1.1)
execa: 0.10.0
fs-extra: 6.0.1
get-stream: 5.2.0
@@ -42767,12 +42627,12 @@ packages:
moment: 2.29.4
dev: false
- /react-native-codegen@0.70.4(@babel/preset-env@7.12.7):
+ /react-native-codegen@0.70.4(@babel/preset-env@7.20.2):
resolution: {integrity: sha512-bPyd5jm840omfx24VRyMP+KPzAefpRDwE18w5ywMWHCWZBSqLn1qI9WgBPnavlIrjTEuzxznWQNcaA26lw8AMQ==}
dependencies:
'@babel/parser': 7.22.15
flow-parser: 0.121.0
- jscodeshift: 0.13.1(@babel/preset-env@7.12.7)
+ jscodeshift: 0.13.1(@babel/preset-env@7.20.2)
nullthrows: 1.1.1
transitivePeerDependencies:
- '@babel/preset-env'
@@ -42786,10 +42646,10 @@ packages:
peerDependencies:
react-native: '*'
dependencies:
- react-native: 0.70.0(@babel/core@7.12.9)(@babel/preset-env@7.12.7)(react@18.1.0)
+ react-native: 0.70.0(@babel/core@7.17.8)(@babel/preset-env@7.20.2)(react@17.0.2)
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@18.1.0):
+ /react-native@0.70.0(@babel/core@7.17.8)(@babel/preset-env@7.20.2)(react@17.0.2):
resolution: {integrity: sha512-QjXLbrK9f+/B2eCzn6kAvglLV/8nwPuFGaFv7ggPpAzFRyx5bVN1dwQLHL3MrP7iXR/M7Jc6Nnid7tmRSic6vA==}
engines: {node: '>=14'}
hasBin: true
@@ -42797,7 +42657,7 @@ packages:
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)
+ '@react-native-community/cli': 9.1.1(@babel/core@7.17.8)
'@react-native-community/cli-platform-android': 9.1.0
'@react-native-community/cli-platform-ios': 9.1.0
'@react-native/assets': 1.0.0
@@ -42810,23 +42670,23 @@ packages:
invariant: 2.2.4
jsc-android: 250230.2.1
memoize-one: 5.2.1
- metro-react-native-babel-transformer: 0.72.1(@babel/core@7.12.9)
+ metro-react-native-babel-transformer: 0.72.1(@babel/core@7.17.8)
metro-runtime: 0.72.1
metro-source-map: 0.72.1
mkdirp: 0.5.5
nullthrows: 1.1.1
pretty-format: 26.6.2
promise: 8.2.0
- react: 18.1.0
+ react: 17.0.2
react-devtools-core: 4.24.0
- react-native-codegen: 0.70.4(@babel/preset-env@7.12.7)
+ react-native-codegen: 0.70.4(@babel/preset-env@7.20.2)
react-native-gradle-plugin: 0.70.2
react-refresh: 0.4.3
- react-shallow-renderer: 16.15.0(react@18.1.0)
+ react-shallow-renderer: 16.15.0(react@17.0.2)
regenerator-runtime: 0.13.11
scheduler: 0.22.0
stacktrace-parser: 0.1.10
- use-sync-external-store: 1.2.0(react@18.1.0)
+ use-sync-external-store: 1.2.0(react@17.0.2)
whatwg-fetch: 3.6.2
ws: 6.2.2
transitivePeerDependencies:
@@ -43080,13 +42940,13 @@ packages:
react: 17.0.2
react-is: 17.0.2
- /react-shallow-renderer@16.15.0(react@18.1.0):
+ /react-shallow-renderer@16.15.0(react@17.0.2):
resolution: {integrity: sha512-oScf2FqQ9LFVQgA73vr86xl2NaOIX73rh+YFqcOp68CWj56tSfgtGKrEbyhCj0rSijyG9M1CYprTh39fBi5hzA==}
peerDependencies:
react: ^16.0.0 || ^17.0.0 || ^18.0.0
dependencies:
object-assign: 4.1.1
- react: 18.1.0
+ react: 17.0.2
react-is: 18.2.0
/react-sizeme@3.0.2:
@@ -43292,12 +43152,6 @@ 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}
@@ -43633,6 +43487,7 @@ packages:
resolution: {integrity: sha512-eOf6vka5IO151Jfsw2NO9WpGX58W6wWmefK3I1zEGr0lOD0u8rwPaNqQL1aRxUaxLeKO3ArNh3VYg1KbaD+FFw==}
dependencies:
'@babel/runtime': 7.21.0
+ dev: true
/regenerator-transform@0.15.0:
resolution: {integrity: sha512-LsrGtPmbYg19bcPHwdtmXwbW+TqNvtY4riE3P83foeHRroMbH6/2ddFBfab3t7kbzc7v7p4wbkIecHImqt0QNg==}
@@ -44373,7 +44228,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):
@@ -44587,6 +44442,7 @@ packages:
/semver@7.0.0:
resolution: {integrity: sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==}
hasBin: true
+ dev: true
/semver@7.3.5:
resolution: {integrity: sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==}
@@ -44839,7 +44695,7 @@ packages:
dependencies:
'@kwsites/file-exists': 1.1.1
'@kwsites/promise-deferred': 1.1.1
- debug: 4.3.4(supports-color@9.2.2)
+ debug: 4.3.4(supports-color@8.1.1)
transitivePeerDependencies:
- supports-color
@@ -44850,7 +44706,7 @@ packages:
resolution: {integrity: sha512-D1SaWpOW8afq1CZGWB8xTfrT3FekjQmPValrqncJMX7QFl8YwhrPTZvMCANLtgBwwdS+7zURyqxDDEmY558tTw==}
dependencies:
buffer: 6.0.3
- debug: 4.3.4(supports-color@9.2.2)
+ debug: 4.3.4(supports-color@8.1.1)
err-code: 3.0.1
get-browser-rtc: 1.1.0
queue-microtask: 1.2.3
@@ -45024,7 +44880,7 @@ packages:
engines: {node: '>= 10'}
dependencies:
agent-base: 6.0.2
- debug: 4.3.4(supports-color@9.2.2)
+ debug: 4.3.4(supports-color@8.1.1)
socks: 2.7.0
transitivePeerDependencies:
- supports-color
@@ -45035,7 +44891,7 @@ packages:
engines: {node: '>= 10'}
dependencies:
agent-base: 6.0.2
- debug: 4.3.4(supports-color@9.2.2)
+ debug: 4.3.4(supports-color@8.1.1)
socks: 2.7.0
transitivePeerDependencies:
- supports-color
@@ -45207,7 +45063,7 @@ packages:
/spdy-transport@3.0.0:
resolution: {integrity: sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==}
dependencies:
- debug: 4.3.4(supports-color@9.2.2)
+ debug: 4.3.4(supports-color@8.1.1)
detect-node: 2.1.0
hpack.js: 2.1.6
obuf: 1.1.2
@@ -45220,7 +45076,7 @@ packages:
resolution: {integrity: sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==}
engines: {node: '>=6.0.0'}
dependencies:
- debug: 4.3.4(supports-color@9.2.2)
+ debug: 4.3.4(supports-color@8.1.1)
handle-thing: 2.0.1
http-deceiver: 1.2.7
select-hose: 2.0.0
@@ -45651,7 +45507,7 @@ packages:
dependencies:
loader-utils: 2.0.4
schema-utils: 3.1.1
- webpack: 5.76.3(webpack-cli@4.9.2)
+ webpack: 5.76.3(webpack-cli@3.3.12)
dev: true
/style-search@0.1.0:
@@ -45842,7 +45698,7 @@ packages:
balanced-match: 2.0.0
chalk: 4.1.2
cosmiconfig: 7.0.1
- debug: 4.3.4(supports-color@9.2.2)
+ debug: 4.3.4(supports-color@8.1.1)
execall: 2.0.0
fast-glob: 3.2.7
fastest-levenshtein: 1.0.12
@@ -45901,7 +45757,7 @@ packages:
balanced-match: 1.0.2
chalk: 4.1.2
cosmiconfig: 7.0.1
- debug: 4.3.4(supports-color@9.2.2)
+ debug: 4.3.4(supports-color@8.1.1)
execall: 2.0.0
fast-glob: 3.2.11
fastest-levenshtein: 1.0.12
@@ -45958,7 +45814,7 @@ packages:
colord: 2.9.2
cosmiconfig: 7.0.1
css-functions-list: 3.0.1
- debug: 4.3.4(supports-color@9.2.2)
+ debug: 4.3.4(supports-color@8.1.1)
execall: 2.0.0
fast-glob: 3.2.11
fastest-levenshtein: 1.0.12
@@ -46021,7 +45877,7 @@ packages:
dependencies:
component-emitter: 1.3.0
cookiejar: 2.1.3
- debug: 4.3.4(supports-color@9.2.2)
+ debug: 4.3.4(supports-color@8.1.1)
fast-safe-stringify: 2.1.1
form-data: 4.0.0
formidable: 2.0.1
@@ -46088,6 +45944,7 @@ packages:
/supports-color@9.2.2:
resolution: {integrity: sha512-XC6g/Kgux+rJXmwokjm9ECpD6k/smUoS5LKlUCcsYr4IY3rW0XyAympon2RmxGrlnZURMpg5T18gWDP9CsHXFA==}
engines: {node: '>=12'}
+ dev: true
/supports-hyperlinks@2.2.0:
resolution: {integrity: sha512-6sXEzV5+I5j8Bmq9/vUphGRM/RJNT9SCURJLjwfOg51heRtguGWDzcaBlgAzKhQa0EVNpPEKzQuBwZ8S8WaCeQ==}
@@ -46485,7 +46342,7 @@ packages:
serialize-javascript: 6.0.0
source-map: 0.6.1
terser: 5.10.0(acorn@8.8.1)
- webpack: 5.76.3(webpack-cli@4.9.2)
+ webpack: 5.76.3(webpack-cli@3.3.12)
transitivePeerDependencies:
- acorn
dev: true
@@ -47699,7 +47556,7 @@ packages:
loader-utils: 1.4.0
mime: 2.6.0
schema-utils: 1.0.0
- webpack: 5.76.3(webpack-cli@4.9.2)
+ webpack: 5.76.3(webpack-cli@3.3.12)
dev: true
/url-loader@3.0.0(webpack@4.46.0):
@@ -47881,14 +47738,6 @@ packages:
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==}
@@ -48255,7 +48104,7 @@ packages:
dependencies:
chalk: 2.4.2
commander: 3.0.2
- debug: 4.3.4(supports-color@9.2.2)
+ debug: 4.3.4(supports-color@8.1.1)
transitivePeerDependencies:
- supports-color
@@ -48546,7 +48395,7 @@ packages:
mime-types: 2.1.35
range-parser: 1.2.1
schema-utils: 3.1.1
- webpack: 5.76.3(webpack-cli@4.9.2)
+ webpack: 5.76.3(webpack-cli@3.3.12)
dev: true
/webpack-dev-middleware@5.3.3(webpack@5.70.0):
@@ -49256,7 +49105,7 @@ packages:
resolution: {integrity: sha512-NMp0YsBM40CuI5vWtHpjWOuf96rPfbpGkamlJpVwYvgenIh1ynRzqVnGfsnjofgz13T2qcKkdwJY0Y2X7z+W+w==}
dependencies:
'@babel/runtime': 7.21.0
- debug: 4.3.4(supports-color@9.2.2)
+ debug: 4.3.4(supports-color@8.1.1)
progress-event: 1.0.0
uuid: 7.0.3
wp-error: 1.3.0
@@ -49768,7 +49617,7 @@ packages:
cli-table: 0.3.11
commander: 7.1.0
dateformat: 4.6.3
- debug: 4.3.4(supports-color@9.2.2)
+ debug: 4.3.4(supports-color@8.1.1)
diff: 5.1.0
error: 10.4.0
escape-string-regexp: 4.0.0
@@ -49812,7 +49661,7 @@ packages:
dependencies:
chalk: 4.1.2
dargs: 7.0.0
- debug: 4.3.4(supports-color@9.2.2)
+ debug: 4.3.4(supports-color@8.1.1)
execa: 5.1.1
github-username: 6.0.0
lodash: 4.17.21
From 40a410ae1fb489403a5c81b07d3814ed6e9086b5 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Maikel=20David=20P=C3=A9rez=20G=C3=B3mez?=
Date: Wed, 18 Oct 2023 13:04:14 -0400
Subject: [PATCH 33/37] Product Shipping: New class should automatically create
a slug (#40847)
* Remove empty values from the shipping class request so slug can be generated server side
* Add changelog file
---
packages/js/product-editor/changelog/fix-40844 | 4 ++++
.../product-fields/shipping-class/edit.tsx | 2 +-
.../add-new-shipping-class-modal.tsx | 17 ++++++++++++++++-
3 files changed, 21 insertions(+), 2 deletions(-)
create mode 100644 packages/js/product-editor/changelog/fix-40844
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/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 >;
From 51dec2db53b8a2e7b3d65ac6943462fee964de46 Mon Sep 17 00:00:00 2001
From: Matt Sherman
Date: Wed, 18 Oct 2023 13:31:46 -0400
Subject: [PATCH 34/37] Add @wordpress/data to dependencies
---
packages/js/block-templates/package.json | 1 +
1 file changed, 1 insertion(+)
diff --git a/packages/js/block-templates/package.json b/packages/js/block-templates/package.json
index c2f371a1f04..fb8f13a1d11 100644
--- a/packages/js/block-templates/package.json
+++ b/packages/js/block-templates/package.json
@@ -31,6 +31,7 @@
"@woocommerce/expression-evaluation": "workspace:*",
"@wordpress/block-editor": "^9.8.0",
"@wordpress/blocks": "^12.3.0",
+ "@wordpress/data": "wp-6.0",
"@wordpress/element": "wp-6.0"
},
"devDependencies": {
From 2477acd313bebc45d145e1761c270054ccd73945 Mon Sep 17 00:00:00 2001
From: Matt Sherman
Date: Wed, 18 Oct 2023 13:31:55 -0400
Subject: [PATCH 35/37] Update lock file
---
pnpm-lock.yaml | 806 +++++++++++++++++++++++++------------------------
1 file changed, 414 insertions(+), 392 deletions(-)
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index ee04f296c79..7fe492e834e 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -117,7 +117,7 @@ importers:
version: 1.1.2(webpack@5.76.3)
webpack:
specifier: ^5.76.2
- version: 5.76.3(webpack-cli@3.3.12)
+ version: 5.76.3(webpack-cli@4.9.2)
packages/js/admin-e2e-tests:
dependencies:
@@ -471,6 +471,9 @@ importers:
'@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
@@ -4419,7 +4422,7 @@ packages:
'@wordpress/primitives': 3.38.0
'@wordpress/react-i18n': 3.8.0
classnames: 2.3.1
- debug: 4.3.4(supports-color@8.1.1)
+ debug: 4.3.4(supports-color@9.2.2)
react: 17.0.2
react-dom: 17.0.2(react@17.0.2)
react-popper: 2.2.5(@popperjs/core@2.11.4)(react@17.0.2)
@@ -4458,7 +4461,7 @@ packages:
'@wordpress/primitives': 3.38.0
'@wordpress/react-i18n': 3.8.0
classnames: 2.3.1
- debug: 4.3.4(supports-color@8.1.1)
+ debug: 4.3.4(supports-color@9.2.2)
react: 17.0.2
react-dom: 17.0.2(react@17.0.2)
react-popper: 2.2.5(@popperjs/core@2.11.4)(react@17.0.2)
@@ -4584,7 +4587,6 @@ packages:
/@babel/compat-data@7.16.4:
resolution: {integrity: sha512-1o/jo7D+kC9ZjHX5v+EHrdjl3PhxMrLSOTGsOdHJ+KL8HCaEK6ehrVL2RS6oHDZp+L7xLirLrPmQtEng769J/Q==}
engines: {node: '>=6.9.0'}
- dev: true
/@babel/compat-data@7.17.7:
resolution: {integrity: sha512-p8pdE6j0a29TNGebNm7NzYZWB3xVZJBZ7XGs42uAKzQo8VQ3F0By/cQCtUEABwIqw5zo6WA4NbmxsfzADzMKnQ==}
@@ -4608,7 +4610,7 @@ packages:
'@babel/traverse': 7.17.3
'@babel/types': 7.17.0
convert-source-map: 1.8.0
- debug: 4.3.4(supports-color@8.1.1)
+ debug: 4.3.4(supports-color@9.2.2)
gensync: 1.0.0-beta.2
json5: 2.2.0
lodash: 4.17.21
@@ -4633,7 +4635,7 @@ packages:
'@babel/traverse': 7.19.3
'@babel/types': 7.19.3
convert-source-map: 1.8.0
- debug: 4.3.4(supports-color@8.1.1)
+ debug: 4.3.4(supports-color@9.2.2)
gensync: 1.0.0-beta.2
json5: 2.2.0
semver: 6.3.0
@@ -4655,7 +4657,7 @@ packages:
'@babel/traverse': 7.21.3
'@babel/types': 7.22.15
convert-source-map: 1.8.0
- debug: 4.3.4(supports-color@8.1.1)
+ debug: 4.3.4(supports-color@9.2.2)
gensync: 1.0.0-beta.2
json5: 2.2.3
semver: 6.3.1
@@ -4787,7 +4789,6 @@ packages:
'@babel/helper-validator-option': 7.18.6
browserslist: 4.19.3
semver: 6.3.0
- dev: true
/@babel/helper-compilation-targets@7.17.7(@babel/core@7.12.9):
resolution: {integrity: sha512-UFzlz2jjd8kroj0hmCFV5zr+tQPi1dpC2cRsDV/3IEW8bJfCPrPpmcSN6ZS8RqIq4LXcmpipCQFPddyFA5Yc7w==}
@@ -4852,7 +4853,6 @@ packages:
browserslist: 4.21.4
lru-cache: 5.1.1
semver: 6.3.1
- dev: true
/@babel/helper-compilation-targets@7.20.7(@babel/core@7.17.8):
resolution: {integrity: sha512-4tGORmfQcrc+bvrjb5y3dG9Mx1IOZjsHqQVUz7XCNHO+iTmqxWnVg3KRygjGmpRLJGdQSKuvFinbIb0CnZwHAQ==}
@@ -4866,6 +4866,7 @@ packages:
browserslist: 4.21.4
lru-cache: 5.1.1
semver: 6.3.1
+ dev: true
/@babel/helper-compilation-targets@7.20.7(@babel/core@7.21.3):
resolution: {integrity: sha512-4tGORmfQcrc+bvrjb5y3dG9Mx1IOZjsHqQVUz7XCNHO+iTmqxWnVg3KRygjGmpRLJGdQSKuvFinbIb0CnZwHAQ==}
@@ -4940,16 +4941,13 @@ 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-function-name': 7.21.0
+ '@babel/helper-annotate-as-pure': 7.22.5
+ '@babel/helper-environment-visitor': 7.22.5
+ '@babel/helper-function-name': 7.22.5
'@babel/helper-member-expression-to-functions': 7.21.0
- '@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-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-create-class-features-plugin@7.19.0(@babel/core@7.17.8):
resolution: {integrity: sha512-NRz8DwF4jT3UfrmUoZjd0Uph9HQnP30t7Ash+weACcyNkiYTywpIjDBgReJMKgr+n86sn2nPVVmJ28Dm053Kqw==}
@@ -4958,15 +4956,14 @@ 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-function-name': 7.21.0
+ '@babel/helper-annotate-as-pure': 7.22.5
+ '@babel/helper-environment-visitor': 7.22.5
+ '@babel/helper-function-name': 7.22.5
'@babel/helper-member-expression-to-functions': 7.21.0
- '@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-optimise-call-expression': 7.22.5
+ '@babel/helper-replace-supers': 7.22.9(@babel/core@7.17.8)
+ '@babel/helper-split-export-declaration': 7.22.6
+ dev: true
/@babel/helper-create-class-features-plugin@7.19.0(@babel/core@7.21.3):
resolution: {integrity: sha512-NRz8DwF4jT3UfrmUoZjd0Uph9HQnP30t7Ash+weACcyNkiYTywpIjDBgReJMKgr+n86sn2nPVVmJ28Dm053Kqw==}
@@ -5001,7 +4998,6 @@ packages:
'@babel/helper-skip-transparent-expression-wrappers': 7.22.5
'@babel/helper-split-export-declaration': 7.22.6
semver: 6.3.1
- dev: true
/@babel/helper-create-class-features-plugin@7.22.15(@babel/core@7.17.8):
resolution: {integrity: sha512-jKkwA59IXcvSaiK2UN45kKwSC9o+KuoXsBDvHvU/7BecYIp8GQ2UwrVvFgJASUT+hBnwJx6MhvMCuMzwZZ7jlg==}
@@ -5019,6 +5015,7 @@ packages:
'@babel/helper-skip-transparent-expression-wrappers': 7.22.5
'@babel/helper-split-export-declaration': 7.22.6
semver: 6.3.1
+ dev: true
/@babel/helper-create-class-features-plugin@7.22.15(@babel/core@7.21.3):
resolution: {integrity: sha512-jKkwA59IXcvSaiK2UN45kKwSC9o+KuoXsBDvHvU/7BecYIp8GQ2UwrVvFgJASUT+hBnwJx6MhvMCuMzwZZ7jlg==}
@@ -5044,9 +5041,8 @@ 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
- dev: true
/@babel/helper-create-regexp-features-plugin@7.19.0(@babel/core@7.17.8):
resolution: {integrity: sha512-htnV+mHX32DF81amCDrwIDr8nrp1PTm+3wfBN9/v8QJOLEioOCOG7qNyq0nHeFiWbT3Eb7gsPwEmV64UCQ1jzw==}
@@ -5057,6 +5053,7 @@ packages:
'@babel/core': 7.17.8
'@babel/helper-annotate-as-pure': 7.22.5
regexpu-core: 5.2.1
+ dev: true
/@babel/helper-create-regexp-features-plugin@7.19.0(@babel/core@7.21.3):
resolution: {integrity: sha512-htnV+mHX32DF81amCDrwIDr8nrp1PTm+3wfBN9/v8QJOLEioOCOG7qNyq0nHeFiWbT3Eb7gsPwEmV64UCQ1jzw==}
@@ -5078,7 +5075,7 @@ packages:
'@babel/helper-module-imports': 7.22.15
'@babel/helper-plugin-utils': 7.22.5
'@babel/traverse': 7.21.3
- debug: 4.3.4(supports-color@8.1.1)
+ debug: 4.3.4(supports-color@9.2.2)
lodash.debounce: 4.0.8
resolve: 1.22.1
semver: 6.3.1
@@ -5094,13 +5091,12 @@ packages:
'@babel/core': 7.12.9
'@babel/helper-compilation-targets': 7.20.7(@babel/core@7.12.9)
'@babel/helper-plugin-utils': 7.22.5
- debug: 4.3.4(supports-color@8.1.1)
+ debug: 4.3.4(supports-color@9.2.2)
lodash.debounce: 4.0.8
resolve: 1.22.1
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- dev: true
/@babel/helper-define-polyfill-provider@0.3.3(@babel/core@7.17.8):
resolution: {integrity: sha512-z5aQKU4IzbqCC1XH0nAqfsFLMVSo22SBKUc0BxGrLkolTdPTructy0ToNnlO2zA4j9Q/7pjMZf0DSY+DSTYzww==}
@@ -5110,12 +5106,13 @@ packages:
'@babel/core': 7.17.8
'@babel/helper-compilation-targets': 7.20.7(@babel/core@7.17.8)
'@babel/helper-plugin-utils': 7.22.5
- debug: 4.3.4(supports-color@8.1.1)
+ debug: 4.3.4(supports-color@9.2.2)
lodash.debounce: 4.0.8
resolve: 1.22.1
semver: 6.3.1
transitivePeerDependencies:
- supports-color
+ dev: true
/@babel/helper-define-polyfill-provider@0.3.3(@babel/core@7.21.3):
resolution: {integrity: sha512-z5aQKU4IzbqCC1XH0nAqfsFLMVSo22SBKUc0BxGrLkolTdPTructy0ToNnlO2zA4j9Q/7pjMZf0DSY+DSTYzww==}
@@ -5125,7 +5122,7 @@ packages:
'@babel/core': 7.21.3
'@babel/helper-compilation-targets': 7.20.7(@babel/core@7.21.3)
'@babel/helper-plugin-utils': 7.22.5
- debug: 4.3.4(supports-color@8.1.1)
+ debug: 4.3.4(supports-color@9.2.2)
lodash.debounce: 4.0.8
resolve: 1.22.1
semver: 6.3.1
@@ -5190,7 +5187,6 @@ packages:
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.22.4
- dev: true
/@babel/helper-module-imports@7.16.7:
resolution: {integrity: sha512-LVtS6TqjJHFc+nYeITRo6VLXve70xmq7wPhWTqDJusJEgGmkAACWwMiTNrvfoQo6hEhFwAIixNkvB0jPXDL8Wg==}
@@ -5251,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-environment-visitor': 7.22.5
'@babel/helper-module-imports': 7.22.15
- '@babel/helper-simple-access': 7.20.2
- '@babel/helper-split-export-declaration': 7.18.6
- '@babel/helper-validator-identifier': 7.19.1
+ '@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
@@ -5274,7 +5270,6 @@ packages:
'@babel/helper-simple-access': 7.22.5
'@babel/helper-split-export-declaration': 7.22.6
'@babel/helper-validator-identifier': 7.22.15
- dev: true
/@babel/helper-module-transforms@7.22.15(@babel/core@7.17.8):
resolution: {integrity: sha512-l1UiX4UyHSFsYt17iQ3Se5pQQZZHa22zyIXURmvkmLCD4t/aU+dvNWHatKac/D9Vm9UES7nvIqHs4jZqKviUmQ==}
@@ -5288,6 +5283,7 @@ packages:
'@babel/helper-simple-access': 7.22.5
'@babel/helper-split-export-declaration': 7.22.6
'@babel/helper-validator-identifier': 7.22.15
+ dev: true
/@babel/helper-module-transforms@7.22.15(@babel/core@7.21.3):
resolution: {integrity: sha512-l1UiX4UyHSFsYt17iQ3Se5pQQZZHa22zyIXURmvkmLCD4t/aU+dvNWHatKac/D9Vm9UES7nvIqHs4jZqKviUmQ==}
@@ -5321,7 +5317,6 @@ packages:
/@babel/helper-plugin-utils@7.14.5:
resolution: {integrity: sha512-/37qQCE3K0vvZKwoK4XU/irIJQdIfCJuhU5eKnNxpFDsOkgFaUAwbv+RYw6eYgsC0E4hS7r5KqGULUogqui0fQ==}
engines: {node: '>=6.9.0'}
- dev: true
/@babel/helper-plugin-utils@7.18.9:
resolution: {integrity: sha512-aBXPT3bmtLryXaoJLyYPXPlSD4p1ld9aYeR+sJNOZjJJGiOpb+fKfh3NkcCu7J54nUJwCERPBExCCpyCOHnu/w==}
@@ -5348,7 +5343,6 @@ packages:
'@babel/types': 7.22.4
transitivePeerDependencies:
- supports-color
- dev: true
/@babel/helper-remap-async-to-generator@7.16.8:
resolution: {integrity: sha512-fm0gH7Flb8H51LqJHy3HJ3wnE1+qtYR2A99K06ahwrawLdOFsCEWjZOrYricXJHoPSudNKxrMBUPEIPxiIIvBw==}
@@ -5368,13 +5362,12 @@ 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:
- supports-color
- dev: true
/@babel/helper-remap-async-to-generator@7.18.9(@babel/core@7.17.8):
resolution: {integrity: sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA==}
@@ -5389,6 +5382,7 @@ packages:
'@babel/types': 7.22.15
transitivePeerDependencies:
- supports-color
+ dev: true
/@babel/helper-remap-async-to-generator@7.18.9(@babel/core@7.21.3):
resolution: {integrity: sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA==}
@@ -5408,14 +5402,13 @@ 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:
- supports-color
- dev: true
/@babel/helper-replace-supers@7.20.7:
resolution: {integrity: sha512-vujDMtB6LVfNW13jhlCrp48QNslK6JXi7lQG736HVbHz/mbf4Dc7tIRh1Xf5C0rF7BP8iiSxGMCmY6Ci1ven3A==}
@@ -5440,7 +5433,6 @@ packages:
'@babel/helper-environment-visitor': 7.22.5
'@babel/helper-member-expression-to-functions': 7.22.15
'@babel/helper-optimise-call-expression': 7.22.5
- dev: true
/@babel/helper-replace-supers@7.22.9(@babel/core@7.17.8):
resolution: {integrity: sha512-LJIKvvpgPOPUThdYqcX6IXRuIcTkcAub0IaDRGCZH0p5GPUp7PhRU9QVgFcDDd51BaPkk77ZjqFwh6DZTAEmGg==}
@@ -5452,6 +5444,7 @@ packages:
'@babel/helper-environment-visitor': 7.22.5
'@babel/helper-member-expression-to-functions': 7.22.15
'@babel/helper-optimise-call-expression': 7.22.5
+ dev: true
/@babel/helper-replace-supers@7.22.9(@babel/core@7.21.3):
resolution: {integrity: sha512-LJIKvvpgPOPUThdYqcX6IXRuIcTkcAub0IaDRGCZH0p5GPUp7PhRU9QVgFcDDd51BaPkk77ZjqFwh6DZTAEmGg==}
@@ -5529,7 +5522,6 @@ packages:
/@babel/helper-validator-option@7.14.5:
resolution: {integrity: sha512-OX8D5eeX4XwcroVW45NMvoYaIuFI+GQpA2a8Gi+X/U/cDUIRsV37qQfF905F0htTRCREQIB4KqPeaveRJUl3Ow==}
engines: {node: '>=6.9.0'}
- dev: true
/@babel/helper-validator-option@7.16.7:
resolution: {integrity: sha512-TRtenOuRUVo9oIQGPC5G9DgK4743cdxvtOw0weQNpZXaS16SCBi5MNjZF8vba3ETURjZpTbVn7Vvcf2eAwFozQ==}
@@ -5552,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
@@ -5583,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
@@ -5765,7 +5757,6 @@ packages:
'@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.12.9)
transitivePeerDependencies:
- supports-color
- dev: true
/@babel/plugin-proposal-async-generator-functions@7.16.8(@babel/core@7.12.9):
resolution: {integrity: sha512-71YHIvMuiuqWJQkebWJtdhQTfd4Q4mF76q2IX37uZPkG9+olBxsX+rH1vkhFto4UeJZ9dPY2s+mDvhDm1u2BGQ==}
@@ -5823,7 +5814,6 @@ packages:
'@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.12.9)
transitivePeerDependencies:
- supports-color
- dev: true
/@babel/plugin-proposal-async-generator-functions@7.20.7(@babel/core@7.17.8):
resolution: {integrity: sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==}
@@ -5833,12 +5823,13 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.17.8
- '@babel/helper-environment-visitor': 7.18.9
+ '@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:
- supports-color
+ dev: true
/@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==}
@@ -5848,7 +5839,7 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.21.3
- '@babel/helper-environment-visitor': 7.18.9
+ '@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)
@@ -5864,9 +5855,6 @@ packages:
'@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
- transitivePeerDependencies:
- - supports-color
- dev: true
/@babel/plugin-proposal-class-properties@7.16.7(@babel/core@7.12.9):
resolution: {integrity: sha512-IobU0Xme31ewjYOShSIqd/ZGM/r/cuOz2z0MDbNrhF5FW+ZVgi0f2lyeoj9KFPDOAqsYxmLWZte1WOwlvY9aww==}
@@ -5914,10 +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
- transitivePeerDependencies:
- - supports-color
- dev: true
+ '@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==}
@@ -5927,9 +5912,8 @@ 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
- transitivePeerDependencies:
- - supports-color
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: true
/@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.21.3):
resolution: {integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==}
@@ -5953,8 +5937,6 @@ packages:
'@babel/helper-create-class-features-plugin': 7.19.0(@babel/core@7.12.9)
'@babel/helper-plugin-utils': 7.21.5
'@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.12.9)
- transitivePeerDependencies:
- - supports-color
dev: true
/@babel/plugin-proposal-class-static-block@7.17.6(@babel/core@7.17.8):
@@ -5967,8 +5949,6 @@ packages:
'@babel/helper-create-class-features-plugin': 7.19.0(@babel/core@7.17.8)
'@babel/helper-plugin-utils': 7.21.5
'@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.17.8)
- transitivePeerDependencies:
- - supports-color
dev: true
/@babel/plugin-proposal-class-static-block@7.17.6(@babel/core@7.21.3):
@@ -5996,8 +5976,6 @@ packages:
'@babel/helper-create-class-features-plugin': 7.19.0(@babel/core@7.12.9)
'@babel/helper-plugin-utils': 7.22.5
'@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.12.9)
- transitivePeerDependencies:
- - supports-color
dev: true
/@babel/plugin-proposal-class-static-block@7.18.6(@babel/core@7.17.8):
@@ -6008,11 +5986,9 @@ packages:
'@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-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)
- transitivePeerDependencies:
- - supports-color
dev: true
/@babel/plugin-proposal-class-static-block@7.18.6(@babel/core@7.21.3):
@@ -6023,11 +5999,9 @@ packages:
'@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-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)
- transitivePeerDependencies:
- - supports-color
/@babel/plugin-proposal-decorators@7.16.4(@babel/core@7.21.3):
resolution: {integrity: sha512-RESBNX16eNqnBeEVR5sCJpnW0mHiNLNNvGA8PrRuK/4ZJ4TO+6bHleRUuGQYDERVySOKtOhSya/C4MIhwAMAgg==}
@@ -6050,7 +6024,6 @@ packages:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.20.2
'@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.12.9)
- dev: true
/@babel/plugin-proposal-dynamic-import@7.16.7(@babel/core@7.12.9):
resolution: {integrity: sha512-I8SW9Ho3/8DRSdmDdH3gORdyUuYnk1m4cMxUAdu5oy4n3OfN8flDEH+d60iG7dUfi0KkYwSvoalHzzdRzpWHTg==}
@@ -6120,15 +6093,15 @@ packages:
'@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.17.8):
+ /@babel/plugin-proposal-export-default-from@7.16.7(@babel/core@7.12.9):
resolution: {integrity: sha512-+cENpW1rgIjExn+o5c8Jw/4BuH4eGKKYvkMB8/0ZxFQ9mC0t4z09VsPIwNg6waF69QYC81zxGeAsREGuqQoKeg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.8
+ '@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-export-default-from': 7.16.7(@babel/core@7.17.8)
+ '@babel/plugin-syntax-export-default-from': 7.16.7(@babel/core@7.12.9)
/@babel/plugin-proposal-export-default-from@7.16.7(@babel/core@7.21.3):
resolution: {integrity: sha512-+cENpW1rgIjExn+o5c8Jw/4BuH4eGKKYvkMB8/0ZxFQ9mC0t4z09VsPIwNg6waF69QYC81zxGeAsREGuqQoKeg==}
@@ -6149,7 +6122,6 @@ packages:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.20.2
'@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.12.9)
- dev: true
/@babel/plugin-proposal-export-namespace-from@7.16.7(@babel/core@7.12.9):
resolution: {integrity: sha512-ZxdtqDXLRGBL64ocZcs7ovt71L3jhC1RGSyR996svrCi3PYqHNkb3SwPJCs8RIzD86s+WPpt2S73+EHCGO+NUA==}
@@ -6228,7 +6200,6 @@ packages:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.20.2
'@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.12.9)
- dev: true
/@babel/plugin-proposal-json-strings@7.16.7(@babel/core@7.12.9):
resolution: {integrity: sha512-lNZ3EEggsGY78JavgbHsK9u5P3pQaW7k4axlgFLYkMd7UBsiNahCITShLjNQschPyjtO6dADrL24757IdhBrsQ==}
@@ -6307,7 +6278,6 @@ packages:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.20.2
'@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.12.9)
- dev: true
/@babel/plugin-proposal-logical-assignment-operators@7.16.7(@babel/core@7.12.9):
resolution: {integrity: sha512-K3XzyZJGQCr00+EtYtrDjmwX7o7PLK6U9bi1nCwkQioRFVUv6dJoxbQjtWVtP+bCPy82bONBKG8NPyQ4+i6yjg==}
@@ -6386,7 +6356,6 @@ packages:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.20.2
'@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.12.9)
- dev: true
/@babel/plugin-proposal-nullish-coalescing-operator@7.16.7(@babel/core@7.12.9):
resolution: {integrity: sha512-aUOrYU3EVtjf62jQrCj63pYZ7k6vns2h/DQvHPWGmsJRYzWXZ6/AsfgpiRy6XiuIDADhJzP2Q9MwSMKauBQ+UQ==}
@@ -6430,7 +6399,6 @@ packages:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.22.5
'@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.12.9)
- dev: true
/@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.17.8):
resolution: {integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==}
@@ -6442,6 +6410,7 @@ packages:
'@babel/core': 7.17.8
'@babel/helper-plugin-utils': 7.22.5
'@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.17.8)
+ dev: true
/@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.21.3):
resolution: {integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==}
@@ -6463,7 +6432,6 @@ packages:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.20.2
'@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.12.9)
- dev: true
/@babel/plugin-proposal-numeric-separator@7.16.7(@babel/core@7.12.9):
resolution: {integrity: sha512-vQgPMknOIgiuVqbokToyXbkY/OmmjAzr/0lhSIbG/KmnzXPGwW/AdhdKpi+O4X/VkWiWjnkKOBiqJrTaC98VKw==}
@@ -6557,7 +6525,6 @@ packages:
'@babel/helper-plugin-utils': 7.14.5
'@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.12.9)
'@babel/plugin-transform-parameters': 7.16.3(@babel/core@7.12.9)
- dev: true
/@babel/plugin-proposal-object-rest-spread@7.17.3(@babel/core@7.12.9):
resolution: {integrity: sha512-yuL5iQA/TbZn+RGAfxQXfi7CNLmKi1f8zInn4IgobuCWcAb7i+zj4TYzQ9l8cEzVyJ89PDGuqxK1xZpUDISesw==}
@@ -6614,7 +6581,6 @@ packages:
'@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)
- dev: true
/@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.17.8):
resolution: {integrity: sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==}
@@ -6629,6 +6595,7 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
'@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.17.8)
'@babel/plugin-transform-parameters': 7.21.3(@babel/core@7.17.8)
+ dev: true
/@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.21.3):
resolution: {integrity: sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==}
@@ -6653,7 +6620,6 @@ packages:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.20.2
'@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.12.9)
- dev: true
/@babel/plugin-proposal-optional-catch-binding@7.16.7(@babel/core@7.12.9):
resolution: {integrity: sha512-eMOH/L4OvWSZAE1VkHbr1vckLG1WUcHGJSLqqQwl2GaUqG6QjddvrOaTUMNYiv77H5IKPMZ9U9P7EaHwvAShfA==}
@@ -6698,7 +6664,6 @@ packages:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.22.5
'@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.12.9)
- dev: true
/@babel/plugin-proposal-optional-catch-binding@7.18.6(@babel/core@7.17.8):
resolution: {integrity: sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==}
@@ -6710,6 +6675,7 @@ packages:
'@babel/core': 7.17.8
'@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==}
@@ -6732,7 +6698,6 @@ packages:
'@babel/helper-plugin-utils': 7.20.2
'@babel/helper-skip-transparent-expression-wrappers': 7.18.9
'@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.12.9)
- dev: true
/@babel/plugin-proposal-optional-chaining@7.16.7(@babel/core@7.12.9):
resolution: {integrity: sha512-eC3xy+ZrUcBtP7x+sq62Q/HYd674pPTb/77XZMb5wbDPGWIdUbSr4Agr052+zaUPSb+gGRnjxXfKFvx5iMJ+DA==}
@@ -6780,7 +6745,6 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
'@babel/helper-skip-transparent-expression-wrappers': 7.22.5
'@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.12.9)
- dev: true
/@babel/plugin-proposal-optional-chaining@7.18.9(@babel/core@7.17.8):
resolution: {integrity: sha512-v5nwt4IqBXihxGsW2QmCWMDS3B3bzGIk/EQVZz2ei7f3NJl8NzAJVvUmpDW5q1CRNY+Beb/k58UAH1Km1N411w==}
@@ -6793,6 +6757,7 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
'@babel/helper-skip-transparent-expression-wrappers': 7.22.5
'@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.17.8)
+ dev: true
/@babel/plugin-proposal-optional-chaining@7.18.9(@babel/core@7.21.3):
resolution: {integrity: sha512-v5nwt4IqBXihxGsW2QmCWMDS3B3bzGIk/EQVZz2ei7f3NJl8NzAJVvUmpDW5q1CRNY+Beb/k58UAH1Km1N411w==}
@@ -6815,9 +6780,6 @@ packages:
'@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
- transitivePeerDependencies:
- - supports-color
- dev: true
/@babel/plugin-proposal-private-methods@7.16.11(@babel/core@7.12.9):
resolution: {integrity: sha512-F/2uAkPlXDr8+BHpZvo19w3hLFKge+k75XUprE6jaqKxjGkSYcK+4c+bup5PdW/7W/Rpjwql7FTVEDW+fRAQsw==}
@@ -6988,7 +6950,6 @@ packages:
'@babel/core': 7.12.9
'@babel/helper-create-regexp-features-plugin': 7.19.0(@babel/core@7.12.9)
'@babel/helper-plugin-utils': 7.20.2
- dev: true
/@babel/plugin-proposal-unicode-property-regex@7.16.7(@babel/core@7.12.9):
resolution: {integrity: sha512-QRK0YI/40VLhNVGIjRNAAQkEHws0cswSdFFjpFyt943YmJIU1da9uW63Iu6NFV6CxTZW5eTDCrwZUstBWgp/Rg==}
@@ -7033,7 +6994,6 @@ packages:
'@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
- dev: true
/@babel/plugin-proposal-unicode-property-regex@7.18.6(@babel/core@7.17.8):
resolution: {integrity: sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==}
@@ -7073,6 +7033,7 @@ packages:
dependencies:
'@babel/core': 7.17.8
'@babel/helper-plugin-utils': 7.22.5
+ dev: true
/@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.21.3):
resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==}
@@ -7123,6 +7084,7 @@ packages:
dependencies:
'@babel/core': 7.17.8
'@babel/helper-plugin-utils': 7.22.5
+ dev: true
/@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.21.3):
resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==}
@@ -7178,7 +7140,6 @@ packages:
dependencies:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.22.5
- dev: true
/@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.17.8):
resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==}
@@ -7187,6 +7148,7 @@ packages:
dependencies:
'@babel/core': 7.17.8
'@babel/helper-plugin-utils': 7.22.5
+ dev: true
/@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.21.3):
resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==}
@@ -7196,13 +7158,13 @@ packages:
'@babel/core': 7.21.3
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-syntax-export-default-from@7.16.7(@babel/core@7.17.8):
+ /@babel/plugin-syntax-export-default-from@7.16.7(@babel/core@7.12.9):
resolution: {integrity: sha512-4C3E4NsrLOgftKaTYTULhHsuQrGv3FHrBzOMDiS7UYKIpgGBkAdawg4h+EI8zPeK9M0fiIIh72hIwsI24K7MbA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.8
+ '@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.22.5
/@babel/plugin-syntax-export-default-from@7.16.7(@babel/core@7.21.3):
@@ -7221,7 +7183,6 @@ packages:
dependencies:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.22.5
- dev: true
/@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.17.8):
resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==}
@@ -7240,6 +7201,15 @@ packages:
'@babel/core': 7.21.3
'@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==}
+ 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-flow@7.16.7(@babel/core@7.17.8):
resolution: {integrity: sha512-UDo3YGQO0jH6ytzVwgSLv9i/CzMcUjbKenL67dTrAZPPv6GFAtDhe6jqnvmoKzC/7htNTohhos+onPtDMqJwaQ==}
engines: {node: '>=6.9.0'}
@@ -7248,6 +7218,7 @@ packages:
dependencies:
'@babel/core': 7.17.8
'@babel/helper-plugin-utils': 7.22.5
+ dev: true
/@babel/plugin-syntax-flow@7.16.7(@babel/core@7.21.3):
resolution: {integrity: sha512-UDo3YGQO0jH6ytzVwgSLv9i/CzMcUjbKenL67dTrAZPPv6GFAtDhe6jqnvmoKzC/7htNTohhos+onPtDMqJwaQ==}
@@ -7386,6 +7357,15 @@ packages:
'@babel/core': 7.21.3
'@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==}
+ 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.22.5(@babel/core@7.17.8):
resolution: {integrity: sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg==}
engines: {node: '>=6.9.0'}
@@ -7444,6 +7424,7 @@ packages:
dependencies:
'@babel/core': 7.17.8
'@babel/helper-plugin-utils': 7.22.5
+ dev: true
/@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.21.3):
resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==}
@@ -7493,6 +7474,7 @@ packages:
dependencies:
'@babel/core': 7.17.8
'@babel/helper-plugin-utils': 7.22.5
+ dev: true
/@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.21.3):
resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==}
@@ -7517,6 +7499,7 @@ packages:
dependencies:
'@babel/core': 7.17.8
'@babel/helper-plugin-utils': 7.22.5
+ dev: true
/@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.21.3):
resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==}
@@ -7541,6 +7524,7 @@ packages:
dependencies:
'@babel/core': 7.17.8
'@babel/helper-plugin-utils': 7.22.5
+ dev: true
/@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.21.3):
resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==}
@@ -7636,13 +7620,13 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-typescript@7.22.5(@babel/core@7.17.8):
+ /@babel/plugin-syntax-typescript@7.22.5(@babel/core@7.12.9):
resolution: {integrity: sha512-1mS2o03i7t1c6VzH6fdQ3OA8tcEIxwG18zIPRp+UY1Ihv6W+XZzBCVxExF9upussPXJ0xE9XRHwMoNs1ep/nRQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.8
+ '@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.22.5
/@babel/plugin-syntax-typescript@7.22.5(@babel/core@7.21.3):
@@ -7662,7 +7646,6 @@ packages:
dependencies:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.20.2
- dev: true
/@babel/plugin-transform-arrow-functions@7.16.7(@babel/core@7.12.9):
resolution: {integrity: sha512-9ffkFFMbvzTvv+7dTp/66xvZAWASuPD5Tl9LK3Z9vhOmANo6j94rik+5YMBt4CwHVMWLWpMsriIc2zsa3WW3xQ==}
@@ -7702,7 +7685,6 @@ packages:
dependencies:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.22.5
- dev: true
/@babel/plugin-transform-arrow-functions@7.18.6(@babel/core@7.17.8):
resolution: {integrity: sha512-9S9X9RUefzrsHZmKMbDXxweEH+YlE8JJEuat9FdvW9Qh1cw7W64jELCtWNkPBPX5En45uy28KGvA/AySqUh8CQ==}
@@ -7712,6 +7694,7 @@ packages:
dependencies:
'@babel/core': 7.17.8
'@babel/helper-plugin-utils': 7.22.5
+ dev: true
/@babel/plugin-transform-arrow-functions@7.18.6(@babel/core@7.21.3):
resolution: {integrity: sha512-9S9X9RUefzrsHZmKMbDXxweEH+YlE8JJEuat9FdvW9Qh1cw7W64jELCtWNkPBPX5En45uy28KGvA/AySqUh8CQ==}
@@ -7734,7 +7717,6 @@ packages:
'@babel/helper-remap-async-to-generator': 7.18.9(@babel/core@7.12.9)
transitivePeerDependencies:
- supports-color
- dev: true
/@babel/plugin-transform-async-to-generator@7.16.8(@babel/core@7.12.9):
resolution: {integrity: sha512-MtmUmTJQHCnyJVrScNzNlofQJ3dLFuobYn3mwOTKHnSCMtbNsqvF71GQmJfFjdrXSsAA7iysFmYWw4bXZ20hOg==}
@@ -7790,7 +7772,6 @@ packages:
'@babel/helper-remap-async-to-generator': 7.18.9(@babel/core@7.12.9)
transitivePeerDependencies:
- supports-color
- dev: true
/@babel/plugin-transform-async-to-generator@7.18.6(@babel/core@7.17.8):
resolution: {integrity: sha512-ARE5wZLKnTgPW7/1ftQmSi1CmkqqHo2DNmtztFhvgtOWSDfq0Cq9/9L+KnZNYSNrydBekhW3rwShduf59RoXag==}
@@ -7799,11 +7780,12 @@ 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
+ dev: true
/@babel/plugin-transform-async-to-generator@7.18.6(@babel/core@7.21.3):
resolution: {integrity: sha512-ARE5wZLKnTgPW7/1ftQmSi1CmkqqHo2DNmtztFhvgtOWSDfq0Cq9/9L+KnZNYSNrydBekhW3rwShduf59RoXag==}
@@ -7812,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
@@ -7826,7 +7808,6 @@ packages:
dependencies:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.20.2
- dev: true
/@babel/plugin-transform-block-scoped-functions@7.16.7(@babel/core@7.12.9):
resolution: {integrity: sha512-JUuzlzmF40Z9cXyytcbZEZKckgrQzChbQJw/5PuEHYeqzCsvebDx0K0jWnIIVcmmDOAVctCgnYs0pMcrYj2zJg==}
@@ -7866,7 +7847,6 @@ packages:
dependencies:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.22.5
- dev: true
/@babel/plugin-transform-block-scoped-functions@7.18.6(@babel/core@7.17.8):
resolution: {integrity: sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==}
@@ -7876,6 +7856,7 @@ packages:
dependencies:
'@babel/core': 7.17.8
'@babel/helper-plugin-utils': 7.22.5
+ dev: true
/@babel/plugin-transform-block-scoped-functions@7.18.6(@babel/core@7.21.3):
resolution: {integrity: sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==}
@@ -7894,7 +7875,6 @@ packages:
dependencies:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.20.2
- dev: true
/@babel/plugin-transform-block-scoping@7.16.7(@babel/core@7.12.9):
resolution: {integrity: sha512-ObZev2nxVAYA4bhyusELdo9hb3H+A56bxH3FZMbEImZFiEDYVHXQSJ1hQKFlDnlt8G9bBrCZ5ZpURZUrV4G5qQ==}
@@ -7934,7 +7914,6 @@ packages:
dependencies:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.22.5
- dev: true
/@babel/plugin-transform-block-scoping@7.21.0(@babel/core@7.17.8):
resolution: {integrity: sha512-Mdrbunoh9SxwFZapeHVrwFmri16+oYotcZysSzhNIVDwIAb1UV+kvnxULSYq9J3/q5MDG+4X6w8QVgD1zhBXNQ==}
@@ -7944,6 +7923,7 @@ packages:
dependencies:
'@babel/core': 7.17.8
'@babel/helper-plugin-utils': 7.22.5
+ dev: true
/@babel/plugin-transform-block-scoping@7.21.0(@babel/core@7.21.3):
resolution: {integrity: sha512-Mdrbunoh9SxwFZapeHVrwFmri16+oYotcZysSzhNIVDwIAb1UV+kvnxULSYq9J3/q5MDG+4X6w8QVgD1zhBXNQ==}
@@ -7970,7 +7950,6 @@ packages:
globals: 11.12.0
transitivePeerDependencies:
- supports-color
- dev: true
/@babel/plugin-transform-classes@7.16.7(@babel/core@7.12.9):
resolution: {integrity: sha512-WY7og38SFAGYRe64BrjKf8OrE6ulEHtr5jEYaZMwox9KebgqPi67Zqz8K53EKk1fFEJgm96r32rkKZ3qA2nCWQ==}
@@ -8045,7 +8024,6 @@ packages:
'@babel/helper-replace-supers': 7.22.9(@babel/core@7.12.9)
'@babel/helper-split-export-declaration': 7.22.6
globals: 11.12.0
- dev: true
/@babel/plugin-transform-classes@7.21.0(@babel/core@7.17.8):
resolution: {integrity: sha512-RZhbYTCEUAe6ntPehC4hlslPWosNHDox+vAs4On/mCLRLfoDVHf6hVEd7kuxr1RnHwJmxFfUM3cZiZRmPxJPXQ==}
@@ -8063,6 +8041,7 @@ packages:
'@babel/helper-replace-supers': 7.22.9(@babel/core@7.17.8)
'@babel/helper-split-export-declaration': 7.22.6
globals: 11.12.0
+ dev: true
/@babel/plugin-transform-classes@7.21.0(@babel/core@7.21.3):
resolution: {integrity: sha512-RZhbYTCEUAe6ntPehC4hlslPWosNHDox+vAs4On/mCLRLfoDVHf6hVEd7kuxr1RnHwJmxFfUM3cZiZRmPxJPXQ==}
@@ -8089,7 +8068,6 @@ packages:
dependencies:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.20.2
- dev: true
/@babel/plugin-transform-computed-properties@7.16.7(@babel/core@7.12.9):
resolution: {integrity: sha512-gN72G9bcmenVILj//sv1zLNaPyYcOzUho2lIJBMh/iakJ9ygCo/hEF9cpGb61SCMEDxbbyBoVQxrt+bWKu5KGw==}
@@ -8129,7 +8107,6 @@ packages:
dependencies:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.22.5
- dev: true
/@babel/plugin-transform-computed-properties@7.18.9(@babel/core@7.17.8):
resolution: {integrity: sha512-+i0ZU1bCDymKakLxn5srGHrsAPRELC2WIbzwjLhHW9SIE1cPYkLCL0NlnXMZaM1vhfgA2+M7hySk42VBvrkBRw==}
@@ -8139,6 +8116,7 @@ packages:
dependencies:
'@babel/core': 7.17.8
'@babel/helper-plugin-utils': 7.22.5
+ dev: true
/@babel/plugin-transform-computed-properties@7.18.9(@babel/core@7.21.3):
resolution: {integrity: sha512-+i0ZU1bCDymKakLxn5srGHrsAPRELC2WIbzwjLhHW9SIE1cPYkLCL0NlnXMZaM1vhfgA2+M7hySk42VBvrkBRw==}
@@ -8157,7 +8135,6 @@ packages:
dependencies:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.20.2
- dev: true
/@babel/plugin-transform-destructuring@7.17.7(@babel/core@7.12.9):
resolution: {integrity: sha512-XVh0r5yq9sLR4vZ6eVZe8FKfIcSgaTBxVBRSYokRj2qksf6QerYnTxz9/GTuKTH/n/HwLP7t6gtlybHetJ/6hQ==}
@@ -8197,7 +8174,6 @@ packages:
dependencies:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.22.5
- dev: true
/@babel/plugin-transform-destructuring@7.21.3(@babel/core@7.17.8):
resolution: {integrity: sha512-bp6hwMFzuiE4HqYEyoGJ/V2LeIWn+hLVKc4pnj++E5XQptwhtcGmSayM029d/j2X1bPKGTlsyPwAubuU22KhMA==}
@@ -8207,6 +8183,7 @@ packages:
dependencies:
'@babel/core': 7.17.8
'@babel/helper-plugin-utils': 7.22.5
+ dev: true
/@babel/plugin-transform-destructuring@7.21.3(@babel/core@7.21.3):
resolution: {integrity: sha512-bp6hwMFzuiE4HqYEyoGJ/V2LeIWn+hLVKc4pnj++E5XQptwhtcGmSayM029d/j2X1bPKGTlsyPwAubuU22KhMA==}
@@ -8226,7 +8203,6 @@ packages:
'@babel/core': 7.12.9
'@babel/helper-create-regexp-features-plugin': 7.19.0(@babel/core@7.12.9)
'@babel/helper-plugin-utils': 7.20.2
- dev: true
/@babel/plugin-transform-dotall-regex@7.16.7(@babel/core@7.12.9):
resolution: {integrity: sha512-Lyttaao2SjZF6Pf4vk1dVKv8YypMpomAbygW+mU5cYP3S5cWTfCJjG8xV6CFdzGFlfWK81IjL9viiTvpb6G7gQ==}
@@ -8270,7 +8246,6 @@ packages:
'@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
- dev: true
/@babel/plugin-transform-dotall-regex@7.18.6(@babel/core@7.17.8):
resolution: {integrity: sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg==}
@@ -8301,7 +8276,6 @@ packages:
dependencies:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.20.2
- dev: true
/@babel/plugin-transform-duplicate-keys@7.16.7(@babel/core@7.12.9):
resolution: {integrity: sha512-03DvpbRfvWIXyK0/6QiR1KMTWeT6OcQ7tbhjrXyFS02kjuX/mu5Bvnh5SDSWHxyawit2g5aWhKwI86EE7GUnTw==}
@@ -8371,7 +8345,6 @@ packages:
'@babel/core': 7.12.9
'@babel/helper-builder-binary-assignment-operator-visitor': 7.18.9
'@babel/helper-plugin-utils': 7.20.2
- dev: true
/@babel/plugin-transform-exponentiation-operator@7.16.7(@babel/core@7.12.9):
resolution: {integrity: sha512-8UYLSlyLgRixQvlYH3J2ekXFHDFLQutdy7FfFAMm3CPZ6q9wHCwnUyiXpQCe3gVVnQlHc5nsuiEVziteRNTXEA==}
@@ -8415,7 +8388,6 @@ packages:
'@babel/core': 7.12.9
'@babel/helper-builder-binary-assignment-operator-visitor': 7.18.9
'@babel/helper-plugin-utils': 7.22.5
- dev: true
/@babel/plugin-transform-exponentiation-operator@7.18.6(@babel/core@7.17.8):
resolution: {integrity: sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw==}
@@ -8426,6 +8398,7 @@ packages:
'@babel/core': 7.17.8
'@babel/helper-builder-binary-assignment-operator-visitor': 7.18.9
'@babel/helper-plugin-utils': 7.22.5
+ dev: true
/@babel/plugin-transform-exponentiation-operator@7.18.6(@babel/core@7.21.3):
resolution: {integrity: sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw==}
@@ -8437,6 +8410,16 @@ packages:
'@babel/helper-builder-binary-assignment-operator-visitor': 7.18.9
'@babel/helper-plugin-utils': 7.22.5
+ /@babel/plugin-transform-flow-strip-types@7.16.7(@babel/core@7.12.9):
+ resolution: {integrity: sha512-mzmCq3cNsDpZZu9FADYYyfZJIOrSONmHcop2XEKPdBNMa4PDC4eEvcOvzZaCNcjKu72v0XQlA5y1g58aLRXdYg==}
+ 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-flow': 7.16.7(@babel/core@7.12.9)
+
/@babel/plugin-transform-flow-strip-types@7.16.7(@babel/core@7.17.8):
resolution: {integrity: sha512-mzmCq3cNsDpZZu9FADYYyfZJIOrSONmHcop2XEKPdBNMa4PDC4eEvcOvzZaCNcjKu72v0XQlA5y1g58aLRXdYg==}
engines: {node: '>=6.9.0'}
@@ -8446,6 +8429,7 @@ packages:
'@babel/core': 7.17.8
'@babel/helper-plugin-utils': 7.22.5
'@babel/plugin-syntax-flow': 7.16.7(@babel/core@7.17.8)
+ dev: true
/@babel/plugin-transform-flow-strip-types@7.16.7(@babel/core@7.21.3):
resolution: {integrity: sha512-mzmCq3cNsDpZZu9FADYYyfZJIOrSONmHcop2XEKPdBNMa4PDC4eEvcOvzZaCNcjKu72v0XQlA5y1g58aLRXdYg==}
@@ -8465,7 +8449,6 @@ packages:
dependencies:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.20.2
- dev: true
/@babel/plugin-transform-for-of@7.16.7(@babel/core@7.12.9):
resolution: {integrity: sha512-/QZm9W92Ptpw7sjI9Nx1mbcsWz33+l8kuMIQnDwgQBG5s3fAfQvkRjQ7NqXhtNcKOnPkdICmUHyCaWW06HCsqg==}
@@ -8505,7 +8488,6 @@ packages:
dependencies:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.22.5
- dev: true
/@babel/plugin-transform-for-of@7.18.8(@babel/core@7.17.8):
resolution: {integrity: sha512-yEfTRnjuskWYo0k1mHUqrVWaZwrdq8AYbfrpqULOJOaucGSp4mNMVps+YtA8byoevxS/urwU75vyhQIxcCgiBQ==}
@@ -8515,6 +8497,7 @@ packages:
dependencies:
'@babel/core': 7.17.8
'@babel/helper-plugin-utils': 7.22.5
+ dev: true
/@babel/plugin-transform-for-of@7.18.8(@babel/core@7.21.3):
resolution: {integrity: sha512-yEfTRnjuskWYo0k1mHUqrVWaZwrdq8AYbfrpqULOJOaucGSp4mNMVps+YtA8byoevxS/urwU75vyhQIxcCgiBQ==}
@@ -8534,7 +8517,6 @@ packages:
'@babel/core': 7.12.9
'@babel/helper-function-name': 7.19.0
'@babel/helper-plugin-utils': 7.20.2
- dev: true
/@babel/plugin-transform-function-name@7.16.7(@babel/core@7.12.9):
resolution: {integrity: sha512-SU/C68YVwTRxqWj5kgsbKINakGag0KTgq9f2iZEXdStoAbOzLHEBRYzImmA6yFo8YZhJVflvXmIHUO7GWHmxxA==}
@@ -8544,8 +8526,8 @@ packages:
dependencies:
'@babel/core': 7.12.9
'@babel/helper-compilation-targets': 7.20.7(@babel/core@7.12.9)
- '@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.16.7(@babel/core@7.17.8):
@@ -8582,7 +8564,6 @@ packages:
'@babel/helper-compilation-targets': 7.20.7(@babel/core@7.12.9)
'@babel/helper-function-name': 7.21.0
'@babel/helper-plugin-utils': 7.21.5
- dev: true
/@babel/plugin-transform-function-name@7.18.9(@babel/core@7.17.8):
resolution: {integrity: sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ==}
@@ -8594,6 +8575,7 @@ packages:
'@babel/helper-compilation-targets': 7.20.7(@babel/core@7.17.8)
'@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):
resolution: {integrity: sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ==}
@@ -8614,7 +8596,6 @@ packages:
dependencies:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.20.2
- dev: true
/@babel/plugin-transform-literals@7.16.7(@babel/core@7.12.9):
resolution: {integrity: sha512-6tH8RTpTWI0s2sV6uq3e/C9wPo4PTqqZps4uF0kzQ9/xPLFQtipynvmT1g/dOfEJ+0EQsHhkQ/zyRId8J2b8zQ==}
@@ -8654,7 +8635,6 @@ packages:
dependencies:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.22.5
- dev: true
/@babel/plugin-transform-literals@7.18.9(@babel/core@7.17.8):
resolution: {integrity: sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg==}
@@ -8664,6 +8644,7 @@ packages:
dependencies:
'@babel/core': 7.17.8
'@babel/helper-plugin-utils': 7.22.5
+ dev: true
/@babel/plugin-transform-literals@7.18.9(@babel/core@7.21.3):
resolution: {integrity: sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg==}
@@ -8682,7 +8663,6 @@ packages:
dependencies:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.20.2
- dev: true
/@babel/plugin-transform-member-expression-literals@7.16.7(@babel/core@7.12.9):
resolution: {integrity: sha512-mBruRMbktKQwbxaJof32LT9KLy2f3gH+27a5XSuXo6h7R3vqltl0PgZ80C8ZMKw98Bf8bqt6BEVi3svOh2PzMw==}
@@ -8722,7 +8702,6 @@ packages:
dependencies:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.22.5
- dev: true
/@babel/plugin-transform-member-expression-literals@7.18.6(@babel/core@7.17.8):
resolution: {integrity: sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA==}
@@ -8732,6 +8711,7 @@ packages:
dependencies:
'@babel/core': 7.17.8
'@babel/helper-plugin-utils': 7.22.5
+ dev: true
/@babel/plugin-transform-member-expression-literals@7.18.6(@babel/core@7.21.3):
resolution: {integrity: sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA==}
@@ -8754,7 +8734,6 @@ packages:
babel-plugin-dynamic-import-node: 2.3.3
transitivePeerDependencies:
- supports-color
- dev: true
/@babel/plugin-transform-modules-amd@7.16.7(@babel/core@7.12.9):
resolution: {integrity: sha512-KaaEtgBL7FKYwjJ/teH63oAmE3lP34N3kshz8mm4VMAw7U3PxjVwwUmxEFksbgsNUaO3wId9R2AVQYSEGRa2+g==}
@@ -8811,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):
@@ -8822,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==}
@@ -8837,7 +8816,6 @@ packages:
babel-plugin-dynamic-import-node: 2.3.3
transitivePeerDependencies:
- supports-color
- dev: true
/@babel/plugin-transform-modules-commonjs@7.17.7(@babel/core@7.12.9):
resolution: {integrity: sha512-ITPmR2V7MqioMJyrxUo2onHNC3e+MvfFiFIR0RP21d3PtlVb6sfzoxNKiphSZUOM9hEIdzCcZe83ieX3yoqjUA==}
@@ -8895,6 +8873,17 @@ packages:
'@babel/helper-simple-access': 7.20.2
dev: true
+ /@babel/plugin-transform-modules-commonjs@7.22.15(@babel/core@7.12.9):
+ resolution: {integrity: sha512-jWL4eh90w0HQOTKP2MoXXUpVxilxsB2Vl4ji69rSjS3EcZ/v4sBmn+A3NpepuJzBhOaEBbR7udonlHHn5DWidg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@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/plugin-transform-modules-commonjs@7.22.15(@babel/core@7.17.8):
resolution: {integrity: sha512-jWL4eh90w0HQOTKP2MoXXUpVxilxsB2Vl4ji69rSjS3EcZ/v4sBmn+A3NpepuJzBhOaEBbR7udonlHHn5DWidg==}
engines: {node: '>=6.9.0'}
@@ -8905,6 +8894,7 @@ packages:
'@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==}
@@ -8931,7 +8921,6 @@ packages:
babel-plugin-dynamic-import-node: 2.3.3
transitivePeerDependencies:
- supports-color
- dev: true
/@babel/plugin-transform-modules-systemjs@7.17.8(@babel/core@7.12.9):
resolution: {integrity: sha512-39reIkMTUVagzgA5x88zDYXPCMT6lcaRKs1+S9K6NKBPErbgO/w/kP8GlNQTC87b412ZTlmNgr3k2JrWgHH+Bw==}
@@ -8998,7 +8987,7 @@ packages:
'@babel/helper-hoist-variables': 7.18.6
'@babel/helper-module-transforms': 7.22.15(@babel/core@7.17.8)
'@babel/helper-plugin-utils': 7.22.5
- '@babel/helper-validator-identifier': 7.19.1
+ '@babel/helper-validator-identifier': 7.22.15
dev: true
/@babel/plugin-transform-modules-systemjs@7.20.11(@babel/core@7.21.3):
@@ -9011,7 +9000,7 @@ packages:
'@babel/helper-hoist-variables': 7.18.6
'@babel/helper-module-transforms': 7.22.15(@babel/core@7.21.3)
'@babel/helper-plugin-utils': 7.22.5
- '@babel/helper-validator-identifier': 7.19.1
+ '@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==}
@@ -9024,7 +9013,6 @@ packages:
'@babel/helper-plugin-utils': 7.20.2
transitivePeerDependencies:
- supports-color
- dev: true
/@babel/plugin-transform-modules-umd@7.16.7(@babel/core@7.12.9):
resolution: {integrity: sha512-EMh7uolsC8O4xhudF2F6wedbSHm1HHZ0C6aJ7K67zcDNidMzVcxWdGr+htW9n21klm+bOn+Rx4CBsAntZd3rEQ==}
@@ -9099,7 +9087,6 @@ packages:
dependencies:
'@babel/core': 7.12.9
'@babel/helper-create-regexp-features-plugin': 7.19.0(@babel/core@7.12.9)
- dev: true
/@babel/plugin-transform-named-capturing-groups-regex@7.16.8(@babel/core@7.12.9):
resolution: {integrity: sha512-j3Jw+n5PvpmhRR+mrgIh04puSANCk/T/UA3m3P1MjJkhlK906+ApHhDIqBQDdOgL/r1UYpz4GNclTXxyZrYGSw==}
@@ -9140,7 +9127,6 @@ packages:
'@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
- dev: true
/@babel/plugin-transform-named-capturing-groups-regex@7.19.1(@babel/core@7.17.8):
resolution: {integrity: sha512-oWk9l9WItWBQYS4FgXD4Uyy5kq898lvkXpXQxoJEY1RnvPk4R/Dvu2ebXU9q8lP+rlMwUQTFf2Ok6d78ODa0kw==}
@@ -9151,6 +9137,7 @@ packages:
'@babel/core': 7.17.8
'@babel/helper-create-regexp-features-plugin': 7.19.0(@babel/core@7.17.8)
'@babel/helper-plugin-utils': 7.22.5
+ dev: true
/@babel/plugin-transform-named-capturing-groups-regex@7.19.1(@babel/core@7.21.3):
resolution: {integrity: sha512-oWk9l9WItWBQYS4FgXD4Uyy5kq898lvkXpXQxoJEY1RnvPk4R/Dvu2ebXU9q8lP+rlMwUQTFf2Ok6d78ODa0kw==}
@@ -9170,7 +9157,6 @@ packages:
dependencies:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.20.2
- dev: true
/@babel/plugin-transform-new-target@7.16.7(@babel/core@7.12.9):
resolution: {integrity: sha512-xiLDzWNMfKoGOpc6t3U+etCE2yRnn3SM09BXqWPIZOBpL2gvVrBWUKnsJx0K/ADi5F5YC5f8APFfWrz25TdlGg==}
@@ -9242,7 +9228,6 @@ packages:
'@babel/helper-replace-supers': 7.19.1
transitivePeerDependencies:
- supports-color
- dev: true
/@babel/plugin-transform-object-super@7.16.7(@babel/core@7.12.9):
resolution: {integrity: sha512-14J1feiQVWaGvRxj2WjyMuXS2jsBkgB3MdSN5HuC2G5nRspa5RK9COcs82Pwy5BuGcjb+fYaUj94mYcOj7rCvw==}
@@ -9294,7 +9279,6 @@ packages:
'@babel/helper-replace-supers': 7.20.7
transitivePeerDependencies:
- supports-color
- dev: true
/@babel/plugin-transform-object-super@7.18.6(@babel/core@7.17.8):
resolution: {integrity: sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA==}
@@ -9307,6 +9291,7 @@ packages:
'@babel/helper-replace-supers': 7.20.7
transitivePeerDependencies:
- supports-color
+ dev: true
/@babel/plugin-transform-object-super@7.18.6(@babel/core@7.21.3):
resolution: {integrity: sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA==}
@@ -9328,7 +9313,6 @@ packages:
dependencies:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.20.2
- dev: true
/@babel/plugin-transform-parameters@7.16.7(@babel/core@7.12.9):
resolution: {integrity: sha512-AT3MufQ7zZEhU2hwOA11axBnExW0Lszu4RL/tAlUJBuNoRak+wehQW8h6KcXOcgjY42fHtDxswuMhMjFEuv/aw==}
@@ -9368,7 +9352,6 @@ packages:
dependencies:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.22.5
- dev: true
/@babel/plugin-transform-parameters@7.21.3(@babel/core@7.17.8):
resolution: {integrity: sha512-Wxc+TvppQG9xWFYatvCGPvZ6+SIUxQ2ZdiBP+PHYMIjnPXD+uThCshaz4NZOnODAtBjjcVQQ/3OKs9LW28purQ==}
@@ -9378,6 +9361,7 @@ packages:
dependencies:
'@babel/core': 7.17.8
'@babel/helper-plugin-utils': 7.22.5
+ dev: true
/@babel/plugin-transform-parameters@7.21.3(@babel/core@7.21.3):
resolution: {integrity: sha512-Wxc+TvppQG9xWFYatvCGPvZ6+SIUxQ2ZdiBP+PHYMIjnPXD+uThCshaz4NZOnODAtBjjcVQQ/3OKs9LW28purQ==}
@@ -9396,7 +9380,6 @@ packages:
dependencies:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.20.2
- dev: true
/@babel/plugin-transform-property-literals@7.16.7(@babel/core@7.12.9):
resolution: {integrity: sha512-z4FGr9NMGdoIl1RqavCqGG+ZuYjfZ/hkCIeuH6Do7tXmSm0ls11nYVSJqFEUOSJbDab5wC6lRE/w6YjVcr6Hqw==}
@@ -9436,7 +9419,6 @@ packages:
dependencies:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.22.5
- dev: true
/@babel/plugin-transform-property-literals@7.18.6(@babel/core@7.17.8):
resolution: {integrity: sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==}
@@ -9446,6 +9428,7 @@ packages:
dependencies:
'@babel/core': 7.17.8
'@babel/helper-plugin-utils': 7.22.5
+ dev: true
/@babel/plugin-transform-property-literals@7.18.6(@babel/core@7.21.3):
resolution: {integrity: sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==}
@@ -9466,6 +9449,15 @@ packages:
'@babel/helper-plugin-utils': 7.21.5
dev: true
+ /@babel/plugin-transform-react-display-name@7.18.6(@babel/core@7.12.9):
+ resolution: {integrity: sha512-TV4sQ+T013n61uMoygyMRm+xf04Bd5oqFpv2jAEQwSZ8NwQA7zeRPg1LMVg2PWi3zWBz+CLKD+v5bcpZ/BS0aA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.12.9
+ '@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==}
engines: {node: '>=6.9.0'}
@@ -9474,6 +9466,7 @@ packages:
dependencies:
'@babel/core': 7.17.8
'@babel/helper-plugin-utils': 7.22.5
+ dev: true
/@babel/plugin-transform-react-display-name@7.18.6(@babel/core@7.21.3):
resolution: {integrity: sha512-TV4sQ+T013n61uMoygyMRm+xf04Bd5oqFpv2jAEQwSZ8NwQA7zeRPg1LMVg2PWi3zWBz+CLKD+v5bcpZ/BS0aA==}
@@ -9504,13 +9497,13 @@ packages:
'@babel/plugin-transform-react-jsx': 7.22.3(@babel/core@7.21.3)
dev: true
- /@babel/plugin-transform-react-jsx-self@7.18.6(@babel/core@7.17.8):
+ /@babel/plugin-transform-react-jsx-self@7.18.6(@babel/core@7.12.9):
resolution: {integrity: sha512-A0LQGx4+4Jv7u/tWzoJF7alZwnBDQd6cGLh9P+Ttk4dpiL+J5p7NSNv/9tlEFFJDq3kjxOavWmbm6t0Gk+A3Ig==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.8
+ '@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.22.5
/@babel/plugin-transform-react-jsx-self@7.18.6(@babel/core@7.21.3):
@@ -9522,13 +9515,13 @@ packages:
'@babel/core': 7.21.3
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-transform-react-jsx-source@7.18.6(@babel/core@7.17.8):
+ /@babel/plugin-transform-react-jsx-source@7.18.6(@babel/core@7.12.9):
resolution: {integrity: sha512-utZmlASneDfdaMh0m/WausbjUjEdGrQJz0vFK93d7wD3xf5wBtX219+q6IlCNZeguIcxS2f/CvLZrlLSvSHQXw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.8
+ '@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.22.5
/@babel/plugin-transform-react-jsx-source@7.18.6(@babel/core@7.21.3):
@@ -9595,6 +9588,19 @@ packages:
'@babel/plugin-syntax-jsx': 7.21.4(@babel/core@7.21.3)
'@babel/types': 7.22.15
+ /@babel/plugin-transform-react-jsx@7.22.3(@babel/core@7.12.9):
+ resolution: {integrity: sha512-JEulRWG2f04a7L8VWaOngWiK6p+JOSpB+DAtwfJgOaej1qdbNxqtK7MwTBHjUA10NeFcszlFNqCdbRcirzh2uQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.12.9
+ '@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.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):
resolution: {integrity: sha512-JEulRWG2f04a7L8VWaOngWiK6p+JOSpB+DAtwfJgOaej1qdbNxqtK7MwTBHjUA10NeFcszlFNqCdbRcirzh2uQ==}
engines: {node: '>=6.9.0'}
@@ -9607,6 +9613,7 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
'@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.17.8)
'@babel/types': 7.22.15
+ dev: true
/@babel/plugin-transform-react-jsx@7.22.3(@babel/core@7.21.3):
resolution: {integrity: sha512-JEulRWG2f04a7L8VWaOngWiK6p+JOSpB+DAtwfJgOaej1qdbNxqtK7MwTBHjUA10NeFcszlFNqCdbRcirzh2uQ==}
@@ -9615,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):
@@ -9639,7 +9646,7 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.21.3
- '@babel/helper-annotate-as-pure': 7.18.6
+ '@babel/helper-annotate-as-pure': 7.22.5
'@babel/helper-plugin-utils': 7.22.5
dev: true
@@ -9651,7 +9658,6 @@ packages:
dependencies:
'@babel/core': 7.12.9
regenerator-transform: 0.14.5
- dev: true
/@babel/plugin-transform-regenerator@7.16.7(@babel/core@7.12.9):
resolution: {integrity: sha512-mF7jOgGYCkSJagJ6XCujSQg+6xC1M77/03K2oBmVJWoFGNUtnVJO4WHKJk3dnPC8HCcj4xBQP1Egm8DWh3Pb3Q==}
@@ -9723,7 +9729,6 @@ packages:
dependencies:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.20.2
- dev: true
/@babel/plugin-transform-reserved-words@7.16.7(@babel/core@7.12.9):
resolution: {integrity: sha512-KQzzDnZ9hWQBjwi5lpY5v9shmm6IVG0U9pB18zvMu2i4H90xpT4gmqwPYsn8rObiadYe2M0gmgsiOIF5A/2rtg==}
@@ -9818,18 +9823,18 @@ packages:
- supports-color
dev: true
- /@babel/plugin-transform-runtime@7.19.1(@babel/core@7.17.8):
+ /@babel/plugin-transform-runtime@7.19.1(@babel/core@7.12.9):
resolution: {integrity: sha512-2nJjTUFIzBMP/f/miLxEK9vxwW/KUXsdvN4sR//TmuDhe6yU2h57WmIOE12Gng3MDP/xpjUV/ToZRdcf8Yj4fA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.8
+ '@babel/core': 7.12.9
'@babel/helper-module-imports': 7.22.15
'@babel/helper-plugin-utils': 7.22.5
- babel-plugin-polyfill-corejs2: 0.3.3(@babel/core@7.17.8)
- babel-plugin-polyfill-corejs3: 0.6.0(@babel/core@7.17.8)
- babel-plugin-polyfill-regenerator: 0.4.1(@babel/core@7.17.8)
+ babel-plugin-polyfill-corejs2: 0.3.3(@babel/core@7.12.9)
+ babel-plugin-polyfill-corejs3: 0.6.0(@babel/core@7.12.9)
+ babel-plugin-polyfill-regenerator: 0.4.1(@babel/core@7.12.9)
semver: 6.3.1
transitivePeerDependencies:
- supports-color
@@ -9858,7 +9863,6 @@ packages:
dependencies:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.20.2
- dev: true
/@babel/plugin-transform-shorthand-properties@7.16.7(@babel/core@7.12.9):
resolution: {integrity: sha512-hah2+FEnoRoATdIb05IOXf+4GzXYTq75TVhIn1PewihbpyrNWUt2JbudKQOETWw6QpLe+AIUpJ5MVLYTQbeeUg==}
@@ -9898,7 +9902,6 @@ packages:
dependencies:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.22.5
- dev: true
/@babel/plugin-transform-shorthand-properties@7.18.6(@babel/core@7.17.8):
resolution: {integrity: sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw==}
@@ -9908,6 +9911,7 @@ packages:
dependencies:
'@babel/core': 7.17.8
'@babel/helper-plugin-utils': 7.22.5
+ dev: true
/@babel/plugin-transform-shorthand-properties@7.18.6(@babel/core@7.21.3):
resolution: {integrity: sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw==}
@@ -9927,7 +9931,6 @@ packages:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.20.2
'@babel/helper-skip-transparent-expression-wrappers': 7.18.9
- dev: true
/@babel/plugin-transform-spread@7.16.7(@babel/core@7.12.9):
resolution: {integrity: sha512-+pjJpgAngb53L0iaA5gU/1MLXJIfXcYepLgXB3esVRf4fqmj8f2cxM3/FKaHsZms08hFQJkFccEWuIpm429TXg==}
@@ -9971,7 +9974,6 @@ packages:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.22.5
'@babel/helper-skip-transparent-expression-wrappers': 7.22.5
- dev: true
/@babel/plugin-transform-spread@7.19.0(@babel/core@7.17.8):
resolution: {integrity: sha512-RsuMk7j6n+r752EtzyScnWkQyuJdli6LdO5Klv8Yx0OfPVTcQkIUfS8clx5e9yHXzlnhOZF3CbQ8C2uP5j074w==}
@@ -9982,6 +9984,7 @@ packages:
'@babel/core': 7.17.8
'@babel/helper-plugin-utils': 7.22.5
'@babel/helper-skip-transparent-expression-wrappers': 7.22.5
+ dev: true
/@babel/plugin-transform-spread@7.19.0(@babel/core@7.21.3):
resolution: {integrity: sha512-RsuMk7j6n+r752EtzyScnWkQyuJdli6LdO5Klv8Yx0OfPVTcQkIUfS8clx5e9yHXzlnhOZF3CbQ8C2uP5j074w==}
@@ -10001,7 +10004,6 @@ packages:
dependencies:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.20.2
- dev: true
/@babel/plugin-transform-sticky-regex@7.16.7(@babel/core@7.12.9):
resolution: {integrity: sha512-NJa0Bd/87QV5NZZzTuZG5BPJjLYadeSZ9fO6oOUoL4iQx+9EEuw/eEM92SrsT19Yc2jgB1u1hsjqDtH02c3Drw==}
@@ -10041,7 +10043,6 @@ packages:
dependencies:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.22.5
- dev: true
/@babel/plugin-transform-sticky-regex@7.18.6(@babel/core@7.17.8):
resolution: {integrity: sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q==}
@@ -10051,6 +10052,7 @@ packages:
dependencies:
'@babel/core': 7.17.8
'@babel/helper-plugin-utils': 7.22.5
+ dev: true
/@babel/plugin-transform-sticky-regex@7.18.6(@babel/core@7.21.3):
resolution: {integrity: sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q==}
@@ -10069,7 +10071,6 @@ packages:
dependencies:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.20.2
- dev: true
/@babel/plugin-transform-template-literals@7.16.7(@babel/core@7.12.9):
resolution: {integrity: sha512-VwbkDDUeenlIjmfNeDX/V0aWrQH2QiVyJtwymVQSzItFDTpxfyJh3EVaQiS0rIN/CqbLGr0VcGmuwyTdZtdIsA==}
@@ -10109,7 +10110,6 @@ packages:
dependencies:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.22.5
- dev: true
/@babel/plugin-transform-template-literals@7.18.9(@babel/core@7.17.8):
resolution: {integrity: sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA==}
@@ -10119,6 +10119,7 @@ packages:
dependencies:
'@babel/core': 7.17.8
'@babel/helper-plugin-utils': 7.22.5
+ dev: true
/@babel/plugin-transform-template-literals@7.18.9(@babel/core@7.21.3):
resolution: {integrity: sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA==}
@@ -10137,7 +10138,6 @@ packages:
dependencies:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.20.2
- dev: true
/@babel/plugin-transform-typeof-symbol@7.16.7(@babel/core@7.12.9):
resolution: {integrity: sha512-p2rOixCKRJzpg9JB4gjnG4gjWkWa89ZoYUnl9snJ1cWIcTH/hvxZqfO+WjG6T8DRBpctEol5jw1O5rA8gkCokQ==}
@@ -10208,8 +10208,6 @@ packages:
'@babel/helper-create-class-features-plugin': 7.19.0(@babel/core@7.17.8)
'@babel/helper-plugin-utils': 7.21.5
'@babel/plugin-syntax-typescript': 7.16.7(@babel/core@7.17.8)
- transitivePeerDependencies:
- - supports-color
dev: true
/@babel/plugin-transform-typescript@7.16.8(@babel/core@7.21.3):
@@ -10236,17 +10234,17 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
'@babel/plugin-syntax-typescript': 7.22.5(@babel/core@7.21.3)
- /@babel/plugin-transform-typescript@7.22.15(@babel/core@7.17.8):
+ /@babel/plugin-transform-typescript@7.22.15(@babel/core@7.12.9):
resolution: {integrity: sha512-1uirS0TnijxvQLnlv5wQBwOX3E1wCFX7ITv+9pBV2wKEk4K+M5tqDaoNXnTH8tjEIYHLO98MwiTWO04Ggz4XuA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.8
+ '@babel/core': 7.12.9
'@babel/helper-annotate-as-pure': 7.22.5
- '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.17.8)
+ '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.12.9)
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-typescript': 7.22.5(@babel/core@7.17.8)
+ '@babel/plugin-syntax-typescript': 7.22.5(@babel/core@7.12.9)
/@babel/plugin-transform-typescript@7.22.15(@babel/core@7.21.3):
resolution: {integrity: sha512-1uirS0TnijxvQLnlv5wQBwOX3E1wCFX7ITv+9pBV2wKEk4K+M5tqDaoNXnTH8tjEIYHLO98MwiTWO04Ggz4XuA==}
@@ -10268,7 +10266,6 @@ packages:
dependencies:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.20.2
- dev: true
/@babel/plugin-transform-unicode-escapes@7.16.7(@babel/core@7.12.9):
resolution: {integrity: sha512-TAV5IGahIz3yZ9/Hfv35TV2xEm+kaBDaZQCn2S/hG9/CZ0DktxJv9eKfPc7yYCvOYR4JGx1h8C+jcSOvgaaI/Q==}
@@ -10338,7 +10335,6 @@ packages:
'@babel/core': 7.12.9
'@babel/helper-create-regexp-features-plugin': 7.19.0(@babel/core@7.12.9)
'@babel/helper-plugin-utils': 7.20.2
- dev: true
/@babel/plugin-transform-unicode-regex@7.16.7(@babel/core@7.12.9):
resolution: {integrity: sha512-oC5tYYKw56HO75KZVLQ+R/Nl3Hro9kf8iG0hXoaHP7tjAyCpvqBiSNe6vGrZni1Z6MggmUOC6A7VP7AVmw225Q==}
@@ -10382,7 +10378,6 @@ packages:
'@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
- dev: true
/@babel/plugin-transform-unicode-regex@7.18.6(@babel/core@7.17.8):
resolution: {integrity: sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA==}
@@ -10393,6 +10388,7 @@ packages:
'@babel/core': 7.17.8
'@babel/helper-create-regexp-features-plugin': 7.19.0(@babel/core@7.17.8)
'@babel/helper-plugin-utils': 7.22.5
+ dev: true
/@babel/plugin-transform-unicode-regex@7.18.6(@babel/core@7.21.3):
resolution: {integrity: sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA==}
@@ -10486,7 +10482,6 @@ packages:
semver: 5.7.1
transitivePeerDependencies:
- supports-color
- dev: true
/@babel/preset-env@7.16.11(@babel/core@7.12.9):
resolution: {integrity: sha512-qcmWG8R7ZW6WBRPZK//y+E3Cli151B20W1Rv7ln27vuPaXU/8TKms6jFdiJtF7UDTxcrb7mZd88tAeK9LjdT8g==}
@@ -11034,7 +11029,6 @@ packages:
'@babel/plugin-transform-dotall-regex': 7.18.6(@babel/core@7.12.9)
'@babel/types': 7.22.4
esutils: 2.0.3
- dev: true
/@babel/preset-modules@0.1.5(@babel/core@7.17.8):
resolution: {integrity: sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==}
@@ -11101,8 +11095,6 @@ packages:
'@babel/helper-plugin-utils': 7.21.5
'@babel/helper-validator-option': 7.21.0
'@babel/plugin-transform-typescript': 7.16.8(@babel/core@7.17.8)
- transitivePeerDependencies:
- - supports-color
dev: true
/@babel/preset-typescript@7.16.7(@babel/core@7.21.3):
@@ -11259,7 +11251,7 @@ packages:
'@babel/helper-split-export-declaration': 7.18.6
'@babel/parser': 7.21.3
'@babel/types': 7.21.3
- debug: 4.3.4(supports-color@8.1.1)
+ debug: 4.3.4(supports-color@9.2.2)
globals: 11.12.0
transitivePeerDependencies:
- supports-color
@@ -11276,7 +11268,7 @@ packages:
'@babel/helper-split-export-declaration': 7.18.6
'@babel/parser': 7.22.15
'@babel/types': 7.22.15
- debug: 4.3.4(supports-color@8.1.1)
+ debug: 4.3.4(supports-color@9.2.2)
globals: 11.12.0
transitivePeerDependencies:
- supports-color
@@ -11293,7 +11285,7 @@ packages:
'@babel/helper-split-export-declaration': 7.22.6
'@babel/parser': 7.22.15
'@babel/types': 7.22.15
- debug: 4.3.4(supports-color@8.1.1)
+ debug: 4.3.4(supports-color@9.2.2)
globals: 11.12.0
transitivePeerDependencies:
- supports-color
@@ -11304,7 +11296,6 @@ packages:
dependencies:
'@babel/helper-validator-identifier': 7.19.1
to-fast-properties: 2.0.0
- dev: true
/@babel/types@7.17.0:
resolution: {integrity: sha512-TmKSNO4D5rzhL5bjWFcVHHLETzfQ/AmbKpKPOSjlP0WoHZ6L911fgoOKY4Alp/emzG4cHJdyN49zpgkbXFEHHw==}
@@ -11342,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:
@@ -11775,7 +11766,7 @@ packages:
engines: {node: ^10.12.0 || >=12.0.0}
dependencies:
ajv: 6.12.6
- debug: 4.3.4(supports-color@8.1.1)
+ debug: 4.3.4(supports-color@9.2.2)
espree: 7.3.1
globals: 13.19.0
ignore: 4.0.6
@@ -11792,7 +11783,7 @@ packages:
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dependencies:
ajv: 6.12.6
- debug: 4.3.4(supports-color@8.1.1)
+ debug: 4.3.4(supports-color@9.2.2)
espree: 9.4.1
globals: 13.19.0
ignore: 5.2.0
@@ -11953,7 +11944,7 @@ packages:
engines: {node: '>=10.10.0'}
dependencies:
'@humanwhocodes/object-schema': 1.2.1
- debug: 4.3.4(supports-color@8.1.1)
+ debug: 4.3.4(supports-color@9.2.2)
minimatch: 3.1.2
transitivePeerDependencies:
- supports-color
@@ -11963,7 +11954,7 @@ packages:
engines: {node: '>=10.10.0'}
dependencies:
'@humanwhocodes/object-schema': 1.2.1
- debug: 4.3.4(supports-color@8.1.1)
+ debug: 4.3.4(supports-color@9.2.2)
minimatch: 3.1.2
transitivePeerDependencies:
- supports-color
@@ -13170,7 +13161,7 @@ packages:
/@kwsites/file-exists@1.1.1:
resolution: {integrity: sha512-m9/5YGR18lIwxSFDwfE3oA7bWuq9kdau6ugN4H2rJeyhFQZcG9AgSHkQtSD15a8WvTgfz9aikZMrKPHvbpqFiw==}
dependencies:
- debug: 4.3.4(supports-color@8.1.1)
+ debug: 4.3.4(supports-color@9.2.2)
transitivePeerDependencies:
- supports-color
@@ -13529,7 +13520,7 @@ packages:
'@oclif/color': 1.0.1
'@oclif/core': 1.16.1
chalk: 4.1.2
- debug: 4.3.4(supports-color@8.1.1)
+ debug: 4.3.4(supports-color@9.2.2)
fs-extra: 9.1.0
http-call: 5.3.0
load-json-file: 5.3.0
@@ -13547,11 +13538,11 @@ packages:
dependencies:
'@oclif/core': 1.16.1
chalk: 4.1.2
- debug: 4.3.4(supports-color@8.1.1)
+ debug: 4.3.4(supports-color@9.2.2)
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
@@ -14084,7 +14075,7 @@ packages:
react-refresh: 0.11.0
schema-utils: 3.1.1
source-map: 0.7.3
- webpack: 5.76.3(webpack-cli@3.3.12)
+ webpack: 5.76.3(webpack-cli@4.9.2)
dev: true
/@pmmmwh/react-refresh-webpack-plugin@0.5.10(react-refresh@0.14.0)(webpack-dev-server@4.12.0)(webpack@5.70.0):
@@ -15193,7 +15184,7 @@ packages:
transitivePeerDependencies:
- encoding
- /@react-native-community/cli-plugin-metro@9.1.1(@babel/core@7.17.8):
+ /@react-native-community/cli-plugin-metro@9.1.1(@babel/core@7.12.9):
resolution: {integrity: sha512-8CBwEZrbYIeQw69Exg/oW20pV9C6mbYlDz0pxZJ0AYmC20Q+wFFs6sUh5zm28ZUh1L0LxNGmhle/YvMPqA+fMQ==}
dependencies:
'@react-native-community/cli-server-api': 9.1.0
@@ -15202,7 +15193,7 @@ packages:
metro: 0.72.2
metro-config: 0.72.2
metro-core: 0.72.2
- metro-react-native-babel-transformer: 0.72.1(@babel/core@7.17.8)
+ metro-react-native-babel-transformer: 0.72.1(@babel/core@7.12.9)
metro-resolver: 0.72.2
metro-runtime: 0.72.2
readline: 1.3.0
@@ -15251,7 +15242,7 @@ packages:
dependencies:
joi: 17.6.0
- /@react-native-community/cli@9.1.1(@babel/core@7.17.8):
+ /@react-native-community/cli@9.1.1(@babel/core@7.12.9):
resolution: {integrity: sha512-LjXcYahjFzM7TlsGzQLH9bCx3yvBsHEj/5Ytdnk0stdDET329JdXWEh6JiSRjVWPVAoDAV5pRAFmEOEGDNIiAw==}
engines: {node: '>=14'}
hasBin: true
@@ -15261,7 +15252,7 @@ packages:
'@react-native-community/cli-debugger-ui': 9.0.0
'@react-native-community/cli-doctor': 9.1.1
'@react-native-community/cli-hermes': 9.1.0
- '@react-native-community/cli-plugin-metro': 9.1.1(@babel/core@7.17.8)
+ '@react-native-community/cli-plugin-metro': 9.1.1(@babel/core@7.12.9)
'@react-native-community/cli-server-api': 9.1.0
'@react-native-community/cli-tools': 9.1.0
'@react-native-community/cli-types': 9.1.0
@@ -16100,7 +16091,7 @@ packages:
ts-dedent: 2.2.0
typescript: 5.1.6
util-deprecate: 1.0.2
- webpack: 5.76.3(webpack-cli@3.3.12)
+ webpack: 5.76.3(webpack-cli@4.9.2)
webpack-dev-middleware: 4.3.0(webpack@5.76.3)
webpack-hot-middleware: 2.25.1
webpack-virtual-modules: 0.4.3
@@ -16313,7 +16304,7 @@ packages:
typescript: 5.1.6
unfetch: 4.2.0
util-deprecate: 1.0.2
- webpack: 5.76.3(webpack-cli@3.3.12)
+ webpack: 5.76.3(webpack-cli@4.9.2)
dev: true
/@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):
@@ -16579,7 +16570,7 @@ packages:
react: 17.0.2
react-dom: 17.0.2(react@17.0.2)
typescript: 5.1.6
- webpack: 5.76.3(webpack-cli@3.3.12)
+ webpack: 5.76.3(webpack-cli@4.9.2)
transitivePeerDependencies:
- '@storybook/mdx2-csf'
- acorn
@@ -16826,7 +16817,7 @@ packages:
ts-dedent: 2.2.0
typescript: 5.1.6
util-deprecate: 1.0.2
- webpack: 5.76.3(webpack-cli@3.3.12)
+ webpack: 5.76.3(webpack-cli@4.9.2)
webpack-dev-middleware: 4.3.0(webpack@5.76.3)
webpack-virtual-modules: 0.4.3
transitivePeerDependencies:
@@ -16947,7 +16938,7 @@ packages:
typescript: '>= 4.x'
webpack: '>= 4'
dependencies:
- debug: 4.3.4(supports-color@8.1.1)
+ debug: 4.3.4(supports-color@9.2.2)
endent: 2.1.0
find-cache-dir: 3.3.2
flat-cache: 3.0.4
@@ -16955,7 +16946,7 @@ packages:
react-docgen-typescript: 2.2.2(typescript@5.1.6)
tslib: 2.5.0
typescript: 5.1.6
- webpack: 5.76.3(webpack-cli@3.3.12)
+ webpack: 5.76.3(webpack-cli@4.9.2)
transitivePeerDependencies:
- supports-color
dev: true
@@ -17119,7 +17110,7 @@ packages:
ts-dedent: 2.2.0
typescript: 5.1.6
util-deprecate: 1.0.2
- webpack: 5.76.3(webpack-cli@3.3.12)
+ webpack: 5.76.3(webpack-cli@4.9.2)
transitivePeerDependencies:
- '@storybook/mdx2-csf'
- '@swc/core'
@@ -17305,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
@@ -18682,7 +18673,7 @@ packages:
'@typescript-eslint/experimental-utils': 4.33.0(eslint@7.32.0)(typescript@5.1.6)
'@typescript-eslint/parser': 4.33.0(eslint@8.32.0)(typescript@5.1.6)
'@typescript-eslint/scope-manager': 4.33.0
- debug: 4.3.4(supports-color@8.1.1)
+ debug: 4.3.4(supports-color@9.2.2)
eslint: 7.32.0
functional-red-black-tree: 1.0.1
ignore: 5.2.0
@@ -18709,7 +18700,7 @@ packages:
'@typescript-eslint/scope-manager': 5.54.0
'@typescript-eslint/type-utils': 5.54.0(eslint@8.32.0)(typescript@5.1.6)
'@typescript-eslint/utils': 5.54.0(eslint@8.32.0)(typescript@5.1.6)
- debug: 4.3.4(supports-color@8.1.1)
+ debug: 4.3.4(supports-color@9.2.2)
eslint: 8.32.0
grapheme-splitter: 1.0.4
ignore: 5.2.0
@@ -18797,7 +18788,7 @@ packages:
'@typescript-eslint/scope-manager': 4.33.0
'@typescript-eslint/types': 4.33.0
'@typescript-eslint/typescript-estree': 4.33.0(typescript@5.1.6)
- debug: 4.3.4(supports-color@8.1.1)
+ debug: 4.3.4(supports-color@9.2.2)
eslint: 8.32.0
typescript: 5.1.6
transitivePeerDependencies:
@@ -18817,7 +18808,7 @@ packages:
'@typescript-eslint/scope-manager': 5.54.0
'@typescript-eslint/types': 5.54.0
'@typescript-eslint/typescript-estree': 5.54.0(typescript@5.1.6)
- debug: 4.3.4(supports-color@8.1.1)
+ debug: 4.3.4(supports-color@9.2.2)
eslint: 8.32.0
typescript: 5.1.6
transitivePeerDependencies:
@@ -18850,7 +18841,7 @@ packages:
dependencies:
'@typescript-eslint/typescript-estree': 5.54.0(typescript@5.1.6)
'@typescript-eslint/utils': 5.54.0(eslint@8.32.0)(typescript@5.1.6)
- debug: 4.3.4(supports-color@8.1.1)
+ debug: 4.3.4(supports-color@9.2.2)
eslint: 8.32.0
tsutils: 3.21.0(typescript@5.1.6)
typescript: 5.1.6
@@ -18875,7 +18866,7 @@ packages:
typescript:
optional: true
dependencies:
- debug: 4.3.4(supports-color@8.1.1)
+ debug: 4.3.4(supports-color@9.2.2)
eslint-visitor-keys: 1.3.0
glob: 7.2.3
is-glob: 4.0.3
@@ -18898,7 +18889,7 @@ packages:
dependencies:
'@typescript-eslint/types': 4.33.0
'@typescript-eslint/visitor-keys': 4.33.0
- debug: 4.3.4(supports-color@8.1.1)
+ debug: 4.3.4(supports-color@9.2.2)
globby: 11.1.0
is-glob: 4.0.3
semver: 7.5.3
@@ -18919,7 +18910,7 @@ packages:
dependencies:
'@typescript-eslint/types': 5.54.0
'@typescript-eslint/visitor-keys': 5.54.0
- debug: 4.3.4(supports-color@8.1.1)
+ debug: 4.3.4(supports-color@9.2.2)
globby: 11.1.0
is-glob: 4.0.3
semver: 7.5.0
@@ -23632,7 +23623,7 @@ packages:
resolution: {integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==}
engines: {node: '>= 6.0.0'}
dependencies:
- debug: 4.3.4(supports-color@8.1.1)
+ debug: 4.3.4(supports-color@9.2.2)
transitivePeerDependencies:
- supports-color
@@ -23640,7 +23631,7 @@ packages:
resolution: {integrity: sha512-Zn4cw2NEqd+9fiSVWMscnjyQ1a8Yfoc5oBajLeo5w+YBHgDUcEBY2hS4YpTz6iN5f/2zQiktcuM6tS8x1p9dpA==}
engines: {node: '>= 8.0.0'}
dependencies:
- debug: 4.3.4(supports-color@8.1.1)
+ debug: 4.3.4(supports-color@9.2.2)
depd: 1.1.2
humanize-ms: 1.2.1
transitivePeerDependencies:
@@ -24644,7 +24635,7 @@ packages:
loader-utils: 2.0.4
make-dir: 3.1.0
schema-utils: 2.7.1
- webpack: 5.76.3(webpack-cli@3.3.12)
+ webpack: 5.76.3(webpack-cli@4.9.2)
dev: true
/babel-loader@8.3.0(@babel/core@7.17.8)(webpack@4.46.0):
@@ -24905,7 +24896,6 @@ packages:
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- dev: true
/babel-plugin-polyfill-corejs2@0.3.3(@babel/core@7.17.8):
resolution: {integrity: sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q==}
@@ -24918,6 +24908,7 @@ packages:
semver: 6.3.1
transitivePeerDependencies:
- supports-color
+ dev: true
/babel-plugin-polyfill-corejs2@0.3.3(@babel/core@7.21.3):
resolution: {integrity: sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q==}
@@ -25013,7 +25004,6 @@ packages:
core-js-compat: 3.25.5
transitivePeerDependencies:
- supports-color
- dev: true
/babel-plugin-polyfill-corejs3@0.6.0(@babel/core@7.17.8):
resolution: {integrity: sha512-+eHqR6OPcBhJOGgsIar7xoAB1GcSwVUA3XjAd7HJNzOXT4wv6/H7KIdA/Nc60cvUlDbKApmqNvD1B1bzOt4nyA==}
@@ -25025,6 +25015,7 @@ packages:
core-js-compat: 3.25.5
transitivePeerDependencies:
- supports-color
+ dev: true
/babel-plugin-polyfill-corejs3@0.6.0(@babel/core@7.21.3):
resolution: {integrity: sha512-+eHqR6OPcBhJOGgsIar7xoAB1GcSwVUA3XjAd7HJNzOXT4wv6/H7KIdA/Nc60cvUlDbKApmqNvD1B1bzOt4nyA==}
@@ -25079,7 +25070,6 @@ packages:
'@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.12.9)
transitivePeerDependencies:
- supports-color
- dev: true
/babel-plugin-polyfill-regenerator@0.4.1(@babel/core@7.17.8):
resolution: {integrity: sha512-NtQGmyQDXjQqQ+IzRkBVwEOz9lQ4zxAQZgoAYEtU9dJjnl1Oc98qnN7jcp+bE7O7aYzVpavXE3/VKXNzUbh7aw==}
@@ -25090,6 +25080,7 @@ packages:
'@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.17.8)
transitivePeerDependencies:
- supports-color
+ dev: true
/babel-plugin-polyfill-regenerator@0.4.1(@babel/core@7.21.3):
resolution: {integrity: sha512-NtQGmyQDXjQqQ+IzRkBVwEOz9lQ4zxAQZgoAYEtU9dJjnl1Oc98qnN7jcp+bE7O7aYzVpavXE3/VKXNzUbh7aw==}
@@ -25236,38 +25227,38 @@ packages:
'@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.21.3)
'@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.21.3)
- /babel-preset-fbjs@3.4.0(@babel/core@7.17.8):
+ /babel-preset-fbjs@3.4.0(@babel/core@7.12.9):
resolution: {integrity: sha512-9ywCsCvo1ojrw0b+XYk7aFvTH6D9064t0RIL1rtMf3nsa02Xw41MS7sZw216Im35xj/UY0PDBQsa1brUDDF1Ow==}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.17.8
- '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.17.8)
- '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.17.8)
- '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.17.8)
- '@babel/plugin-syntax-flow': 7.16.7(@babel/core@7.17.8)
- '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.17.8)
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.17.8)
- '@babel/plugin-transform-arrow-functions': 7.18.6(@babel/core@7.17.8)
- '@babel/plugin-transform-block-scoped-functions': 7.18.6(@babel/core@7.17.8)
- '@babel/plugin-transform-block-scoping': 7.21.0(@babel/core@7.17.8)
- '@babel/plugin-transform-classes': 7.21.0(@babel/core@7.17.8)
- '@babel/plugin-transform-computed-properties': 7.18.9(@babel/core@7.17.8)
- '@babel/plugin-transform-destructuring': 7.21.3(@babel/core@7.17.8)
- '@babel/plugin-transform-flow-strip-types': 7.16.7(@babel/core@7.17.8)
- '@babel/plugin-transform-for-of': 7.18.8(@babel/core@7.17.8)
- '@babel/plugin-transform-function-name': 7.18.9(@babel/core@7.17.8)
- '@babel/plugin-transform-literals': 7.18.9(@babel/core@7.17.8)
- '@babel/plugin-transform-member-expression-literals': 7.18.6(@babel/core@7.17.8)
- '@babel/plugin-transform-modules-commonjs': 7.22.15(@babel/core@7.17.8)
- '@babel/plugin-transform-object-super': 7.18.6(@babel/core@7.17.8)
- '@babel/plugin-transform-parameters': 7.21.3(@babel/core@7.17.8)
- '@babel/plugin-transform-property-literals': 7.18.6(@babel/core@7.17.8)
- '@babel/plugin-transform-react-display-name': 7.18.6(@babel/core@7.17.8)
- '@babel/plugin-transform-react-jsx': 7.22.3(@babel/core@7.17.8)
- '@babel/plugin-transform-shorthand-properties': 7.18.6(@babel/core@7.17.8)
- '@babel/plugin-transform-spread': 7.19.0(@babel/core@7.17.8)
- '@babel/plugin-transform-template-literals': 7.18.9(@babel/core@7.17.8)
+ '@babel/core': 7.12.9
+ '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.12.9)
+ '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.12.9)
+ '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.12.9)
+ '@babel/plugin-syntax-flow': 7.16.7(@babel/core@7.12.9)
+ '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.12.9)
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.12.9)
+ '@babel/plugin-transform-arrow-functions': 7.18.6(@babel/core@7.12.9)
+ '@babel/plugin-transform-block-scoped-functions': 7.18.6(@babel/core@7.12.9)
+ '@babel/plugin-transform-block-scoping': 7.21.0(@babel/core@7.12.9)
+ '@babel/plugin-transform-classes': 7.21.0(@babel/core@7.12.9)
+ '@babel/plugin-transform-computed-properties': 7.18.9(@babel/core@7.12.9)
+ '@babel/plugin-transform-destructuring': 7.21.3(@babel/core@7.12.9)
+ '@babel/plugin-transform-flow-strip-types': 7.16.7(@babel/core@7.12.9)
+ '@babel/plugin-transform-for-of': 7.18.8(@babel/core@7.12.9)
+ '@babel/plugin-transform-function-name': 7.18.9(@babel/core@7.12.9)
+ '@babel/plugin-transform-literals': 7.18.9(@babel/core@7.12.9)
+ '@babel/plugin-transform-member-expression-literals': 7.18.6(@babel/core@7.12.9)
+ '@babel/plugin-transform-modules-commonjs': 7.22.15(@babel/core@7.12.9)
+ '@babel/plugin-transform-object-super': 7.18.6(@babel/core@7.12.9)
+ '@babel/plugin-transform-parameters': 7.21.3(@babel/core@7.12.9)
+ '@babel/plugin-transform-property-literals': 7.18.6(@babel/core@7.12.9)
+ '@babel/plugin-transform-react-display-name': 7.18.6(@babel/core@7.12.9)
+ '@babel/plugin-transform-react-jsx': 7.22.3(@babel/core@7.12.9)
+ '@babel/plugin-transform-shorthand-properties': 7.18.6(@babel/core@7.12.9)
+ '@babel/plugin-transform-spread': 7.19.0(@babel/core@7.12.9)
+ '@babel/plugin-transform-template-literals': 7.18.9(@babel/core@7.12.9)
babel-plugin-syntax-trailing-function-commas: 7.0.0-beta.0
transitivePeerDependencies:
- supports-color
@@ -26214,7 +26205,7 @@ packages:
resolution: {integrity: sha512-FwZ/wxjqe+5RgzF2SRsPSWsVB9+McAVRWW0tRkmbh7fBjrf3HFZZbcr8vr61p1K+NBaAPv57DRjxgIyfbHmd7g==}
engines: {node: '>=7.6.0'}
dependencies:
- debug: 4.3.4(supports-color@8.1.1)
+ debug: 4.3.4(supports-color@9.2.2)
puppeteer-core: 1.12.2
transitivePeerDependencies:
- bufferutil
@@ -27251,7 +27242,7 @@ packages:
normalize-path: 3.0.0
schema-utils: 4.0.0
serialize-javascript: 6.0.0
- webpack: 5.76.3(webpack-cli@3.3.12)
+ webpack: 5.76.3(webpack-cli@4.9.2)
dev: true
/copy-webpack-plugin@9.1.0(webpack@5.70.0):
@@ -27289,7 +27280,6 @@ packages:
dependencies:
browserslist: 4.19.3
semver: 7.0.0
- dev: true
/core-js-compat@3.21.1:
resolution: {integrity: sha512-gbgX5AUvMb8gwxC7FLVWYT7Kkgu/y7+h/h1X43yJkNqhlK2fuYyQimqvKGNZFAY6CKii/GFKJ2cp/1/42TN36g==}
@@ -27630,7 +27620,7 @@ packages:
postcss-value-parser: 4.2.0
schema-utils: 3.1.1
semver: 7.5.3
- webpack: 5.76.3(webpack-cli@3.3.12)
+ webpack: 5.76.3(webpack-cli@4.9.2)
dev: true
/css-loader@6.7.1(webpack@5.70.0):
@@ -27664,7 +27654,7 @@ packages:
postcss-modules-values: 4.0.0(postcss@8.4.21)
postcss-value-parser: 4.2.0
semver: 7.3.8
- webpack: 5.76.3(webpack-cli@3.3.12)
+ webpack: 5.76.3(webpack-cli@4.9.2)
dev: true
/css-select-base-adapter@0.1.1:
@@ -28158,7 +28148,6 @@ packages:
dependencies:
ms: 2.1.2
supports-color: 9.2.2
- dev: true
/debuglog@1.0.1:
resolution: {integrity: sha512-syBZ+rnAK3EgMsH2aYEOLUW7mZSY9Gb+0wUMCFsZvcmiz+HigA0LOcq/HoQqVuGG+EKykunc7QG2bzrponfaSw==}
@@ -29268,7 +29257,7 @@ packages:
eslint: '*'
eslint-plugin-import: '*'
dependencies:
- debug: 4.3.4(supports-color@8.1.1)
+ debug: 4.3.4(supports-color@9.2.2)
eslint: 8.32.0
eslint-plugin-import: 2.25.4(@typescript-eslint/parser@5.54.0)(eslint-import-resolver-typescript@2.5.0)(eslint-import-resolver-webpack@0.13.2)(eslint@8.32.0)
glob: 7.2.3
@@ -29539,7 +29528,7 @@ packages:
eslint: ^5.0.0 || ^6.0.0
dependencies:
comment-parser: 0.7.6
- debug: 4.3.4(supports-color@8.1.1)
+ debug: 4.3.4(supports-color@9.2.2)
eslint: 8.32.0
jsdoctypeparser: 6.1.0
lodash: 4.17.21
@@ -29558,7 +29547,7 @@ packages:
eslint: ^6.0.0 || ^7.0.0
dependencies:
comment-parser: 0.7.6
- debug: 4.3.4(supports-color@8.1.1)
+ debug: 4.3.4(supports-color@9.2.2)
eslint: 7.32.0
jsdoctypeparser: 9.0.0
lodash: 4.17.21
@@ -29577,7 +29566,7 @@ packages:
dependencies:
'@es-joy/jsdoccomment': 0.10.8
comment-parser: 1.2.4
- debug: 4.3.4(supports-color@8.1.1)
+ debug: 4.3.4(supports-color@9.2.2)
eslint: 7.32.0
esquery: 1.4.0
jsdoc-type-pratt-parser: 1.2.0
@@ -29597,7 +29586,7 @@ packages:
dependencies:
'@es-joy/jsdoccomment': 0.36.1
comment-parser: 1.3.1
- debug: 4.3.4(supports-color@8.1.1)
+ debug: 4.3.4(supports-color@9.2.2)
escape-string-regexp: 4.0.0
eslint: 8.32.0
esquery: 1.4.0
@@ -29895,11 +29884,11 @@ 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
- debug: 4.3.4(supports-color@8.1.1)
+ debug: 4.3.4(supports-color@9.2.2)
doctrine: 3.0.0
eslint-scope: 4.0.3
eslint-utils: 1.4.3
@@ -29944,7 +29933,7 @@ packages:
ajv: 6.12.6
chalk: 2.4.2
cross-spawn: 6.0.5
- debug: 4.3.4(supports-color@8.1.1)
+ debug: 4.3.4(supports-color@9.2.2)
doctrine: 3.0.0
eslint-scope: 5.1.1
eslint-utils: 1.4.3
@@ -29992,7 +29981,7 @@ packages:
ajv: 6.12.6
chalk: 4.1.2
cross-spawn: 7.0.3
- debug: 4.3.4(supports-color@8.1.1)
+ debug: 4.3.4(supports-color@9.2.2)
doctrine: 3.0.0
enquirer: 2.3.6
escape-string-regexp: 4.0.0
@@ -30042,7 +30031,7 @@ packages:
ajv: 6.12.6
chalk: 4.1.2
cross-spawn: 7.0.3
- debug: 4.3.4(supports-color@8.1.1)
+ debug: 4.3.4(supports-color@9.2.2)
doctrine: 3.0.0
escape-string-regexp: 4.0.0
eslint-scope: 7.1.1
@@ -30487,7 +30476,7 @@ packages:
engines: {node: '>= 10.17.0'}
hasBin: true
dependencies:
- debug: 4.3.4(supports-color@8.1.1)
+ debug: 4.3.4(supports-color@9.2.2)
get-stream: 5.2.0
yauzl: 2.10.0
optionalDependencies:
@@ -30836,7 +30825,7 @@ packages:
dependencies:
chalk: 4.1.2
commander: 5.1.0
- debug: 4.3.4(supports-color@8.1.1)
+ debug: 4.3.4(supports-color@9.2.2)
transitivePeerDependencies:
- supports-color
@@ -31157,7 +31146,7 @@ packages:
semver: 7.5.3
tapable: 1.1.3
typescript: 5.1.6
- webpack: 5.76.3(webpack-cli@3.3.12)
+ webpack: 5.76.3(webpack-cli@4.9.2)
dev: true
/fork-ts-checker-webpack-plugin@8.0.0(typescript@5.1.6)(webpack@5.70.0):
@@ -32708,7 +32697,7 @@ packages:
lodash: 4.17.21
pretty-error: 4.0.0
tapable: 2.2.1
- webpack: 5.76.3(webpack-cli@3.3.12)
+ webpack: 5.76.3(webpack-cli@4.9.2)
transitivePeerDependencies:
- acorn
dev: true
@@ -32740,7 +32729,7 @@ packages:
engines: {node: '>=8.0.0'}
dependencies:
content-type: 1.0.4
- debug: 4.3.4(supports-color@8.1.1)
+ debug: 4.3.4(supports-color@9.2.2)
is-retry-allowed: 1.2.0
is-stream: 2.0.1
parse-json: 4.0.0
@@ -32779,7 +32768,7 @@ packages:
dependencies:
'@tootallnate/once': 1.1.2
agent-base: 6.0.2
- debug: 4.3.4(supports-color@8.1.1)
+ debug: 4.3.4(supports-color@9.2.2)
transitivePeerDependencies:
- supports-color
@@ -32789,7 +32778,7 @@ packages:
dependencies:
'@tootallnate/once': 2.0.0
agent-base: 6.0.2
- debug: 4.3.4(supports-color@8.1.1)
+ debug: 4.3.4(supports-color@9.2.2)
transitivePeerDependencies:
- supports-color
dev: true
@@ -32860,7 +32849,7 @@ packages:
engines: {node: '>= 6.0.0'}
dependencies:
agent-base: 5.1.1
- debug: 4.3.4(supports-color@8.1.1)
+ debug: 4.3.4(supports-color@9.2.2)
transitivePeerDependencies:
- supports-color
@@ -32869,7 +32858,7 @@ packages:
engines: {node: '>= 6'}
dependencies:
agent-base: 6.0.2
- debug: 4.3.4(supports-color@8.1.1)
+ debug: 4.3.4(supports-color@9.2.2)
transitivePeerDependencies:
- supports-color
dev: true
@@ -32879,7 +32868,7 @@ packages:
engines: {node: '>= 6'}
dependencies:
agent-base: 6.0.2
- debug: 4.3.4(supports-color@8.1.1)
+ debug: 4.3.4(supports-color@9.2.2)
transitivePeerDependencies:
- supports-color
@@ -32912,7 +32901,7 @@ packages:
dependencies:
'@tannin/sprintf': 1.2.0
'@wordpress/compose': 3.25.3(react@17.0.2)
- debug: 4.3.4(supports-color@8.1.1)
+ debug: 4.3.4(supports-color@9.2.2)
events: 3.3.0
hash.js: 1.1.7
interpolate-components: 1.1.1
@@ -32933,7 +32922,7 @@ packages:
'@babel/runtime': 7.21.0
'@tannin/sprintf': 1.2.0
'@wordpress/compose': 3.25.3(react@17.0.2)
- debug: 4.3.4(supports-color@8.1.1)
+ debug: 4.3.4(supports-color@9.2.2)
events: 3.3.0
hash.js: 1.1.7
interpolate-components: 1.1.1
@@ -32955,7 +32944,7 @@ packages:
'@babel/runtime': 7.21.0
'@tannin/sprintf': 1.2.0
'@wordpress/compose': 5.4.1(react@17.0.2)
- debug: 4.3.4(supports-color@8.1.1)
+ debug: 4.3.4(supports-color@9.2.2)
events: 3.3.0
hash.js: 1.1.7
lodash: 4.17.21
@@ -34023,7 +34012,7 @@ packages:
resolution: {integrity: sha512-R47KzMtDJH6X4/YW9XTx+jrLnZnscW4VpNN+1PViSYTejLVPWv7oov+Duf8YQSPyVRUvueQqz1TcsC6mooZTXw==}
engines: {node: '>=6'}
dependencies:
- debug: 4.3.4(supports-color@8.1.1)
+ debug: 4.3.4(supports-color@9.2.2)
istanbul-lib-coverage: 2.0.5
make-dir: 2.1.0
rimraf: 2.7.1
@@ -34036,7 +34025,7 @@ packages:
resolution: {integrity: sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==}
engines: {node: '>=10'}
dependencies:
- debug: 4.3.4(supports-color@8.1.1)
+ debug: 4.3.4(supports-color@9.2.2)
istanbul-lib-coverage: 3.2.0
source-map: 0.6.1
transitivePeerDependencies:
@@ -35290,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}
@@ -35907,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
@@ -36773,6 +36754,35 @@ packages:
/jsc-android@250230.2.1:
resolution: {integrity: sha512-KmxeBlRjwoqCnBBKGsihFtvsBHyUFlBxJPK4FzeYcIuBfdjv6jFys44JITAgSTbQD+vIdwMEfyZklsuQX0yI1Q==}
+ /jscodeshift@0.13.1(@babel/preset-env@7.12.7):
+ resolution: {integrity: sha512-lGyiEbGOvmMRKgWk4vf+lUrCWO/8YR8sUR3FKF1Cq5fovjZDlIcw3Hu5ppLHAnEXshVffvaM0eyuY/AbOeYpnQ==}
+ hasBin: true
+ peerDependencies:
+ '@babel/preset-env': ^7.1.6
+ dependencies:
+ '@babel/core': 7.21.3
+ '@babel/parser': 7.17.8
+ '@babel/plugin-proposal-class-properties': 7.16.7(@babel/core@7.21.3)
+ '@babel/plugin-proposal-nullish-coalescing-operator': 7.16.7(@babel/core@7.21.3)
+ '@babel/plugin-proposal-optional-chaining': 7.16.7(@babel/core@7.21.3)
+ '@babel/plugin-transform-modules-commonjs': 7.17.7(@babel/core@7.21.3)
+ '@babel/preset-env': 7.12.7(@babel/core@7.12.9)
+ '@babel/preset-flow': 7.16.7(@babel/core@7.21.3)
+ '@babel/preset-typescript': 7.16.7(@babel/core@7.21.3)
+ '@babel/register': 7.18.9(@babel/core@7.21.3)
+ babel-core: 7.0.0-bridge.0(@babel/core@7.21.3)
+ chalk: 4.1.2
+ flow-parser: 0.121.0
+ graceful-fs: 4.2.9
+ micromatch: 3.1.10(supports-color@6.1.0)
+ neo-async: 2.6.2
+ node-dir: 0.1.17
+ recast: 0.20.5
+ temp: 0.8.4
+ write-file-atomic: 2.4.1
+ transitivePeerDependencies:
+ - supports-color
+
/jscodeshift@0.13.1(@babel/preset-env@7.20.2):
resolution: {integrity: sha512-lGyiEbGOvmMRKgWk4vf+lUrCWO/8YR8sUR3FKF1Cq5fovjZDlIcw3Hu5ppLHAnEXshVffvaM0eyuY/AbOeYpnQ==}
hasBin: true
@@ -36801,6 +36811,7 @@ packages:
write-file-atomic: 2.4.1
transitivePeerDependencies:
- supports-color
+ dev: true
/jsdoc-type-pratt-parser@1.1.1:
resolution: {integrity: sha512-uelRmpghNwPBuZScwgBG/OzodaFk5RbO5xaivBdsAY70icWfShwZ7PCMO0x1zSkOa8T1FzHThmrdoyg/0AwV5g==}
@@ -38393,48 +38404,48 @@ packages:
dependencies:
uglify-es: 3.3.9
- /metro-react-native-babel-preset@0.72.1(@babel/core@7.17.8):
+ /metro-react-native-babel-preset@0.72.1(@babel/core@7.12.9):
resolution: {integrity: sha512-DlvMw2tFrCqD9OXBoN11fPM09kHC22FZpnkTmG4Pr4kecV+aDmEGxwakjUcjELrX1JCXz2MLPvqeJkbiP1f5CA==}
peerDependencies:
'@babel/core': '*'
dependencies:
- '@babel/core': 7.17.8
- '@babel/plugin-proposal-async-generator-functions': 7.20.7(@babel/core@7.17.8)
- '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.17.8)
- '@babel/plugin-proposal-export-default-from': 7.16.7(@babel/core@7.17.8)
- '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.17.8)
- '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.17.8)
- '@babel/plugin-proposal-optional-catch-binding': 7.18.6(@babel/core@7.17.8)
- '@babel/plugin-proposal-optional-chaining': 7.18.9(@babel/core@7.17.8)
- '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.17.8)
- '@babel/plugin-syntax-export-default-from': 7.16.7(@babel/core@7.17.8)
- '@babel/plugin-syntax-flow': 7.16.7(@babel/core@7.17.8)
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.17.8)
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.17.8)
- '@babel/plugin-transform-arrow-functions': 7.18.6(@babel/core@7.17.8)
- '@babel/plugin-transform-async-to-generator': 7.18.6(@babel/core@7.17.8)
- '@babel/plugin-transform-block-scoping': 7.21.0(@babel/core@7.17.8)
- '@babel/plugin-transform-classes': 7.21.0(@babel/core@7.17.8)
- '@babel/plugin-transform-computed-properties': 7.18.9(@babel/core@7.17.8)
- '@babel/plugin-transform-destructuring': 7.21.3(@babel/core@7.17.8)
- '@babel/plugin-transform-exponentiation-operator': 7.18.6(@babel/core@7.17.8)
- '@babel/plugin-transform-flow-strip-types': 7.16.7(@babel/core@7.17.8)
- '@babel/plugin-transform-function-name': 7.18.9(@babel/core@7.17.8)
- '@babel/plugin-transform-literals': 7.18.9(@babel/core@7.17.8)
- '@babel/plugin-transform-modules-commonjs': 7.22.15(@babel/core@7.17.8)
- '@babel/plugin-transform-named-capturing-groups-regex': 7.19.1(@babel/core@7.17.8)
- '@babel/plugin-transform-parameters': 7.21.3(@babel/core@7.17.8)
- '@babel/plugin-transform-react-display-name': 7.18.6(@babel/core@7.17.8)
- '@babel/plugin-transform-react-jsx': 7.22.3(@babel/core@7.17.8)
- '@babel/plugin-transform-react-jsx-self': 7.18.6(@babel/core@7.17.8)
- '@babel/plugin-transform-react-jsx-source': 7.18.6(@babel/core@7.17.8)
- '@babel/plugin-transform-runtime': 7.19.1(@babel/core@7.17.8)
- '@babel/plugin-transform-shorthand-properties': 7.18.6(@babel/core@7.17.8)
- '@babel/plugin-transform-spread': 7.19.0(@babel/core@7.17.8)
- '@babel/plugin-transform-sticky-regex': 7.18.6(@babel/core@7.17.8)
- '@babel/plugin-transform-template-literals': 7.18.9(@babel/core@7.17.8)
- '@babel/plugin-transform-typescript': 7.22.15(@babel/core@7.17.8)
- '@babel/plugin-transform-unicode-regex': 7.18.6(@babel/core@7.17.8)
+ '@babel/core': 7.12.9
+ '@babel/plugin-proposal-async-generator-functions': 7.20.7(@babel/core@7.12.9)
+ '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.12.9)
+ '@babel/plugin-proposal-export-default-from': 7.16.7(@babel/core@7.12.9)
+ '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.12.9)
+ '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.12.9)
+ '@babel/plugin-proposal-optional-catch-binding': 7.18.6(@babel/core@7.12.9)
+ '@babel/plugin-proposal-optional-chaining': 7.18.9(@babel/core@7.12.9)
+ '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.12.9)
+ '@babel/plugin-syntax-export-default-from': 7.16.7(@babel/core@7.12.9)
+ '@babel/plugin-syntax-flow': 7.16.7(@babel/core@7.12.9)
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.12.9)
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.12.9)
+ '@babel/plugin-transform-arrow-functions': 7.18.6(@babel/core@7.12.9)
+ '@babel/plugin-transform-async-to-generator': 7.18.6(@babel/core@7.12.9)
+ '@babel/plugin-transform-block-scoping': 7.21.0(@babel/core@7.12.9)
+ '@babel/plugin-transform-classes': 7.21.0(@babel/core@7.12.9)
+ '@babel/plugin-transform-computed-properties': 7.18.9(@babel/core@7.12.9)
+ '@babel/plugin-transform-destructuring': 7.21.3(@babel/core@7.12.9)
+ '@babel/plugin-transform-exponentiation-operator': 7.18.6(@babel/core@7.12.9)
+ '@babel/plugin-transform-flow-strip-types': 7.16.7(@babel/core@7.12.9)
+ '@babel/plugin-transform-function-name': 7.18.9(@babel/core@7.12.9)
+ '@babel/plugin-transform-literals': 7.18.9(@babel/core@7.12.9)
+ '@babel/plugin-transform-modules-commonjs': 7.22.15(@babel/core@7.12.9)
+ '@babel/plugin-transform-named-capturing-groups-regex': 7.19.1(@babel/core@7.12.9)
+ '@babel/plugin-transform-parameters': 7.21.3(@babel/core@7.12.9)
+ '@babel/plugin-transform-react-display-name': 7.18.6(@babel/core@7.12.9)
+ '@babel/plugin-transform-react-jsx': 7.22.3(@babel/core@7.12.9)
+ '@babel/plugin-transform-react-jsx-self': 7.18.6(@babel/core@7.12.9)
+ '@babel/plugin-transform-react-jsx-source': 7.18.6(@babel/core@7.12.9)
+ '@babel/plugin-transform-runtime': 7.19.1(@babel/core@7.12.9)
+ '@babel/plugin-transform-shorthand-properties': 7.18.6(@babel/core@7.12.9)
+ '@babel/plugin-transform-spread': 7.19.0(@babel/core@7.12.9)
+ '@babel/plugin-transform-sticky-regex': 7.18.6(@babel/core@7.12.9)
+ '@babel/plugin-transform-template-literals': 7.18.9(@babel/core@7.12.9)
+ '@babel/plugin-transform-typescript': 7.22.15(@babel/core@7.12.9)
+ '@babel/plugin-transform-unicode-regex': 7.18.6(@babel/core@7.12.9)
'@babel/template': 7.22.15
react-refresh: 0.4.3
transitivePeerDependencies:
@@ -38487,16 +38498,16 @@ packages:
transitivePeerDependencies:
- supports-color
- /metro-react-native-babel-transformer@0.72.1(@babel/core@7.17.8):
+ /metro-react-native-babel-transformer@0.72.1(@babel/core@7.12.9):
resolution: {integrity: sha512-hMnN0MOgVloAk94YuXN7sLeDaZ51Y6xIcJXxIU1s/KaygAGXk6o7VAdwf2MY/IV1SIct5lkW4Gn71u/9/EvfXA==}
peerDependencies:
'@babel/core': '*'
dependencies:
- '@babel/core': 7.17.8
- babel-preset-fbjs: 3.4.0(@babel/core@7.17.8)
+ '@babel/core': 7.12.9
+ babel-preset-fbjs: 3.4.0(@babel/core@7.12.9)
hermes-parser: 0.8.0
metro-babel-transformer: 0.72.1
- metro-react-native-babel-preset: 0.72.1(@babel/core@7.17.8)
+ metro-react-native-babel-preset: 0.72.1(@babel/core@7.12.9)
metro-source-map: 0.72.1
nullthrows: 1.1.1
transitivePeerDependencies:
@@ -38675,7 +38686,7 @@ packages:
/micromark@2.11.4:
resolution: {integrity: sha512-+WoovN/ppKolQOFIAajxi7Lu9kInbPxFuTBVEavFcL8eAfVstoc5MocPmqBeAdBOJV00uaVjegzH4+MA0DN/uA==}
dependencies:
- debug: 4.3.4(supports-color@8.1.1)
+ debug: 4.3.4(supports-color@9.2.2)
parse-entities: 2.0.0
transitivePeerDependencies:
- supports-color
@@ -39208,7 +39219,7 @@ packages:
dependencies:
carlo: 0.9.46
chokidar: 3.5.2
- debug: 4.3.4(supports-color@8.1.1)
+ debug: 4.3.4(supports-color@9.2.2)
isbinaryfile: 3.0.3
mime: 2.5.2
opn: 5.5.0
@@ -39478,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
@@ -39561,7 +39572,7 @@ packages:
ajv-errors: 1.0.1(ajv@6.12.6)
chalk: 4.1.2
cosmiconfig: 7.0.1
- debug: 4.3.4(supports-color@8.1.1)
+ debug: 4.3.4(supports-color@9.2.2)
globby: 11.1.0
ignore: 5.2.0
is-plain-obj: 3.0.0
@@ -39841,7 +39852,7 @@ packages:
'@oclif/plugin-warn-if-update-available': 2.0.4
aws-sdk: 2.1215.0
concurrently: 7.0.0
- debug: 4.3.4(supports-color@8.1.1)
+ debug: 4.3.4(supports-color@9.2.2)
find-yarn-workspace-root: 2.0.0
fs-extra: 8.1.0
github-slugger: 1.4.0
@@ -40171,7 +40182,7 @@ packages:
resolution: {integrity: sha512-UJKdSzgd3KOnXXAtqN5+/eeHcvTn1hBkesEmElVgvO/NAYcxAvmjzIGmnNd3Tb/gRAvMBdNRFD4qAWdHxY6QXg==}
engines: {node: '>=12.10.0'}
dependencies:
- debug: 4.3.4(supports-color@8.1.1)
+ debug: 4.3.4(supports-color@9.2.2)
p-queue: 6.6.2
transitivePeerDependencies:
- supports-color
@@ -40549,7 +40560,7 @@ packages:
dependencies:
'@babel/runtime': 7.21.0
crc32: 0.2.2
- debug: 4.3.4(supports-color@8.1.1)
+ debug: 4.3.4(supports-color@9.2.2)
seed-random: 2.2.0
transitivePeerDependencies:
- supports-color
@@ -40946,7 +40957,7 @@ packages:
postcss: 8.4.21
schema-utils: 3.1.1
semver: 7.5.3
- webpack: 5.76.3(webpack-cli@3.3.12)
+ webpack: 5.76.3(webpack-cli@4.9.2)
dev: true
/postcss-loader@6.2.1(postcss@8.4.21)(webpack@5.76.3):
@@ -41941,7 +41952,7 @@ packages:
engines: {node: '>=6.4.0'}
requiresBuild: true
dependencies:
- debug: 4.3.4(supports-color@8.1.1)
+ debug: 4.3.4(supports-color@9.2.2)
extract-zip: 1.7.0
https-proxy-agent: 2.2.4
mime: 2.6.0
@@ -41982,7 +41993,7 @@ packages:
engines: {node: '>=10.18.1'}
dependencies:
cross-fetch: 3.1.5
- debug: 4.3.4(supports-color@8.1.1)
+ debug: 4.3.4(supports-color@9.2.2)
devtools-protocol: 0.0.981744
extract-zip: 2.0.1
https-proxy-agent: 5.0.1
@@ -42011,7 +42022,7 @@ packages:
dependencies:
chromium-bidi: 0.4.4(devtools-protocol@0.0.1094867)
cross-fetch: 3.1.5
- debug: 4.3.4(supports-color@8.1.1)
+ debug: 4.3.4(supports-color@9.2.2)
devtools-protocol: 0.0.1094867
extract-zip: 2.0.1
https-proxy-agent: 5.0.1
@@ -42032,7 +42043,7 @@ packages:
engines: {node: '>=10.18.1'}
dependencies:
'@types/mime-types': 2.1.1
- debug: 4.3.4(supports-color@8.1.1)
+ debug: 4.3.4(supports-color@9.2.2)
extract-zip: 2.0.1
https-proxy-agent: 4.0.0
mime: 2.6.0
@@ -42056,7 +42067,7 @@ packages:
requiresBuild: true
dependencies:
'@types/mime-types': 2.1.1
- debug: 4.3.4(supports-color@8.1.1)
+ debug: 4.3.4(supports-color@9.2.2)
extract-zip: 1.7.0
https-proxy-agent: 4.0.0
mime: 2.6.0
@@ -42082,7 +42093,7 @@ packages:
engines: {node: '>=8.0.0'}
dependencies:
chalk: 2.4.2
- debug: 4.3.4(supports-color@8.1.1)
+ debug: 4.3.4(supports-color@9.2.2)
execa: 0.10.0
fs-extra: 6.0.1
get-stream: 5.2.0
@@ -42627,12 +42638,12 @@ packages:
moment: 2.29.4
dev: false
- /react-native-codegen@0.70.4(@babel/preset-env@7.20.2):
+ /react-native-codegen@0.70.4(@babel/preset-env@7.12.7):
resolution: {integrity: sha512-bPyd5jm840omfx24VRyMP+KPzAefpRDwE18w5ywMWHCWZBSqLn1qI9WgBPnavlIrjTEuzxznWQNcaA26lw8AMQ==}
dependencies:
'@babel/parser': 7.22.15
flow-parser: 0.121.0
- jscodeshift: 0.13.1(@babel/preset-env@7.20.2)
+ jscodeshift: 0.13.1(@babel/preset-env@7.12.7)
nullthrows: 1.1.1
transitivePeerDependencies:
- '@babel/preset-env'
@@ -42646,10 +42657,10 @@ packages:
peerDependencies:
react-native: '*'
dependencies:
- react-native: 0.70.0(@babel/core@7.17.8)(@babel/preset-env@7.20.2)(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.17.8)(@babel/preset-env@7.20.2)(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
@@ -42657,7 +42668,7 @@ packages:
react: 18.1.0
dependencies:
'@jest/create-cache-key-function': 27.5.1
- '@react-native-community/cli': 9.1.1(@babel/core@7.17.8)
+ '@react-native-community/cli': 9.1.1(@babel/core@7.12.9)
'@react-native-community/cli-platform-android': 9.1.0
'@react-native-community/cli-platform-ios': 9.1.0
'@react-native/assets': 1.0.0
@@ -42670,23 +42681,23 @@ packages:
invariant: 2.2.4
jsc-android: 250230.2.1
memoize-one: 5.2.1
- metro-react-native-babel-transformer: 0.72.1(@babel/core@7.17.8)
+ metro-react-native-babel-transformer: 0.72.1(@babel/core@7.12.9)
metro-runtime: 0.72.1
metro-source-map: 0.72.1
mkdirp: 0.5.5
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.20.2)
+ 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:
@@ -42940,13 +42951,13 @@ packages:
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: ^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:
@@ -43152,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}
@@ -43487,7 +43504,6 @@ packages:
resolution: {integrity: sha512-eOf6vka5IO151Jfsw2NO9WpGX58W6wWmefK3I1zEGr0lOD0u8rwPaNqQL1aRxUaxLeKO3ArNh3VYg1KbaD+FFw==}
dependencies:
'@babel/runtime': 7.21.0
- dev: true
/regenerator-transform@0.15.0:
resolution: {integrity: sha512-LsrGtPmbYg19bcPHwdtmXwbW+TqNvtY4riE3P83foeHRroMbH6/2ddFBfab3t7kbzc7v7p4wbkIecHImqt0QNg==}
@@ -44442,7 +44458,6 @@ packages:
/semver@7.0.0:
resolution: {integrity: sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==}
hasBin: true
- dev: true
/semver@7.3.5:
resolution: {integrity: sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==}
@@ -44695,7 +44710,7 @@ packages:
dependencies:
'@kwsites/file-exists': 1.1.1
'@kwsites/promise-deferred': 1.1.1
- debug: 4.3.4(supports-color@8.1.1)
+ debug: 4.3.4(supports-color@9.2.2)
transitivePeerDependencies:
- supports-color
@@ -44706,7 +44721,7 @@ packages:
resolution: {integrity: sha512-D1SaWpOW8afq1CZGWB8xTfrT3FekjQmPValrqncJMX7QFl8YwhrPTZvMCANLtgBwwdS+7zURyqxDDEmY558tTw==}
dependencies:
buffer: 6.0.3
- debug: 4.3.4(supports-color@8.1.1)
+ debug: 4.3.4(supports-color@9.2.2)
err-code: 3.0.1
get-browser-rtc: 1.1.0
queue-microtask: 1.2.3
@@ -44880,7 +44895,7 @@ packages:
engines: {node: '>= 10'}
dependencies:
agent-base: 6.0.2
- debug: 4.3.4(supports-color@8.1.1)
+ debug: 4.3.4(supports-color@9.2.2)
socks: 2.7.0
transitivePeerDependencies:
- supports-color
@@ -44891,7 +44906,7 @@ packages:
engines: {node: '>= 10'}
dependencies:
agent-base: 6.0.2
- debug: 4.3.4(supports-color@8.1.1)
+ debug: 4.3.4(supports-color@9.2.2)
socks: 2.7.0
transitivePeerDependencies:
- supports-color
@@ -45063,7 +45078,7 @@ packages:
/spdy-transport@3.0.0:
resolution: {integrity: sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==}
dependencies:
- debug: 4.3.4(supports-color@8.1.1)
+ debug: 4.3.4(supports-color@9.2.2)
detect-node: 2.1.0
hpack.js: 2.1.6
obuf: 1.1.2
@@ -45076,7 +45091,7 @@ packages:
resolution: {integrity: sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==}
engines: {node: '>=6.0.0'}
dependencies:
- debug: 4.3.4(supports-color@8.1.1)
+ debug: 4.3.4(supports-color@9.2.2)
handle-thing: 2.0.1
http-deceiver: 1.2.7
select-hose: 2.0.0
@@ -45507,7 +45522,7 @@ packages:
dependencies:
loader-utils: 2.0.4
schema-utils: 3.1.1
- webpack: 5.76.3(webpack-cli@3.3.12)
+ webpack: 5.76.3(webpack-cli@4.9.2)
dev: true
/style-search@0.1.0:
@@ -45698,7 +45713,7 @@ packages:
balanced-match: 2.0.0
chalk: 4.1.2
cosmiconfig: 7.0.1
- debug: 4.3.4(supports-color@8.1.1)
+ debug: 4.3.4(supports-color@9.2.2)
execall: 2.0.0
fast-glob: 3.2.7
fastest-levenshtein: 1.0.12
@@ -45757,7 +45772,7 @@ packages:
balanced-match: 1.0.2
chalk: 4.1.2
cosmiconfig: 7.0.1
- debug: 4.3.4(supports-color@8.1.1)
+ debug: 4.3.4(supports-color@9.2.2)
execall: 2.0.0
fast-glob: 3.2.11
fastest-levenshtein: 1.0.12
@@ -45814,7 +45829,7 @@ packages:
colord: 2.9.2
cosmiconfig: 7.0.1
css-functions-list: 3.0.1
- debug: 4.3.4(supports-color@8.1.1)
+ debug: 4.3.4(supports-color@9.2.2)
execall: 2.0.0
fast-glob: 3.2.11
fastest-levenshtein: 1.0.12
@@ -45877,7 +45892,7 @@ packages:
dependencies:
component-emitter: 1.3.0
cookiejar: 2.1.3
- debug: 4.3.4(supports-color@8.1.1)
+ debug: 4.3.4(supports-color@9.2.2)
fast-safe-stringify: 2.1.1
form-data: 4.0.0
formidable: 2.0.1
@@ -45944,7 +45959,6 @@ packages:
/supports-color@9.2.2:
resolution: {integrity: sha512-XC6g/Kgux+rJXmwokjm9ECpD6k/smUoS5LKlUCcsYr4IY3rW0XyAympon2RmxGrlnZURMpg5T18gWDP9CsHXFA==}
engines: {node: '>=12'}
- dev: true
/supports-hyperlinks@2.2.0:
resolution: {integrity: sha512-6sXEzV5+I5j8Bmq9/vUphGRM/RJNT9SCURJLjwfOg51heRtguGWDzcaBlgAzKhQa0EVNpPEKzQuBwZ8S8WaCeQ==}
@@ -46342,7 +46356,7 @@ packages:
serialize-javascript: 6.0.0
source-map: 0.6.1
terser: 5.10.0(acorn@8.8.1)
- webpack: 5.76.3(webpack-cli@3.3.12)
+ webpack: 5.76.3(webpack-cli@4.9.2)
transitivePeerDependencies:
- acorn
dev: true
@@ -47556,7 +47570,7 @@ packages:
loader-utils: 1.4.0
mime: 2.6.0
schema-utils: 1.0.0
- webpack: 5.76.3(webpack-cli@3.3.12)
+ webpack: 5.76.3(webpack-cli@4.9.2)
dev: true
/url-loader@3.0.0(webpack@4.46.0):
@@ -47738,6 +47752,14 @@ packages:
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==}
@@ -48104,7 +48126,7 @@ packages:
dependencies:
chalk: 2.4.2
commander: 3.0.2
- debug: 4.3.4(supports-color@8.1.1)
+ debug: 4.3.4(supports-color@9.2.2)
transitivePeerDependencies:
- supports-color
@@ -48395,7 +48417,7 @@ packages:
mime-types: 2.1.35
range-parser: 1.2.1
schema-utils: 3.1.1
- webpack: 5.76.3(webpack-cli@3.3.12)
+ webpack: 5.76.3(webpack-cli@4.9.2)
dev: true
/webpack-dev-middleware@5.3.3(webpack@5.70.0):
@@ -49105,7 +49127,7 @@ packages:
resolution: {integrity: sha512-NMp0YsBM40CuI5vWtHpjWOuf96rPfbpGkamlJpVwYvgenIh1ynRzqVnGfsnjofgz13T2qcKkdwJY0Y2X7z+W+w==}
dependencies:
'@babel/runtime': 7.21.0
- debug: 4.3.4(supports-color@8.1.1)
+ debug: 4.3.4(supports-color@9.2.2)
progress-event: 1.0.0
uuid: 7.0.3
wp-error: 1.3.0
@@ -49617,7 +49639,7 @@ packages:
cli-table: 0.3.11
commander: 7.1.0
dateformat: 4.6.3
- debug: 4.3.4(supports-color@8.1.1)
+ debug: 4.3.4(supports-color@9.2.2)
diff: 5.1.0
error: 10.4.0
escape-string-regexp: 4.0.0
@@ -49639,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
@@ -49661,14 +49683,14 @@ packages:
dependencies:
chalk: 4.1.2
dargs: 7.0.0
- debug: 4.3.4(supports-color@8.1.1)
+ debug: 4.3.4(supports-color@9.2.2)
execa: 5.1.1
github-username: 6.0.0
lodash: 4.17.21
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
From e302d4cac82d9ff99d22589d4f452e7ea7b09acc Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Maikel=20David=20P=C3=A9rez=20G=C3=B3mez?=
Date: Wed, 18 Oct 2023 15:31:09 -0400
Subject: [PATCH 36/37] Fix duplicate description when editing the product
summary (#40853)
* Fix duplicate description when editing the product summary
* Add changelog file
---
plugins/woocommerce/changelog/fix-40852 | 4 ++++
.../ProductTemplates/ProductVariationTemplate.php | 2 +-
.../ProductTemplates/SimpleProductTemplate.php | 2 +-
3 files changed, 6 insertions(+), 2 deletions(-)
create mode 100644 plugins/woocommerce/changelog/fix-40852
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/src/Admin/Features/ProductBlockEditor/ProductTemplates/ProductVariationTemplate.php b/plugins/woocommerce/src/Admin/Features/ProductBlockEditor/ProductTemplates/ProductVariationTemplate.php
index f995331fa42..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.',
],
]
);
diff --git a/plugins/woocommerce/src/Admin/Features/ProductBlockEditor/ProductTemplates/SimpleProductTemplate.php b/plugins/woocommerce/src/Admin/Features/ProductBlockEditor/ProductTemplates/SimpleProductTemplate.php
index 1c68db7e0eb..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',
],
]
);
From fe6e43b438710ecd3b0a97bfbe74bc6559a3db69 Mon Sep 17 00:00:00 2001
From: Adam Silverstein
Date: Thu, 19 Oct 2023 01:45:37 -0600
Subject: [PATCH 37/37] Leverage Script API strategy feature to defer front end
scripts in WP >=6.3 (#40686)
* Leverage strategy API to defer scripts from header rather than placing in footer
* Add changefile(s) from automation for the following project(s): woocommerce
---------
Co-authored-by: github-actions
---
plugins/woocommerce/changelog/add-script-strategy | 4 ++++
plugins/woocommerce/includes/class-wc-frontend-scripts.php | 4 ++--
2 files changed, 6 insertions(+), 2 deletions(-)
create mode 100644 plugins/woocommerce/changelog/add-script-strategy
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/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
. 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 );
}