diff --git a/.github/files/jetpack-staging-sites/k6-frontend.js b/.github/files/jetpack-staging-sites/k6-frontend.js index 8ae4f5a1cc0f5..cf842d9b25360 100644 --- a/.github/files/jetpack-staging-sites/k6-frontend.js +++ b/.github/files/jetpack-staging-sites/k6-frontend.js @@ -4,8 +4,8 @@ import http from 'k6/http'; import { sites } from './k6-shared.js'; export const options = { - vus: 3, - iterations: 3, + vus: 1, + iterations: 1, thresholds: { checks: [ { diff --git a/.github/files/renovate-close-old-PRs.sh b/.github/files/renovate-close-old-PRs.sh deleted file mode 100755 index 60ce8367da1a1..0000000000000 --- a/.github/files/renovate-close-old-PRs.sh +++ /dev/null @@ -1,67 +0,0 @@ -#!/bin/bash - -set -eo pipefail - -function die { - echo "::error::$*" - exit 1 -} - -[[ -n "$API_TOKEN_GITHUB" ]] || die "API_TOKEN_GITHUB must be set" -[[ -n "$GITHUB_API_URL" ]] || die "GITHUB_API_URL must be set" -[[ -n "$GITHUB_REPOSITORY" ]] || die "GITHUB_REPOSITORY must be set" - -echo "::group::Check that the renovate bug is still open..." -JSON=$(curl -v --fail --url 'https://api.github.com/repos/renovatebot/renovate/issues/4803') || { echo "$JSON"; exit 1; } -jq -e '.state == "open"' <<<"$JSON" >/dev/null || die "Renovate issue #​4803 is not open. Aborting." -echo "::endgroup::" - -echo "::group::Fetching 1000th PR..." -JSON=$(curl -v --fail \ - --header "authorization: Bearer $API_TOKEN_GITHUB" \ - --url "${GITHUB_API_URL}/repos/${GITHUB_REPOSITORY}/pulls?per_page=100&state=all&page=10" \ -) || { echo "$JSON"; exit 1; } -echo "::endgroup::" -if jq -e 'length < 100' <<<"$JSON" >/dev/null; then - echo "Fewer than 1000 PRs. Nothing to do." - exit 0 -fi -MIN_PR=$(jq -r '.[99].number' <<<"$JSON") -echo "The 1000th PR is #$MIN_PR" - -declare -i PAGE=1 -while :; do - echo "::group::Fetching open PRs (page $PAGE)" - JSON=$(curl -v --fail \ - --header "authorization: Bearer $API_TOKEN_GITHUB" \ - --url "${GITHUB_API_URL}/repos/${GITHUB_REPOSITORY}/pulls?state=open&base=trunk&per_page=100&page=${PAGE}&direction=asc" \ - ) || { echo "$JSON"; exit 1; } - echo "::endgroup::" - - for PR in $(jq '.[] | select( ( .head.ref | startswith( "renovate/" ) ) and ( .user.login == "renovate[bot]" or .user.login == "matticbot" ) ) | .number' <<<"$JSON"); do - if [[ $PR -ge $MIN_PR ]]; then - echo "PR #$PR is ok" - continue - fi - echo "PR #$PR is too old! Closing." - echo "::group::Posting comment..." - curl -v --fail \ - --header "authorization: Bearer $API_TOKEN_GITHUB" \ - --header 'content-type: application/json' \ - --url "${GITHUB_API_URL}/repos/${GITHUB_REPOSITORY}/issues/$PR/comments" \ - --data '{"body":"This renovate PR is too old: renovate loses track of its own PRs when they'\''re beyond the latest 1000 in the repo. See [renovate issue #4803](https://git.io/JYt4a).\n\nClosing the PR so renovate can re-create it."}' - echo "::endgroup::" - echo "::group::Closing..." - curl -v --fail \ - --request PATCH \ - --header "authorization: Bearer $API_TOKEN_GITHUB" \ - --header 'content-type: application/json' \ - --url "${GITHUB_API_URL}/repos/${GITHUB_REPOSITORY}/pulls/$PR" \ - --data '{"state":"closed"}' - echo "::endgroup::" - done - - jq -e 'length == 100' <<<"$JSON" >/dev/null || break - PAGE+=1 -done - diff --git a/.github/workflows/jetpack-staging-sites-k6-tests.yml b/.github/workflows/jetpack-staging-sites-k6-tests.yml deleted file mode 100644 index 8778e7c8c909c..0000000000000 --- a/.github/workflows/jetpack-staging-sites-k6-tests.yml +++ /dev/null @@ -1,30 +0,0 @@ -name: k6 Tests for Jetpack Staging Test Sites -# Runs k6 tests for the same sites updated by `update-jetpack-staging-sites.yml`. - -on: - workflow_dispatch: - schedule: - - cron: '0 1,6,12,18 * * *' # β€œAt minute 0 past hour 1, 6, 12, and 18.” - -jobs: - run_tests: - runs-on: ubuntu-latest - steps: - - name: Checkout repo - uses: actions/checkout@v3 - - - name: Run k6 frontend tests - uses: grafana/k6-action@v0.3.0 - with: - filename: .github/files/jetpack-staging-sites/k6-frontend.js - env: - JETPACKSTAGING_K6_USERNAME: ${{ secrets.JETPACKSTAGING_K6_USERNAME }} - JETPACKSTAGING_K6_PASSWORD: ${{ secrets.JETPACKSTAGING_K6_PASSWORD }} - - - name: Run k6 backend tests - uses: grafana/k6-action@v0.3.0 - with: - filename: .github/files/jetpack-staging-sites/k6-backend.js - env: - JETPACKSTAGING_K6_USERNAME: ${{ secrets.JETPACKSTAGING_K6_USERNAME }} - JETPACKSTAGING_K6_PASSWORD: ${{ secrets.JETPACKSTAGING_K6_PASSWORD }} diff --git a/.github/workflows/renovate-cleanup.yml b/.github/workflows/renovate-cleanup.yml deleted file mode 100644 index 8e8e8aba6fe6b..0000000000000 --- a/.github/workflows/renovate-cleanup.yml +++ /dev/null @@ -1,19 +0,0 @@ -name: Renovate -on: - schedule: - - cron: '0 0 * * *' - -env: - COMPOSER_ROOT_VERSION: "dev-trunk" - -jobs: - cleanup: - name: Close old PRs - runs-on: ubuntu-latest - timeout-minutes: 15 # 2021-03-25: Wild guess. - - steps: - - uses: actions/checkout@v3 - - run: .github/files/renovate-close-old-PRs.sh - env: - API_TOKEN_GITHUB: ${{ secrets.API_TOKEN_GITHUB }} diff --git a/.github/workflows/update-jetpack-staging-sites.yml b/.github/workflows/update-jetpack-staging-sites.yml index bc39f74e4a49d..49b8719e1cb18 100644 --- a/.github/workflows/update-jetpack-staging-sites.yml +++ b/.github/workflows/update-jetpack-staging-sites.yml @@ -1,5 +1,6 @@ name: Update Jetpack Staging Test Sites # Ran as part of the `UpdateJetpackStaging` TeamCity build. +# After updating the sites, runs k6 tests against the same sites. on: workflow_dispatch: @@ -24,3 +25,26 @@ jobs: - name: Execute shell script shell: bash run: .github/files/jetpack-staging-sites/update-jetpack-staging-sites.sh + + run_k6_tests: + needs: run_shell_script + runs-on: ubuntu-latest + steps: + - name: Checkout repo + uses: actions/checkout@v3 + + - name: Run k6 frontend tests + uses: grafana/k6-action@v0.3.0 + with: + filename: .github/files/jetpack-staging-sites/k6-frontend.js + env: + JETPACKSTAGING_K6_USERNAME: ${{ secrets.JETPACKSTAGING_K6_USERNAME }} + JETPACKSTAGING_K6_PASSWORD: ${{ secrets.JETPACKSTAGING_K6_PASSWORD }} + + - name: Run k6 backend tests + uses: grafana/k6-action@v0.3.0 + with: + filename: .github/files/jetpack-staging-sites/k6-backend.js + env: + JETPACKSTAGING_K6_USERNAME: ${{ secrets.JETPACKSTAGING_K6_USERNAME }} + JETPACKSTAGING_K6_PASSWORD: ${{ secrets.JETPACKSTAGING_K6_PASSWORD }} diff --git a/.pnpmfile.cjs b/.pnpmfile.cjs index 3ed196a21f986..8318edf5f9d04 100644 --- a/.pnpmfile.cjs +++ b/.pnpmfile.cjs @@ -126,6 +126,15 @@ function fixDeps( pkg ) { pkg.peerDependencies[ '@babel/runtime' ] = '^7'; } + // Annoying tilde dep, already fixed in storybook 7.1 + if ( pkg.name === '@storybook/codemod' || pkg.name === '@storybook/csf-tools' ) { + for ( const [ dep, ver ] of Object.entries( pkg.dependencies ) ) { + if ( dep.startsWith( '@babel/' ) && ver.startsWith( '~' ) ) { + pkg.dependencies[ dep ] = '^' + ver.substring( 1 ); + } + } + } + return pkg; } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 53589e3a63a60..5f53840b53b0d 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -150,11 +150,11 @@ importers: version: 4.3.4 devDependencies: '@babel/core': - specifier: 7.21.5 - version: 7.21.5 + specifier: 7.22.9 + version: 7.22.9 babel-plugin-tester: specifier: 11.0.4 - version: 11.0.4(@babel/core@7.21.5) + version: 11.0.4(@babel/core@7.22.9) jest: specifier: 29.4.3 version: 29.4.3 @@ -209,7 +209,7 @@ importers: version: 1.0.1 '@babel/runtime': specifier: ^7 - version: 7.21.5 + version: 7.22.6 '@wordpress/browserslist-config': specifier: 5.20.0 version: 5.20.0 @@ -242,29 +242,29 @@ importers: version: 3.1.0(react@18.2.0) react-slider: specifier: 2.0.5 - version: 2.0.5(@babel/runtime@7.21.5)(react@18.2.0) + version: 2.0.5(@babel/runtime@7.22.6)(react@18.2.0) devDependencies: '@automattic/jetpack-base-styles': specifier: workspace:* version: link:../base-styles '@babel/core': - specifier: 7.21.5 - version: 7.21.5 + specifier: 7.22.9 + version: 7.22.9 '@babel/preset-react': - specifier: 7.18.6 - version: 7.18.6(@babel/core@7.21.5) + specifier: 7.22.5 + version: 7.22.5(@babel/core@7.22.9) '@jest/globals': specifier: 29.4.3 version: 29.4.3 '@storybook/addon-actions': - specifier: 7.0.5 - version: 7.0.5(react-dom@18.2.0)(react@18.2.0) + specifier: 7.0.27 + version: 7.0.27(react-dom@18.2.0)(react@18.2.0) '@storybook/blocks': - specifier: 7.0.5 - version: 7.0.5(react-dom@18.2.0)(react@18.2.0) + specifier: 7.0.27 + version: 7.0.27(react-dom@18.2.0)(react@18.2.0) '@storybook/react': - specifier: 7.0.5 - version: 7.0.5(react-dom@18.2.0)(react@18.2.0)(typescript@5.0.4) + specifier: 7.0.27 + version: 7.0.27(react-dom@18.2.0)(react@18.2.0)(typescript@5.0.4) '@testing-library/dom': specifier: 8.19.1 version: 8.19.1 @@ -387,14 +387,14 @@ importers: specifier: workspace:* version: link:../base-styles '@babel/core': - specifier: 7.21.5 - version: 7.21.5 + specifier: 7.22.9 + version: 7.22.9 '@babel/preset-react': - specifier: 7.18.6 - version: 7.18.6(@babel/core@7.21.5) + specifier: 7.22.5 + version: 7.22.5(@babel/core@7.22.9) '@storybook/addon-actions': - specifier: 7.0.5 - version: 7.0.5(react-dom@18.2.0)(react@18.2.0) + specifier: 7.0.27 + version: 7.0.27(react-dom@18.2.0)(react@18.2.0) '@testing-library/dom': specifier: 8.19.1 version: 8.19.1 @@ -471,8 +471,8 @@ importers: version: 4.3.4 devDependencies: '@babel/core': - specifier: 7.21.5 - version: 7.21.5 + specifier: 7.22.9 + version: 7.22.9 jest: specifier: 29.4.3 version: 29.4.3 @@ -545,11 +545,11 @@ importers: version: 15.8.1 devDependencies: '@babel/core': - specifier: 7.21.5 - version: 7.21.5 + specifier: 7.22.9 + version: 7.22.9 '@babel/preset-react': - specifier: 7.18.6 - version: 7.18.6(@babel/core@7.21.5) + specifier: 7.22.5 + version: 7.22.5(@babel/core@7.22.9) react: specifier: 18.2.0 version: 18.2.0 @@ -621,11 +621,11 @@ importers: specifier: workspace:* version: link:../base-styles '@babel/core': - specifier: 7.21.5 - version: 7.21.5 + specifier: 7.22.9 + version: 7.22.9 '@babel/preset-react': - specifier: 7.18.6 - version: 7.18.6(@babel/core@7.21.5) + specifier: 7.22.5 + version: 7.22.5(@babel/core@7.22.9) '@testing-library/dom': specifier: 8.19.1 version: 8.19.1 @@ -676,11 +676,11 @@ importers: specifier: workspace:* version: link:../base-styles '@babel/core': - specifier: 7.21.5 - version: 7.21.5 + specifier: 7.22.9 + version: 7.22.9 '@babel/preset-react': - specifier: 7.18.6 - version: 7.18.6(@babel/core@7.21.5) + specifier: 7.22.5 + version: 7.22.5(@babel/core@7.22.9) '@testing-library/dom': specifier: 8.19.1 version: 8.19.1 @@ -731,7 +731,7 @@ importers: version: link:../shared-extension-utils '@automattic/social-previews': specifier: 2.0.1-beta.5 - version: 2.0.1-beta.5(@babel/core@7.21.5)(@babel/runtime@7.21.5)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) + version: 2.0.1-beta.5(@babel/core@7.22.9)(@babel/runtime@7.22.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) '@wordpress/annotations': specifier: 2.37.0 version: 2.37.0(react@18.2.0) @@ -806,17 +806,17 @@ importers: specifier: workspace:* version: link:../webpack-config '@babel/core': - specifier: 7.21.5 - version: 7.21.5 + specifier: 7.22.9 + version: 7.22.9 '@babel/plugin-transform-react-jsx': - specifier: 7.21.5 - version: 7.21.5(@babel/core@7.21.5) + specifier: 7.22.5 + version: 7.22.5(@babel/core@7.22.9) '@babel/preset-react': - specifier: 7.18.6 - version: 7.18.6(@babel/core@7.21.5) + specifier: 7.22.5 + version: 7.22.5(@babel/core@7.22.9) '@babel/runtime': - specifier: 7.21.5 - version: 7.21.5 + specifier: 7.22.6 + version: 7.22.6 '@testing-library/dom': specifier: 8.19.1 version: 8.19.1 @@ -831,10 +831,10 @@ importers: version: 18.2.14 '@wordpress/babel-plugin-import-jsx-pragma': specifier: 4.20.0 - version: 4.20.0(@babel/core@7.21.5) + version: 4.20.0(@babel/core@7.22.9) babel-jest: specifier: 29.4.3 - version: 29.4.3(@babel/core@7.21.5) + version: 29.4.3(@babel/core@7.22.9) jest: specifier: 29.4.3 version: 29.4.3 @@ -898,14 +898,14 @@ importers: specifier: workspace:* version: link:../webpack-config '@babel/core': - specifier: 7.21.5 - version: 7.21.5 + specifier: 7.22.9 + version: 7.22.9 '@babel/plugin-transform-react-jsx': - specifier: 7.21.5 - version: 7.21.5(@babel/core@7.21.5) + specifier: 7.22.5 + version: 7.22.5(@babel/core@7.22.9) '@babel/preset-react': - specifier: 7.18.6 - version: 7.18.6(@babel/core@7.21.5) + specifier: 7.22.5 + version: 7.22.5(@babel/core@7.22.9) '@testing-library/dom': specifier: 8.19.1 version: 8.19.1 @@ -917,10 +917,10 @@ importers: version: 14.4.3(@testing-library/dom@8.19.1) '@wordpress/babel-plugin-import-jsx-pragma': specifier: 4.20.0 - version: 4.20.0(@babel/core@7.21.5) + version: 4.20.0(@babel/core@7.22.9) babel-jest: specifier: 29.3.1 - version: 29.3.1(@babel/core@7.21.5) + version: 29.3.1(@babel/core@7.22.9) jest: specifier: 29.3.1 version: 29.3.1 @@ -950,65 +950,56 @@ importers: specifier: workspace:* version: link:../webpack-config '@babel/core': - specifier: 7.21.5 - version: 7.21.5 + specifier: 7.22.9 + version: 7.22.9 '@babel/plugin-syntax-jsx': - specifier: 7.21.4 - version: 7.21.4(@babel/core@7.21.5) + specifier: 7.22.5 + version: 7.22.5(@babel/core@7.22.9) '@babel/preset-react': - specifier: 7.18.6 - version: 7.18.6(@babel/core@7.21.5) + specifier: 7.22.5 + version: 7.22.5(@babel/core@7.22.9) '@babel/runtime': - specifier: 7.21.5 - version: 7.21.5 - '@emotion/babel-plugin': - specifier: 11.3.0 - version: 11.3.0(@babel/core@7.21.5) - '@emotion/react': - specifier: 11.4.1 - version: 11.4.1(@babel/core@7.21.5)(react@18.2.0) - '@emotion/styled': - specifier: 11.3.0 - version: 11.3.0(@babel/core@7.21.5)(@emotion/react@11.4.1)(react@18.2.0) + specifier: 7.22.6 + version: 7.22.6 '@storybook/addon-a11y': - specifier: 7.0.5 - version: 7.0.5(react-dom@18.2.0)(react@18.2.0) + specifier: 7.0.27 + version: 7.0.27(react-dom@18.2.0)(react@18.2.0) '@storybook/addon-docs': - specifier: 7.0.5 - version: 7.0.5(react-dom@18.2.0)(react@18.2.0) + specifier: 7.0.27 + version: 7.0.27(react-dom@18.2.0)(react@18.2.0) '@storybook/addon-essentials': - specifier: 7.0.5 - version: 7.0.5(react-dom@18.2.0)(react@18.2.0) + specifier: 7.0.27 + version: 7.0.27(react-dom@18.2.0)(react@18.2.0) '@storybook/addon-storysource': - specifier: 7.0.5 - version: 7.0.5(react-dom@18.2.0)(react@18.2.0) + specifier: 7.0.27 + version: 7.0.27(react-dom@18.2.0)(react@18.2.0) '@storybook/addons': - specifier: 7.0.5 - version: 7.0.5(react-dom@18.2.0)(react@18.2.0) + specifier: 7.0.27 + version: 7.0.27(react-dom@18.2.0)(react@18.2.0) '@storybook/api': - specifier: 7.0.5 - version: 7.0.5(react-dom@18.2.0)(react@18.2.0) + specifier: 7.0.27 + version: 7.0.27(react-dom@18.2.0)(react@18.2.0) '@storybook/blocks': - specifier: 7.0.5 - version: 7.0.5(react-dom@18.2.0)(react@18.2.0) + specifier: 7.0.27 + version: 7.0.27(react-dom@18.2.0)(react@18.2.0) '@storybook/components': - specifier: 7.0.5 - version: 7.0.5(react-dom@18.2.0)(react@18.2.0) + specifier: 7.0.27 + version: 7.0.27(react-dom@18.2.0)(react@18.2.0) '@storybook/manager-api': - specifier: 7.0.5 - version: 7.0.5(react-dom@18.2.0)(react@18.2.0) + specifier: 7.0.27 + version: 7.0.27(react-dom@18.2.0)(react@18.2.0) '@storybook/react': - specifier: 7.0.5 - version: 7.0.5(react-dom@18.2.0)(react@18.2.0)(typescript@5.0.4) + specifier: 7.0.27 + version: 7.0.27(react-dom@18.2.0)(react@18.2.0)(typescript@5.0.4) '@storybook/react-webpack5': - specifier: 7.0.5 - version: 7.0.5(@babel/core@7.21.5)(react-dom@18.2.0)(react@18.2.0)(typescript@5.0.4)(webpack-cli@4.9.1) + specifier: 7.0.27 + version: 7.0.27(@babel/core@7.22.9)(react-dom@18.2.0)(react@18.2.0)(typescript@5.0.4)(webpack-cli@4.9.1) '@storybook/source-loader': - specifier: 7.0.5 - version: 7.0.5(react-dom@18.2.0)(react@18.2.0) + specifier: 7.0.27 + version: 7.0.27(react-dom@18.2.0)(react@18.2.0) '@storybook/theming': - specifier: 7.0.5 - version: 7.0.5(react-dom@18.2.0)(react@18.2.0) + specifier: 7.0.27 + version: 7.0.27(react-dom@18.2.0)(react@18.2.0) '@wordpress/babel-preset-default': specifier: 7.21.0 version: 7.21.0 @@ -1038,7 +1029,7 @@ importers: version: 10.4.14(postcss@8.4.21) babel-loader: specifier: 9.1.2 - version: 9.1.2(@babel/core@7.21.5)(webpack@5.76.0) + version: 9.1.2(@babel/core@7.22.9)(webpack@5.76.0) babel-plugin-inline-json-import: specifier: 0.3.2 version: 0.3.2 @@ -1079,11 +1070,11 @@ importers: specifier: 12.4.0 version: 12.4.0(sass@1.43.3)(webpack@5.76.0) storybook: - specifier: 7.0.5 - version: 7.0.5 + specifier: 7.0.27 + version: 7.0.27 storybook-addon-mock: specifier: 4.0.0 - version: 4.0.0(@storybook/addons@7.0.5)(@storybook/blocks@7.0.5)(@storybook/components@7.0.5)(@storybook/manager-api@7.0.5)(@storybook/theming@7.0.5)(react-dom@18.2.0)(react@18.2.0)(storybook@7.0.5) + version: 4.0.0(@storybook/addons@7.0.27)(@storybook/blocks@7.0.27)(@storybook/components@7.0.27)(@storybook/manager-api@7.0.27)(@storybook/theming@7.0.27)(react-dom@18.2.0)(react@18.2.0)(storybook@7.0.27) style-loader: specifier: 2.0.0 version: 2.0.0(webpack@5.76.0) @@ -1142,11 +1133,11 @@ importers: specifier: workspace:* version: link:../webpack-config '@babel/core': - specifier: 7.21.5 - version: 7.21.5 + specifier: 7.22.9 + version: 7.22.9 '@babel/preset-react': - specifier: 7.18.6 - version: 7.18.6(@babel/core@7.21.5) + specifier: 7.22.5 + version: 7.22.5(@babel/core@7.22.9) '@types/jest': specifier: 29.2.5 version: 29.2.5 @@ -1187,26 +1178,26 @@ importers: specifier: 6.0.0 version: 6.0.0(webpack@5.76.0) '@babel/compat-data': - specifier: 7.21.7 - version: 7.21.7 + specifier: 7.22.9 + version: 7.22.9 '@babel/helper-compilation-targets': - specifier: 7.21.5 - version: 7.21.5(@babel/core@7.21.5) + specifier: 7.22.9 + version: 7.22.9(@babel/core@7.22.9) '@babel/plugin-proposal-class-properties': specifier: 7.18.6 - version: 7.18.6(@babel/core@7.21.5) + version: 7.18.6(@babel/core@7.22.9) '@babel/plugin-transform-runtime': - specifier: 7.21.4 - version: 7.21.4(@babel/core@7.21.5) + specifier: 7.22.9 + version: 7.22.9(@babel/core@7.22.9) '@babel/preset-env': - specifier: 7.21.5 - version: 7.21.5(@babel/core@7.21.5) + specifier: 7.22.9 + version: 7.22.9(@babel/core@7.22.9) '@babel/preset-react': - specifier: 7.18.6 - version: 7.18.6(@babel/core@7.21.5) + specifier: 7.22.5 + version: 7.22.5(@babel/core@7.22.9) '@babel/preset-typescript': - specifier: 7.21.5 - version: 7.21.5(@babel/core@7.21.5) + specifier: 7.22.5 + version: 7.22.5(@babel/core@7.22.9) '@cerner/duplicate-package-checker-webpack-plugin': specifier: 2.3.0 version: 2.3.0(webpack@5.76.0) @@ -1218,7 +1209,7 @@ importers: version: 4.20.0(webpack@5.76.0) babel-loader: specifier: 9.1.2 - version: 9.1.2(@babel/core@7.21.5)(webpack@5.76.0) + version: 9.1.2(@babel/core@7.22.9)(webpack@5.76.0) browserslist: specifier: 4.21.9 version: 4.21.9 @@ -1239,11 +1230,11 @@ importers: version: 3.0.4(webpack@5.76.0) devDependencies: '@babel/core': - specifier: 7.21.5 - version: 7.21.5 + specifier: 7.22.9 + version: 7.22.9 '@babel/runtime': - specifier: 7.21.5 - version: 7.21.5 + specifier: 7.22.6 + version: 7.22.6 webpack: specifier: 5.76.0 version: 5.76.0(webpack-cli@4.9.1) @@ -1257,8 +1248,8 @@ importers: specifier: workspace:* version: link:../../js-packages/webpack-config '@babel/core': - specifier: 7.21.5 - version: 7.21.5 + specifier: 7.22.9 + version: 7.22.9 '@wordpress/browserslist-config': specifier: 5.20.0 version: 5.20.0 @@ -1353,17 +1344,14 @@ importers: specifier: workspace:* version: link:../../js-packages/webpack-config '@babel/core': - specifier: 7.21.5 - version: 7.21.5 + specifier: 7.22.9 + version: 7.22.9 '@babel/preset-env': - specifier: 7.21.5 - version: 7.21.5(@babel/core@7.21.5) - '@babel/register': - specifier: 7.21.0 - version: 7.21.0(@babel/core@7.21.5) + specifier: 7.22.9 + version: 7.22.9(@babel/core@7.22.9) '@babel/runtime': - specifier: 7.21.5 - version: 7.21.5 + specifier: 7.22.6 + version: 7.22.6 '@testing-library/dom': specifier: 8.19.1 version: 8.19.1 @@ -1444,17 +1432,14 @@ importers: specifier: workspace:* version: link:../../js-packages/webpack-config '@babel/core': - specifier: 7.21.5 - version: 7.21.5 + specifier: 7.22.9 + version: 7.22.9 '@babel/preset-env': - specifier: 7.21.5 - version: 7.21.5(@babel/core@7.21.5) - '@babel/register': - specifier: 7.21.0 - version: 7.21.0(@babel/core@7.21.5) + specifier: 7.22.9 + version: 7.22.9(@babel/core@7.22.9) '@babel/runtime': - specifier: 7.21.5 - version: 7.21.5 + specifier: 7.22.6 + version: 7.22.6 '@wordpress/browserslist-config': specifier: 5.20.0 version: 5.20.0 @@ -1580,29 +1565,29 @@ importers: specifier: workspace:* version: link:../../js-packages/remove-asset-webpack-plugin '@babel/core': - specifier: 7.21.5 - version: 7.21.5 + specifier: 7.22.9 + version: 7.22.9 '@babel/plugin-proposal-nullish-coalescing-operator': specifier: 7.18.6 - version: 7.18.6(@babel/core@7.21.5) + version: 7.18.6(@babel/core@7.22.9) '@babel/plugin-transform-react-jsx': - specifier: 7.21.5 - version: 7.21.5(@babel/core@7.21.5) + specifier: 7.22.5 + version: 7.22.5(@babel/core@7.22.9) '@babel/plugin-transform-runtime': - specifier: 7.21.4 - version: 7.21.4(@babel/core@7.21.5) + specifier: 7.22.9 + version: 7.22.9(@babel/core@7.22.9) '@babel/preset-env': - specifier: 7.21.5 - version: 7.21.5(@babel/core@7.21.5) + specifier: 7.22.9 + version: 7.22.9(@babel/core@7.22.9) '@babel/runtime': - specifier: 7.21.5 - version: 7.21.5 + specifier: 7.22.6 + version: 7.22.6 '@wordpress/api-fetch': specifier: 6.34.0 version: 6.34.0 '@wordpress/babel-plugin-import-jsx-pragma': specifier: 4.20.0 - version: 4.20.0(@babel/core@7.21.5) + version: 4.20.0(@babel/core@7.22.9) '@wordpress/browserslist-config': specifier: 5.20.0 version: 5.20.0 @@ -1658,17 +1643,14 @@ importers: specifier: workspace:* version: link:../../js-packages/webpack-config '@babel/core': - specifier: 7.21.5 - version: 7.21.5 + specifier: 7.22.9 + version: 7.22.9 '@babel/preset-env': - specifier: 7.21.5 - version: 7.21.5(@babel/core@7.21.5) - '@babel/register': - specifier: 7.21.0 - version: 7.21.0(@babel/core@7.21.5) + specifier: 7.22.9 + version: 7.22.9(@babel/core@7.22.9) '@babel/runtime': - specifier: 7.21.5 - version: 7.21.5 + specifier: 7.22.6 + version: 7.22.6 '@wordpress/browserslist-config': specifier: 5.20.0 version: 5.20.0 @@ -1810,14 +1792,14 @@ importers: specifier: workspace:* version: link:../../js-packages/webpack-config '@babel/core': - specifier: 7.21.5 - version: 7.21.5 + specifier: 7.22.9 + version: 7.22.9 '@babel/preset-env': - specifier: 7.21.5 - version: 7.21.5(@babel/core@7.21.5) + specifier: 7.22.9 + version: 7.22.9(@babel/core@7.22.9) '@storybook/react': - specifier: 7.0.5 - version: 7.0.5(react-dom@18.2.0)(react@18.2.0)(typescript@5.0.4) + specifier: 7.0.27 + version: 7.0.27(react-dom@18.2.0)(react@18.2.0)(typescript@5.0.4) '@testing-library/dom': specifier: 8.19.1 version: 8.19.1 @@ -2003,29 +1985,29 @@ importers: specifier: workspace:* version: link:../../js-packages/webpack-config '@babel/core': - specifier: 7.21.5 - version: 7.21.5 + specifier: 7.22.9 + version: 7.22.9 '@babel/plugin-proposal-nullish-coalescing-operator': specifier: 7.18.6 - version: 7.18.6(@babel/core@7.21.5) + version: 7.18.6(@babel/core@7.22.9) '@babel/plugin-transform-react-jsx': - specifier: 7.21.5 - version: 7.21.5(@babel/core@7.21.5) + specifier: 7.22.5 + version: 7.22.5(@babel/core@7.22.9) '@babel/preset-env': - specifier: 7.21.5 - version: 7.21.5(@babel/core@7.21.5) + specifier: 7.22.9 + version: 7.22.9(@babel/core@7.22.9) '@babel/preset-react': - specifier: 7.18.6 - version: 7.18.6(@babel/core@7.21.5) + specifier: 7.22.5 + version: 7.22.5(@babel/core@7.22.9) '@babel/preset-typescript': - specifier: 7.21.5 - version: 7.21.5(@babel/core@7.21.5) + specifier: 7.22.5 + version: 7.22.5(@babel/core@7.22.9) '@babel/runtime': - specifier: 7.21.5 - version: 7.21.5 + specifier: 7.22.6 + version: 7.22.6 '@size-limit/preset-app': - specifier: 6.0.4 - version: 6.0.4(size-limit@6.0.4) + specifier: 8.2.6 + version: 8.2.6(size-limit@8.2.6) '@testing-library/dom': specifier: 8.19.1 version: 8.19.1 @@ -2037,7 +2019,7 @@ importers: version: 13.4.0(@testing-library/dom@8.19.1)(react-dom@18.2.0)(react@18.2.0) '@wordpress/babel-plugin-import-jsx-pragma': specifier: 4.20.0 - version: 4.20.0(@babel/core@7.21.5) + version: 4.20.0(@babel/core@7.22.9) '@wordpress/browserslist-config': specifier: 5.20.0 version: 5.20.0 @@ -2049,7 +2031,7 @@ importers: version: 10.4.14(postcss@8.4.21) babel-jest: specifier: 29.4.3 - version: 29.4.3(@babel/core@7.21.5) + version: 29.4.3(@babel/core@7.22.9) concurrently: specifier: 7.6.0 version: 7.6.0 @@ -2081,8 +2063,8 @@ importers: specifier: 12.4.0 version: 12.4.0(sass@1.43.3)(webpack@5.76.0) size-limit: - specifier: 6.0.4 - version: 6.0.4 + specifier: 8.2.6 + version: 8.2.6 webpack: specifier: 5.76.0 version: 5.76.0(webpack-cli@4.9.1) @@ -2115,8 +2097,8 @@ importers: specifier: workspace:* version: link:../../js-packages/shared-extension-utils '@storybook/addon-actions': - specifier: 7.0.5 - version: 7.0.5(react-dom@18.2.0)(react@18.2.0) + specifier: 7.0.27 + version: 7.0.27(react-dom@18.2.0)(react@18.2.0) '@wordpress/api-fetch': specifier: 6.34.0 version: 6.34.0 @@ -2191,23 +2173,23 @@ importers: specifier: workspace:* version: link:../../js-packages/webpack-config '@babel/core': - specifier: 7.21.5 - version: 7.21.5 + specifier: 7.22.9 + version: 7.22.9 '@babel/preset-react': - specifier: 7.18.6 - version: 7.18.6(@babel/core@7.21.5) + specifier: 7.22.5 + version: 7.22.5(@babel/core@7.22.9) '@jest/globals': specifier: 29.4.3 version: 29.4.3 '@storybook/blocks': - specifier: 7.0.5 - version: 7.0.5(react-dom@18.2.0)(react@18.2.0) + specifier: 7.0.27 + version: 7.0.27(react-dom@18.2.0)(react@18.2.0) '@storybook/client-api': - specifier: 7.0.5 - version: 7.0.5 + specifier: 7.0.27 + version: 7.0.27 '@storybook/react': - specifier: 7.0.5 - version: 7.0.5(react-dom@18.2.0)(react@18.2.0)(typescript@5.0.4) + specifier: 7.0.27 + version: 7.0.27(react-dom@18.2.0)(react@18.2.0)(typescript@5.0.4) '@testing-library/dom': specifier: 8.19.1 version: 8.19.1 @@ -2360,29 +2342,26 @@ importers: specifier: workspace:* version: link:../../js-packages/webpack-config '@babel/core': - specifier: 7.21.5 - version: 7.21.5 + specifier: 7.22.9 + version: 7.22.9 '@babel/plugin-proposal-nullish-coalescing-operator': specifier: 7.18.6 - version: 7.18.6(@babel/core@7.21.5) + version: 7.18.6(@babel/core@7.22.9) '@babel/plugin-transform-react-jsx': - specifier: 7.21.5 - version: 7.21.5(@babel/core@7.21.5) + specifier: 7.22.5 + version: 7.22.5(@babel/core@7.22.9) '@babel/preset-env': - specifier: 7.21.5 - version: 7.21.5(@babel/core@7.21.5) + specifier: 7.22.9 + version: 7.22.9(@babel/core@7.22.9) '@babel/preset-react': - specifier: 7.18.6 - version: 7.18.6(@babel/core@7.21.5) + specifier: 7.22.5 + version: 7.22.5(@babel/core@7.22.9) '@babel/preset-typescript': - specifier: 7.21.5 - version: 7.21.5(@babel/core@7.21.5) + specifier: 7.22.5 + version: 7.22.5(@babel/core@7.22.9) '@babel/runtime': - specifier: 7.21.5 - version: 7.21.5 - '@size-limit/preset-app': - specifier: 6.0.4 - version: 6.0.4(size-limit@6.0.4) + specifier: 7.22.6 + version: 7.22.6 '@testing-library/dom': specifier: 8.19.1 version: 8.19.1 @@ -2394,7 +2373,7 @@ importers: version: 13.4.0(@testing-library/dom@8.19.1)(react-dom@18.2.0)(react@18.2.0) '@wordpress/babel-plugin-import-jsx-pragma': specifier: 4.20.0 - version: 4.20.0(@babel/core@7.21.5) + version: 4.20.0(@babel/core@7.22.9) '@wordpress/browserslist-config': specifier: 5.20.0 version: 5.20.0 @@ -2403,7 +2382,7 @@ importers: version: 4.20.0(webpack@5.76.0) babel-jest: specifier: 29.4.3 - version: 29.4.3(@babel/core@7.21.5) + version: 29.4.3(@babel/core@7.22.9) concurrently: specifier: 7.6.0 version: 7.6.0 @@ -2425,9 +2404,6 @@ importers: sass-loader: specifier: 12.4.0 version: 12.4.0(sass@1.43.3)(webpack@5.76.0) - size-limit: - specifier: 6.0.4 - version: 6.0.4 webpack: specifier: 5.76.0 version: 5.76.0(webpack-cli@4.9.1) @@ -2477,17 +2453,14 @@ importers: specifier: workspace:* version: link:../../js-packages/webpack-config '@babel/core': - specifier: 7.21.5 - version: 7.21.5 + specifier: 7.22.9 + version: 7.22.9 '@babel/preset-env': - specifier: 7.21.5 - version: 7.21.5(@babel/core@7.21.5) - '@babel/register': - specifier: 7.21.0 - version: 7.21.0(@babel/core@7.21.5) + specifier: 7.22.9 + version: 7.22.9(@babel/core@7.22.9) '@babel/runtime': - specifier: 7.21.5 - version: 7.21.5 + specifier: 7.22.6 + version: 7.22.6 '@wordpress/browserslist-config': specifier: 5.20.0 version: 5.20.0 @@ -2550,17 +2523,17 @@ importers: specifier: workspace:* version: link:../../js-packages/image-guide '@babel/core': - specifier: 7.21.5 - version: 7.21.5 + specifier: 7.22.9 + version: 7.22.9 '@babel/preset-env': - specifier: 7.21.5 - version: 7.21.5(@babel/core@7.21.5) + specifier: 7.22.9 + version: 7.22.9(@babel/core@7.22.9) '@babel/preset-react': - specifier: 7.18.6 - version: 7.18.6(@babel/core@7.21.5) + specifier: 7.22.5 + version: 7.22.5(@babel/core@7.22.9) '@rollup/plugin-babel': specifier: 5.3.1 - version: 5.3.1(@babel/core@7.21.5)(rollup@2.79.1) + version: 5.3.1(@babel/core@7.22.9)(rollup@2.79.1) '@rollup/plugin-commonjs': specifier: 19.0.2 version: 19.0.2(rollup@2.79.1) @@ -2629,7 +2602,7 @@ importers: version: 3.58.0 svelte-preprocess: specifier: 5.0.3 - version: 5.0.3(@babel/core@7.21.5)(postcss@8.4.21)(sass@1.43.3)(svelte@3.58.0)(typescript@5.0.4) + version: 5.0.3(@babel/core@7.22.9)(postcss@8.4.21)(sass@1.43.3)(svelte@3.58.0)(typescript@5.0.4) tslib: specifier: 2.5.0 version: 2.5.0 @@ -2701,17 +2674,14 @@ importers: specifier: workspace:* version: link:../../js-packages/remove-asset-webpack-plugin '@babel/core': - specifier: 7.21.5 - version: 7.21.5 + specifier: 7.22.9 + version: 7.22.9 '@babel/preset-env': - specifier: 7.21.5 - version: 7.21.5(@babel/core@7.21.5) - '@babel/register': - specifier: 7.21.0 - version: 7.21.0(@babel/core@7.21.5) + specifier: 7.22.9 + version: 7.22.9(@babel/core@7.22.9) '@babel/runtime': - specifier: 7.21.5 - version: 7.21.5 + specifier: 7.22.6 + version: 7.22.6 '@testing-library/dom': specifier: 8.19.1 version: 8.19.1 @@ -2732,7 +2702,7 @@ importers: version: 18.0.0 babel-jest: specifier: 29.3.1 - version: 29.3.1(@babel/core@7.21.5) + version: 29.3.1(@babel/core@7.22.9) css-loader: specifier: 6.5.1 version: 6.5.1(webpack@5.76.0) @@ -2807,7 +2777,7 @@ importers: version: 1.0.0 '@automattic/social-previews': specifier: 2.0.1-beta.5 - version: 2.0.1-beta.5(@babel/core@7.21.5)(@babel/runtime@7.21.5)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) + version: 2.0.1-beta.5(@babel/core@7.22.9)(@babel/runtime@7.22.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) '@automattic/viewport': specifier: 1.0.0 version: 1.0.0 @@ -2985,23 +2955,23 @@ importers: specifier: workspace:* version: link:../../js-packages/remove-asset-webpack-plugin '@babel/core': - specifier: 7.21.5 - version: 7.21.5 + specifier: 7.22.9 + version: 7.22.9 '@babel/plugin-proposal-nullish-coalescing-operator': specifier: 7.18.6 - version: 7.18.6(@babel/core@7.21.5) + version: 7.18.6(@babel/core@7.22.9) '@babel/plugin-transform-react-jsx': - specifier: 7.21.5 - version: 7.21.5(@babel/core@7.21.5) + specifier: 7.22.5 + version: 7.22.5(@babel/core@7.22.9) '@babel/plugin-transform-runtime': - specifier: 7.21.4 - version: 7.21.4(@babel/core@7.21.5) + specifier: 7.22.9 + version: 7.22.9(@babel/core@7.22.9) '@babel/preset-env': - specifier: 7.21.5 - version: 7.21.5(@babel/core@7.21.5) + specifier: 7.22.9 + version: 7.22.9(@babel/core@7.22.9) '@babel/runtime': - specifier: 7.21.5 - version: 7.21.5 + specifier: 7.22.6 + version: 7.22.6 '@svgr/webpack': specifier: 7.0.0 version: 7.0.0 @@ -3028,7 +2998,7 @@ importers: version: 6.34.0 '@wordpress/babel-plugin-import-jsx-pragma': specifier: 4.20.0 - version: 4.20.0(@babel/core@7.21.5) + version: 4.20.0(@babel/core@7.22.9) '@wordpress/blob': specifier: 3.37.0 version: 3.37.0 @@ -3064,7 +3034,7 @@ importers: version: 10.4.14(postcss@8.4.21) babel-jest: specifier: 29.4.3 - version: 29.4.3(@babel/core@7.21.5) + version: 29.4.3(@babel/core@7.22.9) concurrently: specifier: 7.6.0 version: 7.6.0 @@ -3172,17 +3142,14 @@ importers: specifier: workspace:* version: link:../../js-packages/webpack-config '@babel/core': - specifier: 7.21.5 - version: 7.21.5 + specifier: 7.22.9 + version: 7.22.9 '@babel/preset-env': - specifier: 7.21.5 - version: 7.21.5(@babel/core@7.21.5) - '@babel/register': - specifier: 7.21.0 - version: 7.21.0(@babel/core@7.21.5) + specifier: 7.22.9 + version: 7.22.9(@babel/core@7.22.9) '@babel/runtime': - specifier: 7.21.5 - version: 7.21.5 + specifier: 7.22.6 + version: 7.22.6 '@wordpress/browserslist-config': specifier: 5.20.0 version: 5.20.0 @@ -3286,17 +3253,14 @@ importers: specifier: workspace:* version: link:../../js-packages/webpack-config '@babel/core': - specifier: 7.21.5 - version: 7.21.5 + specifier: 7.22.9 + version: 7.22.9 '@babel/preset-env': - specifier: 7.21.5 - version: 7.21.5(@babel/core@7.21.5) - '@babel/register': - specifier: 7.21.0 - version: 7.21.0(@babel/core@7.21.5) + specifier: 7.22.9 + version: 7.22.9(@babel/core@7.22.9) '@babel/runtime': - specifier: 7.21.5 - version: 7.21.5 + specifier: 7.22.6 + version: 7.22.6 '@wordpress/browserslist-config': specifier: 5.20.0 version: 5.20.0 @@ -3391,17 +3355,14 @@ importers: specifier: workspace:* version: link:../../js-packages/webpack-config '@babel/core': - specifier: 7.21.5 - version: 7.21.5 + specifier: 7.22.9 + version: 7.22.9 '@babel/preset-env': - specifier: 7.21.5 - version: 7.21.5(@babel/core@7.21.5) - '@babel/register': - specifier: 7.21.0 - version: 7.21.0(@babel/core@7.21.5) + specifier: 7.22.9 + version: 7.22.9(@babel/core@7.22.9) '@babel/runtime': - specifier: 7.21.5 - version: 7.21.5 + specifier: 7.22.6 + version: 7.22.6 '@testing-library/dom': specifier: 8.19.1 version: 8.19.1 @@ -3422,7 +3383,7 @@ importers: version: 10.4.14(postcss@8.4.21) babel-jest: specifier: 29.4.3 - version: 29.4.3(@babel/core@7.21.5) + version: 29.4.3(@babel/core@7.22.9) concurrently: specifier: 7.6.0 version: 7.6.0 @@ -3503,17 +3464,14 @@ importers: specifier: workspace:* version: link:../../js-packages/webpack-config '@babel/core': - specifier: 7.21.5 - version: 7.21.5 + specifier: 7.22.9 + version: 7.22.9 '@babel/preset-env': - specifier: 7.21.5 - version: 7.21.5(@babel/core@7.21.5) - '@babel/register': - specifier: 7.21.0 - version: 7.21.0(@babel/core@7.21.5) + specifier: 7.22.9 + version: 7.22.9(@babel/core@7.22.9) '@babel/runtime': - specifier: 7.21.5 - version: 7.21.5 + specifier: 7.22.6 + version: 7.22.6 '@testing-library/dom': specifier: 8.19.1 version: 8.19.1 @@ -3525,7 +3483,7 @@ importers: version: 5.20.0 babel-jest: specifier: 29.4.3 - version: 29.4.3(@babel/core@7.21.5) + version: 29.4.3(@babel/core@7.22.9) concurrently: specifier: 7.6.0 version: 7.6.0 @@ -3626,17 +3584,14 @@ importers: specifier: workspace:* version: link:../../js-packages/webpack-config '@babel/core': - specifier: 7.21.5 - version: 7.21.5 + specifier: 7.22.9 + version: 7.22.9 '@babel/preset-env': - specifier: 7.21.5 - version: 7.21.5(@babel/core@7.21.5) - '@babel/register': - specifier: 7.21.0 - version: 7.21.0(@babel/core@7.21.5) + specifier: 7.22.9 + version: 7.22.9(@babel/core@7.22.9) '@babel/runtime': - specifier: 7.21.5 - version: 7.21.5 + specifier: 7.22.6 + version: 7.22.6 '@wordpress/browserslist-config': specifier: 5.20.0 version: 5.20.0 @@ -3798,17 +3753,17 @@ importers: specifier: workspace:* version: link:../../projects/js-packages/eslint-config-target-es '@babel/core': - specifier: 7.21.5 - version: 7.21.5 + specifier: 7.22.9 + version: 7.22.9 '@babel/eslint-parser': - specifier: 7.21.3 - version: 7.21.3(@babel/core@7.21.5)(eslint@8.44.0) + specifier: 7.22.9 + version: 7.22.9(@babel/core@7.22.9)(eslint@8.44.0) '@babel/preset-react': - specifier: 7.18.6 - version: 7.18.6(@babel/core@7.21.5) + specifier: 7.22.5 + version: 7.22.5(@babel/core@7.22.9) '@babel/preset-typescript': - specifier: 7.21.5 - version: 7.21.5(@babel/core@7.21.5) + specifier: 7.22.5 + version: 7.22.5(@babel/core@7.22.9) '@octokit/auth-token': specifier: 4.0.0 version: 4.0.0 @@ -3829,13 +3784,13 @@ importers: version: 5.62.0(eslint@8.44.0)(typescript@5.0.4) '@wordpress/eslint-plugin': specifier: 14.10.0 - version: 14.10.0(@babel/core@7.21.5)(@typescript-eslint/eslint-plugin@5.62.0)(eslint-plugin-import@2.27.5)(eslint-plugin-jest@27.2.2)(eslint-plugin-jsdoc@39.9.1)(eslint-plugin-jsx-a11y@6.7.1)(eslint-plugin-prettier@4.2.1)(eslint-plugin-react-hooks@4.6.0)(eslint-plugin-react@7.32.2)(eslint@8.44.0)(typescript@5.0.4)(wp-prettier@2.8.5) + version: 14.10.0(@babel/core@7.22.9)(@typescript-eslint/eslint-plugin@5.62.0)(eslint-plugin-import@2.27.5)(eslint-plugin-jest@27.2.2)(eslint-plugin-jsdoc@39.9.1)(eslint-plugin-jsx-a11y@6.7.1)(eslint-plugin-prettier@4.2.1)(eslint-plugin-react-hooks@4.6.0)(eslint-plugin-react@7.32.2)(eslint@8.44.0)(typescript@5.0.4)(wp-prettier@2.8.5) '@wordpress/jest-console': specifier: 7.8.0 version: 7.8.0(jest@29.4.3) babel-jest: specifier: 29.4.3 - version: 29.4.3(@babel/core@7.21.5) + version: 29.4.3(@babel/core@7.22.9) chalk: specifier: 4.1.2 version: 4.1.2 @@ -3895,7 +3850,7 @@ importers: version: 5.11.0(eslint@8.44.0)(typescript@5.0.4) eslint-plugin-wpcalypso: specifier: 7.0.0 - version: 7.0.0(@babel/core@7.21.5)(eslint-plugin-inclusive-language@2.2.0)(eslint-plugin-jsdoc@39.9.1)(eslint-plugin-react-hooks@4.6.0)(eslint-plugin-react@7.32.2)(eslint@8.44.0) + version: 7.0.0(@babel/core@7.22.9)(eslint-plugin-inclusive-language@2.2.0)(eslint-plugin-jsdoc@39.9.1)(eslint-plugin-react-hooks@4.6.0)(eslint-plugin-react@7.32.2)(eslint@8.44.0) glob: specifier: 7.1.6 version: 7.1.6 @@ -4063,7 +4018,7 @@ packages: '@automattic/popup-monitor': 1.0.2 dev: false - /@automattic/social-previews@2.0.1-beta.5(@babel/core@7.21.5)(@babel/runtime@7.21.5)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0): + /@automattic/social-previews@2.0.1-beta.5(@babel/core@7.22.9)(@babel/runtime@7.22.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-O/F5DONDXQsPnpC7tHfzzlHMR65+HOJ2h3OKdcvXrW8DlnWPdasX0Q7SN8QLt0bNkMM7bWqf0XIjUnAVn3ShjQ==} peerDependencies: '@babel/runtime': ^7 @@ -4073,8 +4028,8 @@ packages: '@babel/runtime': optional: true dependencies: - '@babel/runtime': 7.21.5 - '@emotion/react': 11.4.1(@babel/core@7.21.5)(@types/react@18.2.14)(react@18.2.0) + '@babel/runtime': 7.22.6 + '@emotion/react': 11.4.1(@babel/core@7.22.9)(@types/react@18.2.14)(react@18.2.0) '@wordpress/components': 25.3.0(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) '@wordpress/element': 5.14.0 '@wordpress/i18n': 4.37.0 @@ -4124,23 +4079,19 @@ packages: dependencies: '@babel/highlight': 7.22.5 - /@babel/compat-data@7.21.7: - resolution: {integrity: sha512-KYMqFYTaenzMK4yUtf4EW9wc4N9ef80FsbMtkwool5zpwl4YrT1SdWYSTRcT94KO4hannogdS+LxY7L+arP3gA==} - engines: {node: '>=6.9.0'} - - /@babel/compat-data@7.22.6: - resolution: {integrity: sha512-29tfsWTq2Ftu7MXmimyC0C5FDZv5DYxOZkh3XD3+QW4V/BYuv/LyEsjj3c0hqedEaDt6DBfDvexMKU8YevdqFg==} + /@babel/compat-data@7.22.9: + resolution: {integrity: sha512-5UamI7xkUcJ3i9qVDS+KFDEK8/7oJ55/sJMB1Ge7IEapr7KfdfV/HErR+koZwOfd+SgtFKOKRhRakdg++DcJpQ==} engines: {node: '>=6.9.0'} - /@babel/core@7.21.5: - resolution: {integrity: sha512-9M398B/QH5DlfCOTKDZT1ozXr0x8uBEeFd+dJraGUZGiaNpGCDVGCc14hZexsMblw3XxltJ+6kSvogp9J+5a9g==} + /@babel/core@7.22.9: + resolution: {integrity: sha512-G2EgeufBcYw27U4hhoIwFcgc1XU7TlXJ3mv04oOv1WCuo900U/anZSPzEqNjwdjgffkk2Gs0AN0dW1CKVLcG7w==} engines: {node: '>=6.9.0'} dependencies: '@ampproject/remapping': 2.2.1 '@babel/code-frame': 7.22.5 - '@babel/generator': 7.22.7 - '@babel/helper-compilation-targets': 7.21.5(@babel/core@7.21.5) - '@babel/helper-module-transforms': 7.22.5 + '@babel/generator': 7.22.9 + '@babel/helper-compilation-targets': 7.22.9(@babel/core@7.22.9) + '@babel/helper-module-transforms': 7.22.9(@babel/core@7.22.9) '@babel/helpers': 7.22.6 '@babel/parser': 7.22.7 '@babel/template': 7.22.5 @@ -4150,36 +4101,26 @@ packages: debug: 4.3.4 gensync: 1.0.0-beta.2 json5: 2.2.3 - semver: 6.3.0 + semver: 6.3.1 transitivePeerDependencies: - supports-color - /@babel/eslint-parser@7.21.3(@babel/core@7.21.5)(eslint@8.44.0): - resolution: {integrity: sha512-kfhmPimwo6k4P8zxNs8+T7yR44q1LdpsZdE1NkCsVlfiuTPRfnGgjaF8Qgug9q9Pou17u6wneYF0lDCZJATMFg==} + /@babel/eslint-parser@7.22.9(@babel/core@7.22.9)(eslint@8.44.0): + resolution: {integrity: sha512-xdMkt39/nviO/4vpVdrEYPwXCsYIXSSAr6mC7WQsNIlGnuxKyKE7GZjalcnbSWiC4OXGNNN3UQPeHfjSC6sTDA==} engines: {node: ^10.13.0 || ^12.13.0 || >=14.0.0} peerDependencies: '@babel/core': '>=7.11.0' eslint: ^7.5.0 || ^8.0.0 dependencies: - '@babel/core': 7.21.5 + '@babel/core': 7.22.9 '@nicolo-ribaudo/eslint-scope-5-internals': 5.1.1-v1 eslint: 8.44.0 eslint-visitor-keys: 2.1.0 - semver: 6.3.0 + semver: 6.3.1 dev: true - /@babel/generator@7.21.9: - resolution: {integrity: sha512-F3fZga2uv09wFdEjEQIJxXALXfz0+JaOb7SabvVMmjHxeVTuGW8wgE8Vp1Hd7O+zMTYtcfEISGRzPkeiaPPsvg==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/types': 7.22.5 - '@jridgewell/gen-mapping': 0.3.3 - '@jridgewell/trace-mapping': 0.3.18 - jsesc: 2.5.2 - dev: true - - /@babel/generator@7.22.7: - resolution: {integrity: sha512-p+jPjMG+SI8yvIaxGgeW24u7q9+5+TGpZh8/CuB7RhBKd7RCy8FayNEFNNKrNK/eUcY/4ExQqLmyrvBXKsIcwQ==} + /@babel/generator@7.22.9: + resolution: {integrity: sha512-KtLMbmicyuK2Ak/FTCJVbDnkN1SlT8/kceFTiuDiiRUUSMnHMidxSCdG4ndkTOHHpoomWe/4xkvHkEOncwjYIw==} engines: {node: '>=6.9.0'} dependencies: '@babel/types': 7.22.5 @@ -4199,39 +4140,26 @@ packages: dependencies: '@babel/types': 7.22.5 - /@babel/helper-compilation-targets@7.21.5(@babel/core@7.21.5): - resolution: {integrity: sha512-1RkbFGUKex4lvsB9yhIfWltJM5cZKUftB2eNajaDv3dCMEp49iBG0K14uH8NnX9IPux2+mK7JGEOB0jn48/J6w==} + /@babel/helper-compilation-targets@7.22.9(@babel/core@7.22.9): + resolution: {integrity: sha512-7qYrNM6HjpnPHJbopxmb8hSPoZ0gsX8IvUS32JGVoy+pU9e5N0nLr1VjJoR6kA4d9dmGLxNYOjeB8sUDal2WMw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/compat-data': 7.21.7 - '@babel/core': 7.21.5 + '@babel/compat-data': 7.22.9 + '@babel/core': 7.22.9 '@babel/helper-validator-option': 7.22.5 browserslist: 4.21.9 lru-cache: 5.1.1 - semver: 6.3.0 + semver: 6.3.1 - /@babel/helper-compilation-targets@7.22.6(@babel/core@7.21.5): - resolution: {integrity: sha512-534sYEqWD9VfUm3IPn2SLcH4Q3P86XL+QvqdC7ZsFrzyyPF3T4XGiVghF6PTYNdWg6pXuoqXxNQAhbYeEInTzA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/compat-data': 7.22.6 - '@babel/core': 7.21.5 - '@babel/helper-validator-option': 7.22.5 - '@nicolo-ribaudo/semver-v6': 6.3.3 - browserslist: 4.21.9 - lru-cache: 5.1.1 - - /@babel/helper-create-class-features-plugin@7.22.6(@babel/core@7.21.5): + /@babel/helper-create-class-features-plugin@7.22.6(@babel/core@7.22.9): resolution: {integrity: sha512-iwdzgtSiBxF6ni6mzVnZCF3xt5qE6cEA0J7nFt8QOAWZ0zjCFceEgpn3vtb2V7WFR6QzP2jmIFOHMTRo7eNJjQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.21.5 + '@babel/core': 7.22.9 '@babel/helper-annotate-as-pure': 7.22.5 '@babel/helper-environment-visitor': 7.22.5 '@babel/helper-function-name': 7.22.5 @@ -4244,29 +4172,28 @@ packages: transitivePeerDependencies: - supports-color - /@babel/helper-create-regexp-features-plugin@7.22.6(@babel/core@7.21.5): + /@babel/helper-create-regexp-features-plugin@7.22.6(@babel/core@7.22.9): resolution: {integrity: sha512-nBookhLKxAWo/TUCmhnaEJyLz2dekjQvv5SRpE9epWQBcpedWLKt8aZdsuT9XV5ovzR3fENLjRXVT0GsSlGGhA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.21.5 + '@babel/core': 7.22.9 '@babel/helper-annotate-as-pure': 7.22.5 '@nicolo-ribaudo/semver-v6': 6.3.3 regexpu-core: 5.3.2 - /@babel/helper-define-polyfill-provider@0.3.3(@babel/core@7.21.5): - resolution: {integrity: sha512-z5aQKU4IzbqCC1XH0nAqfsFLMVSo22SBKUc0BxGrLkolTdPTructy0ToNnlO2zA4j9Q/7pjMZf0DSY+DSTYzww==} + /@babel/helper-define-polyfill-provider@0.4.1(@babel/core@7.22.9): + resolution: {integrity: sha512-kX4oXixDxG197yhX+J3Wp+NpL2wuCFjWQAr6yX2jtCnflK9ulMI51ULFGIrWiX1jGfvAxdHp+XQCcP2bZGPs9A==} peerDependencies: '@babel/core': ^7.4.0-0 dependencies: - '@babel/core': 7.21.5 - '@babel/helper-compilation-targets': 7.21.5(@babel/core@7.21.5) + '@babel/core': 7.22.9 + '@babel/helper-compilation-targets': 7.22.9(@babel/core@7.22.9) '@babel/helper-plugin-utils': 7.22.5 debug: 4.3.4 lodash.debounce: 4.0.8 resolve: 1.22.2 - semver: 6.3.0 transitivePeerDependencies: - supports-color @@ -4299,20 +4226,18 @@ packages: dependencies: '@babel/types': 7.22.5 - /@babel/helper-module-transforms@7.22.5: - resolution: {integrity: sha512-+hGKDt/Ze8GFExiVHno/2dvG5IdstpzCq0y4Qc9OJ25D4q3pKfiIP/4Vp3/JvhDkLKsDK2api3q3fpIgiIF5bw==} + /@babel/helper-module-transforms@7.22.9(@babel/core@7.22.9): + resolution: {integrity: sha512-t+WA2Xn5K+rTeGtC8jCsdAH52bjggG5TKRuRrAGNM/mjIbO4GxvlLMFOEz9wXY5I2XQ60PMFsAG2WIcG82dQMQ==} engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 dependencies: + '@babel/core': 7.22.9 '@babel/helper-environment-visitor': 7.22.5 '@babel/helper-module-imports': 7.22.5 '@babel/helper-simple-access': 7.22.5 '@babel/helper-split-export-declaration': 7.22.6 '@babel/helper-validator-identifier': 7.22.5 - '@babel/template': 7.22.5 - '@babel/traverse': 7.22.8 - '@babel/types': 7.22.5 - transitivePeerDependencies: - - supports-color /@babel/helper-optimise-call-expression@7.22.5: resolution: {integrity: sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==} @@ -4324,13 +4249,13 @@ packages: resolution: {integrity: sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==} engines: {node: '>=6.9.0'} - /@babel/helper-remap-async-to-generator@7.22.5(@babel/core@7.21.5): + /@babel/helper-remap-async-to-generator@7.22.5(@babel/core@7.22.9): resolution: {integrity: sha512-cU0Sq1Rf4Z55fgz7haOakIyM7+x/uCFwXpLPaeRzfoUtAEAuUZjZvFPjL/rk5rW693dIgn2hng1W7xbT7lWT4g==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.21.5 + '@babel/core': 7.22.9 '@babel/helper-annotate-as-pure': 7.22.5 '@babel/helper-environment-visitor': 7.22.5 '@babel/helper-wrap-function': 7.22.5 @@ -4410,14 +4335,6 @@ packages: chalk: 2.4.2 js-tokens: 4.0.0 - /@babel/parser@7.21.9: - resolution: {integrity: sha512-q5PNg/Bi1OpGgx5jYlvWZwAorZepEudDMCLtj967aeS7WMont7dUZI46M2XwcIQqvUlMxWfdLFu4S/qSxeUu5g==} - engines: {node: '>=6.0.0'} - hasBin: true - dependencies: - '@babel/types': 7.22.5 - dev: true - /@babel/parser@7.22.7: resolution: {integrity: sha512-7NF8pOkHP5o2vpmGgNGcfAeCvOYhGLyA3Z4eBQkT1RJlWu47n63bCs93QfJ2hIAFCil7L5P2IWhs1oToVgrL0Q==} engines: {node: '>=6.0.0'} @@ -4425,422 +4342,355 @@ packages: dependencies: '@babel/types': 7.22.5 - /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.22.5(@babel/core@7.21.5): + /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.22.5(@babel/core@7.22.9): resolution: {integrity: sha512-NP1M5Rf+u2Gw9qfSO4ihjcTGW5zXTi36ITLd4/EoAcEhIZ0yjMqmftDNl3QC19CX7olhrjpyU454g/2W7X0jvQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.21.5 + '@babel/core': 7.22.9 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.22.5(@babel/core@7.21.5): + /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.22.5(@babel/core@7.22.9): resolution: {integrity: sha512-31Bb65aZaUwqCbWMnZPduIZxCBngHFlzyN6Dq6KAJjtx+lx6ohKHubc61OomYi7XwVD4Ol0XCVz4h+pYFR048g==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.13.0 dependencies: - '@babel/core': 7.21.5 + '@babel/core': 7.22.9 '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 - '@babel/plugin-transform-optional-chaining': 7.22.6(@babel/core@7.21.5) + '@babel/plugin-transform-optional-chaining': 7.22.6(@babel/core@7.22.9) - /@babel/plugin-proposal-async-generator-functions@7.20.7(@babel/core@7.21.5): - resolution: {integrity: sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.21.5 - '@babel/helper-environment-visitor': 7.22.5 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-remap-async-to-generator': 7.22.5(@babel/core@7.21.5) - '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.21.5) - transitivePeerDependencies: - - supports-color - - /@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.21.5): + /@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.22.9): resolution: {integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.21.5 - '@babel/helper-create-class-features-plugin': 7.22.6(@babel/core@7.21.5) + '@babel/core': 7.22.9 + '@babel/helper-create-class-features-plugin': 7.22.6(@babel/core@7.22.9) '@babel/helper-plugin-utils': 7.22.5 transitivePeerDependencies: - supports-color - /@babel/plugin-proposal-class-static-block@7.21.0(@babel/core@7.21.5): - resolution: {integrity: sha512-XP5G9MWNUskFuP30IfFSEFB0Z6HzLIUcjYM4bYOPHXl7eiJ9HFv8tWj6TXTN5QODiEhDZAeI4hLok2iHFFV4hw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.12.0 - dependencies: - '@babel/core': 7.21.5 - '@babel/helper-create-class-features-plugin': 7.22.6(@babel/core@7.21.5) - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.21.5) - transitivePeerDependencies: - - supports-color - - /@babel/plugin-proposal-dynamic-import@7.18.6(@babel/core@7.21.5): - resolution: {integrity: sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.21.5 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.21.5) - - /@babel/plugin-proposal-export-namespace-from@7.18.9(@babel/core@7.21.5): - resolution: {integrity: sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.21.5 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.21.5) - - /@babel/plugin-proposal-json-strings@7.18.6(@babel/core@7.21.5): - resolution: {integrity: sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.21.5 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.21.5) - - /@babel/plugin-proposal-logical-assignment-operators@7.20.7(@babel/core@7.21.5): - resolution: {integrity: sha512-y7C7cZgpMIjWlKE5T7eJwp+tnRYM89HmRvWM5EQuB5BoHEONjmQ8lSNmBUwOyy/GFRsohJED51YBF79hE1djug==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.21.5 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.21.5) - - /@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.21.5): + /@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.22.9): resolution: {integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.21.5 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.21.5) - - /@babel/plugin-proposal-numeric-separator@7.18.6(@babel/core@7.21.5): - resolution: {integrity: sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.21.5 + '@babel/core': 7.22.9 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.21.5) - - /@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.21.5): - resolution: {integrity: sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/compat-data': 7.21.7 - '@babel/core': 7.21.5 - '@babel/helper-compilation-targets': 7.21.5(@babel/core@7.21.5) - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.21.5) - '@babel/plugin-transform-parameters': 7.22.5(@babel/core@7.21.5) - - /@babel/plugin-proposal-optional-catch-binding@7.18.6(@babel/core@7.21.5): - resolution: {integrity: sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.21.5 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.21.5) + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.22.9) + dev: true - /@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.21.5): + /@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.22.9): resolution: {integrity: sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.21.5 + '@babel/core': 7.22.9 '@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.21.5) - - /@babel/plugin-proposal-private-methods@7.18.6(@babel/core@7.21.5): - resolution: {integrity: sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.21.5 - '@babel/helper-create-class-features-plugin': 7.22.6(@babel/core@7.21.5) - '@babel/helper-plugin-utils': 7.22.5 - transitivePeerDependencies: - - supports-color + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.22.9) + dev: true - /@babel/plugin-proposal-private-property-in-object@7.21.11(@babel/core@7.21.5): - resolution: {integrity: sha512-0QZ8qP/3RLDVBwBFoWAwCtgcDZJVwA5LUJRZU8x2YFfKNuFq161wK3cuGrALu5yiPu+vzwTAg/sMWVNeWeNyaw==} + /@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.22.9): + resolution: {integrity: sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.21.5 - '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-create-class-features-plugin': 7.22.6(@babel/core@7.21.5) - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.21.5) - transitivePeerDependencies: - - supports-color + '@babel/core': 7.22.9 - /@babel/plugin-proposal-unicode-property-regex@7.18.6(@babel/core@7.21.5): + /@babel/plugin-proposal-unicode-property-regex@7.18.6(@babel/core@7.22.9): resolution: {integrity: sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==} engines: {node: '>=4'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.21.5 - '@babel/helper-create-regexp-features-plugin': 7.22.6(@babel/core@7.21.5) + '@babel/core': 7.22.9 + '@babel/helper-create-regexp-features-plugin': 7.22.6(@babel/core@7.22.9) '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.21.5): + /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.22.9): resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.21.5 + '@babel/core': 7.22.9 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.21.5): + /@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.22.9): resolution: {integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.21.5 + '@babel/core': 7.22.9 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.21.5): + /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.22.9): resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.21.5 + '@babel/core': 7.22.9 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.21.5): + /@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.22.9): resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.21.5 + '@babel/core': 7.22.9 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.21.5): + /@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.22.9): resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.21.5 + '@babel/core': 7.22.9 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.21.5): + /@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.22.9): resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.21.5 + '@babel/core': 7.22.9 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-flow@7.22.5(@babel/core@7.21.5): + /@babel/plugin-syntax-flow@7.22.5(@babel/core@7.22.9): resolution: {integrity: sha512-9RdCl0i+q0QExayk2nOS7853w08yLucnnPML6EN9S8fgMPVtdLDCdx/cOQ/i44Lb9UeQX9A35yaqBBOMMZxPxQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.21.5 + '@babel/core': 7.22.9 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-import-assertions@7.22.5(@babel/core@7.21.5): + /@babel/plugin-syntax-import-assertions@7.22.5(@babel/core@7.22.9): resolution: {integrity: sha512-rdV97N7KqsRzeNGoWUOK6yUsWarLjE5Su/Snk9IYPU9CwkWHs4t+rTGOvffTR8XGkJMTAdLfO0xVnXm8wugIJg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.21.5 + '@babel/core': 7.22.9 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.21.5): - resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==} + /@babel/plugin-syntax-import-attributes@7.22.5(@babel/core@7.22.9): + resolution: {integrity: sha512-KwvoWDeNKPETmozyFE0P2rOLqh39EoQHNjqizrI5B8Vt0ZNS7M56s7dAiAqbYfiAYOuIzIh96z3iR2ktgu3tEg==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.21.5 + '@babel/core': 7.22.9 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.21.5): - resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==} + /@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.22.9): + resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.21.5 + '@babel/core': 7.22.9 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-jsx@7.21.4(@babel/core@7.21.5): - resolution: {integrity: sha512-5hewiLct5OKyh6PLKEYaFclcqtIgCb6bmELouxjF6up5q3Sov7rOayW4RwhbaBL0dit8rA80GNfY+UuDp2mBbQ==} - engines: {node: '>=6.9.0'} + /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.22.9): + resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.21.5 + '@babel/core': 7.22.9 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-jsx@7.22.5(@babel/core@7.21.5): + /@babel/plugin-syntax-jsx@7.22.5(@babel/core@7.22.9): resolution: {integrity: sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.21.5 + '@babel/core': 7.22.9 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.21.5): + /@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.22.9): resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.21.5 + '@babel/core': 7.22.9 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.21.5): + /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.22.9): resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.21.5 + '@babel/core': 7.22.9 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.21.5): + /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.22.9): resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.21.5 + '@babel/core': 7.22.9 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.21.5): + /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.22.9): resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.21.5 + '@babel/core': 7.22.9 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.21.5): + /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.22.9): resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.21.5 + '@babel/core': 7.22.9 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.21.5): + /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.22.9): resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.21.5 + '@babel/core': 7.22.9 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.21.5): + /@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.22.9): resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.21.5 + '@babel/core': 7.22.9 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.21.5): + /@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.22.9): resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.21.5 + '@babel/core': 7.22.9 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-typescript@7.22.5(@babel/core@7.21.5): + /@babel/plugin-syntax-typescript@7.22.5(@babel/core@7.22.9): resolution: {integrity: sha512-1mS2o03i7t1c6VzH6fdQ3OA8tcEIxwG18zIPRp+UY1Ihv6W+XZzBCVxExF9upussPXJ0xE9XRHwMoNs1ep/nRQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.21.5 + '@babel/core': 7.22.9 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-arrow-functions@7.22.5(@babel/core@7.21.5): + /@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.22.9): + resolution: {integrity: sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.22.9 + '@babel/helper-create-regexp-features-plugin': 7.22.6(@babel/core@7.22.9) + '@babel/helper-plugin-utils': 7.22.5 + + /@babel/plugin-transform-arrow-functions@7.22.5(@babel/core@7.22.9): resolution: {integrity: sha512-26lTNXoVRdAnsaDXPpvCNUq+OVWEVC6bx7Vvz9rC53F2bagUWW4u4ii2+h8Fejfh7RYqPxn+libeFBBck9muEw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.21.5 + '@babel/core': 7.22.9 + '@babel/helper-plugin-utils': 7.22.5 + + /@babel/plugin-transform-async-generator-functions@7.22.7(@babel/core@7.22.9): + resolution: {integrity: sha512-7HmE7pk/Fmke45TODvxvkxRMV9RazV+ZZzhOL9AG8G29TLrr3jkjwF7uJfxZ30EoXpO+LJkq4oA8NjO2DTnEDg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.9 + '@babel/helper-environment-visitor': 7.22.5 '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-remap-async-to-generator': 7.22.5(@babel/core@7.22.9) + '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.22.9) + transitivePeerDependencies: + - supports-color - /@babel/plugin-transform-async-to-generator@7.22.5(@babel/core@7.21.5): + /@babel/plugin-transform-async-to-generator@7.22.5(@babel/core@7.22.9): resolution: {integrity: sha512-b1A8D8ZzE/VhNDoV1MSJTnpKkCG5bJo+19R4o4oy03zM7ws8yEMK755j61Dc3EyvdysbqH5BOOTquJ7ZX9C6vQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.21.5 + '@babel/core': 7.22.9 '@babel/helper-module-imports': 7.22.5 '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-remap-async-to-generator': 7.22.5(@babel/core@7.21.5) + '@babel/helper-remap-async-to-generator': 7.22.5(@babel/core@7.22.9) transitivePeerDependencies: - supports-color - /@babel/plugin-transform-block-scoped-functions@7.22.5(@babel/core@7.21.5): + /@babel/plugin-transform-block-scoped-functions@7.22.5(@babel/core@7.22.9): resolution: {integrity: sha512-tdXZ2UdknEKQWKJP1KMNmuF5Lx3MymtMN/pvA+p/VEkhK8jVcQ1fzSy8KM9qRYhAf2/lV33hoMPKI/xaI9sADA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.21.5 + '@babel/core': 7.22.9 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-block-scoping@7.22.5(@babel/core@7.21.5): + /@babel/plugin-transform-block-scoping@7.22.5(@babel/core@7.22.9): resolution: {integrity: sha512-EcACl1i5fSQ6bt+YGuU/XGCeZKStLmyVGytWkpyhCLeQVA0eu6Wtiw92V+I1T/hnezUv7j74dA/Ro69gWcU+hg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.21.5 + '@babel/core': 7.22.9 + '@babel/helper-plugin-utils': 7.22.5 + + /@babel/plugin-transform-class-properties@7.22.5(@babel/core@7.22.9): + resolution: {integrity: sha512-nDkQ0NfkOhPTq8YCLiWNxp1+f9fCobEjCb0n8WdbNUBc4IB5V7P1QnX9IjpSoquKrXF5SKojHleVNs2vGeHCHQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.9 + '@babel/helper-create-class-features-plugin': 7.22.6(@babel/core@7.22.9) + '@babel/helper-plugin-utils': 7.22.5 + transitivePeerDependencies: + - supports-color + + /@babel/plugin-transform-class-static-block@7.22.5(@babel/core@7.22.9): + resolution: {integrity: sha512-SPToJ5eYZLxlnp1UzdARpOGeC2GbHvr9d/UV0EukuVx8atktg194oe+C5BqQ8jRTkgLRVOPYeXRSBg1IlMoVRA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.12.0 + dependencies: + '@babel/core': 7.22.9 + '@babel/helper-create-class-features-plugin': 7.22.6(@babel/core@7.22.9) '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.22.9) + transitivePeerDependencies: + - supports-color - /@babel/plugin-transform-classes@7.22.6(@babel/core@7.21.5): + /@babel/plugin-transform-classes@7.22.6(@babel/core@7.22.9): resolution: {integrity: sha512-58EgM6nuPNG6Py4Z3zSuu0xWu2VfodiMi72Jt5Kj2FECmaYk1RrTXA45z6KBFsu9tRgwQDwIiY4FXTt+YsSFAQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.21.5 + '@babel/core': 7.22.9 '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-compilation-targets': 7.22.6(@babel/core@7.21.5) + '@babel/helper-compilation-targets': 7.22.9(@babel/core@7.22.9) '@babel/helper-environment-visitor': 7.22.5 '@babel/helper-function-name': 7.22.5 '@babel/helper-optimise-call-expression': 7.22.5 @@ -4851,538 +4701,650 @@ packages: transitivePeerDependencies: - supports-color - /@babel/plugin-transform-computed-properties@7.22.5(@babel/core@7.21.5): + /@babel/plugin-transform-computed-properties@7.22.5(@babel/core@7.22.9): resolution: {integrity: sha512-4GHWBgRf0krxPX+AaPtgBAlTgTeZmqDynokHOX7aqqAB4tHs3U2Y02zH6ETFdLZGcg9UQSD1WCmkVrE9ErHeOg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.21.5 + '@babel/core': 7.22.9 '@babel/helper-plugin-utils': 7.22.5 '@babel/template': 7.22.5 - /@babel/plugin-transform-destructuring@7.22.5(@babel/core@7.21.5): + /@babel/plugin-transform-destructuring@7.22.5(@babel/core@7.22.9): resolution: {integrity: sha512-GfqcFuGW8vnEqTUBM7UtPd5A4q797LTvvwKxXTgRsFjoqaJiEg9deBG6kWeQYkVEL569NpnmpC0Pkr/8BLKGnQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.21.5 + '@babel/core': 7.22.9 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-dotall-regex@7.22.5(@babel/core@7.21.5): + /@babel/plugin-transform-dotall-regex@7.22.5(@babel/core@7.22.9): resolution: {integrity: sha512-5/Yk9QxCQCl+sOIB1WelKnVRxTJDSAIxtJLL2/pqL14ZVlbH0fUQUZa/T5/UnQtBNgghR7mfB8ERBKyKPCi7Vw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.21.5 - '@babel/helper-create-regexp-features-plugin': 7.22.6(@babel/core@7.21.5) + '@babel/core': 7.22.9 + '@babel/helper-create-regexp-features-plugin': 7.22.6(@babel/core@7.22.9) '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-duplicate-keys@7.22.5(@babel/core@7.21.5): + /@babel/plugin-transform-duplicate-keys@7.22.5(@babel/core@7.22.9): resolution: {integrity: sha512-dEnYD+9BBgld5VBXHnF/DbYGp3fqGMsyxKbtD1mDyIA7AkTSpKXFhCVuj/oQVOoALfBs77DudA0BE4d5mcpmqw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.21.5 + '@babel/core': 7.22.9 + '@babel/helper-plugin-utils': 7.22.5 + + /@babel/plugin-transform-dynamic-import@7.22.5(@babel/core@7.22.9): + resolution: {integrity: sha512-0MC3ppTB1AMxd8fXjSrbPa7LT9hrImt+/fcj+Pg5YMD7UQyWp/02+JWpdnCymmsXwIx5Z+sYn1bwCn4ZJNvhqQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.9 '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.22.9) - /@babel/plugin-transform-exponentiation-operator@7.22.5(@babel/core@7.21.5): + /@babel/plugin-transform-exponentiation-operator@7.22.5(@babel/core@7.22.9): resolution: {integrity: sha512-vIpJFNM/FjZ4rh1myqIya9jXwrwwgFRHPjT3DkUA9ZLHuzox8jiXkOLvwm1H+PQIP3CqfC++WPKeuDi0Sjdj1g==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.21.5 + '@babel/core': 7.22.9 '@babel/helper-builder-binary-assignment-operator-visitor': 7.22.5 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-flow-strip-types@7.22.5(@babel/core@7.21.5): + /@babel/plugin-transform-export-namespace-from@7.22.5(@babel/core@7.22.9): + resolution: {integrity: sha512-X4hhm7FRnPgd4nDA4b/5V280xCx6oL7Oob5+9qVS5C13Zq4bh1qq7LU0GgRU6b5dBWBvhGaXYVB4AcN6+ol6vg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.9 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.22.9) + + /@babel/plugin-transform-flow-strip-types@7.22.5(@babel/core@7.22.9): resolution: {integrity: sha512-tujNbZdxdG0/54g/oua8ISToaXTFBf8EnSb5PgQSciIXWOWKX3S4+JR7ZE9ol8FZwf9kxitzkGQ+QWeov/mCiA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.21.5 + '@babel/core': 7.22.9 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-flow': 7.22.5(@babel/core@7.21.5) + '@babel/plugin-syntax-flow': 7.22.5(@babel/core@7.22.9) dev: true - /@babel/plugin-transform-for-of@7.22.5(@babel/core@7.21.5): + /@babel/plugin-transform-for-of@7.22.5(@babel/core@7.22.9): resolution: {integrity: sha512-3kxQjX1dU9uudwSshyLeEipvrLjBCVthCgeTp6CzE/9JYrlAIaeekVxRpCWsDDfYTfRZRoCeZatCQvwo+wvK8A==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.21.5 + '@babel/core': 7.22.9 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-function-name@7.22.5(@babel/core@7.21.5): + /@babel/plugin-transform-function-name@7.22.5(@babel/core@7.22.9): resolution: {integrity: sha512-UIzQNMS0p0HHiQm3oelztj+ECwFnj+ZRV4KnguvlsD2of1whUeM6o7wGNj6oLwcDoAXQ8gEqfgC24D+VdIcevg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.21.5 - '@babel/helper-compilation-targets': 7.22.6(@babel/core@7.21.5) + '@babel/core': 7.22.9 + '@babel/helper-compilation-targets': 7.22.9(@babel/core@7.22.9) '@babel/helper-function-name': 7.22.5 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-literals@7.22.5(@babel/core@7.21.5): + /@babel/plugin-transform-json-strings@7.22.5(@babel/core@7.22.9): + resolution: {integrity: sha512-DuCRB7fu8MyTLbEQd1ew3R85nx/88yMoqo2uPSjevMj3yoN7CDM8jkgrY0wmVxfJZyJ/B9fE1iq7EQppWQmR5A==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.9 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.22.9) + + /@babel/plugin-transform-literals@7.22.5(@babel/core@7.22.9): resolution: {integrity: sha512-fTLj4D79M+mepcw3dgFBTIDYpbcB9Sm0bpm4ppXPaO+U+PKFFyV9MGRvS0gvGw62sd10kT5lRMKXAADb9pWy8g==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.21.5 + '@babel/core': 7.22.9 + '@babel/helper-plugin-utils': 7.22.5 + + /@babel/plugin-transform-logical-assignment-operators@7.22.5(@babel/core@7.22.9): + resolution: {integrity: sha512-MQQOUW1KL8X0cDWfbwYP+TbVbZm16QmQXJQ+vndPtH/BoO0lOKpVoEDMI7+PskYxH+IiE0tS8xZye0qr1lGzSA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.9 '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.22.9) - /@babel/plugin-transform-member-expression-literals@7.22.5(@babel/core@7.21.5): + /@babel/plugin-transform-member-expression-literals@7.22.5(@babel/core@7.22.9): resolution: {integrity: sha512-RZEdkNtzzYCFl9SE9ATaUMTj2hqMb4StarOJLrZRbqqU4HSBE7UlBw9WBWQiDzrJZJdUWiMTVDI6Gv/8DPvfew==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.21.5 + '@babel/core': 7.22.9 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-modules-amd@7.22.5(@babel/core@7.21.5): + /@babel/plugin-transform-modules-amd@7.22.5(@babel/core@7.22.9): resolution: {integrity: sha512-R+PTfLTcYEmb1+kK7FNkhQ1gP4KgjpSO6HfH9+f8/yfp2Nt3ggBjiVpRwmwTlfqZLafYKJACy36yDXlEmI9HjQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.21.5 - '@babel/helper-module-transforms': 7.22.5 + '@babel/core': 7.22.9 + '@babel/helper-module-transforms': 7.22.9(@babel/core@7.22.9) '@babel/helper-plugin-utils': 7.22.5 - transitivePeerDependencies: - - supports-color - /@babel/plugin-transform-modules-commonjs@7.22.5(@babel/core@7.21.5): + /@babel/plugin-transform-modules-commonjs@7.22.5(@babel/core@7.22.9): resolution: {integrity: sha512-B4pzOXj+ONRmuaQTg05b3y/4DuFz3WcCNAXPLb2Q0GT0TrGKGxNKV4jwsXts+StaM0LQczZbOpj8o1DLPDJIiA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.21.5 - '@babel/helper-module-transforms': 7.22.5 + '@babel/core': 7.22.9 + '@babel/helper-module-transforms': 7.22.9(@babel/core@7.22.9) '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-simple-access': 7.22.5 - transitivePeerDependencies: - - supports-color - /@babel/plugin-transform-modules-systemjs@7.22.5(@babel/core@7.21.5): + /@babel/plugin-transform-modules-systemjs@7.22.5(@babel/core@7.22.9): resolution: {integrity: sha512-emtEpoaTMsOs6Tzz+nbmcePl6AKVtS1yC4YNAeMun9U8YCsgadPNxnOPQ8GhHFB2qdx+LZu9LgoC0Lthuu05DQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.21.5 + '@babel/core': 7.22.9 '@babel/helper-hoist-variables': 7.22.5 - '@babel/helper-module-transforms': 7.22.5 + '@babel/helper-module-transforms': 7.22.9(@babel/core@7.22.9) '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-validator-identifier': 7.22.5 - transitivePeerDependencies: - - supports-color - /@babel/plugin-transform-modules-umd@7.22.5(@babel/core@7.21.5): + /@babel/plugin-transform-modules-umd@7.22.5(@babel/core@7.22.9): resolution: {integrity: sha512-+S6kzefN/E1vkSsKx8kmQuqeQsvCKCd1fraCM7zXm4SFoggI099Tr4G8U81+5gtMdUeMQ4ipdQffbKLX0/7dBQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.21.5 - '@babel/helper-module-transforms': 7.22.5 + '@babel/core': 7.22.9 + '@babel/helper-module-transforms': 7.22.9(@babel/core@7.22.9) '@babel/helper-plugin-utils': 7.22.5 - transitivePeerDependencies: - - supports-color - /@babel/plugin-transform-named-capturing-groups-regex@7.22.5(@babel/core@7.21.5): + /@babel/plugin-transform-named-capturing-groups-regex@7.22.5(@babel/core@7.22.9): resolution: {integrity: sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.21.5 - '@babel/helper-create-regexp-features-plugin': 7.22.6(@babel/core@7.21.5) + '@babel/core': 7.22.9 + '@babel/helper-create-regexp-features-plugin': 7.22.6(@babel/core@7.22.9) '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-new-target@7.22.5(@babel/core@7.21.5): + /@babel/plugin-transform-new-target@7.22.5(@babel/core@7.22.9): resolution: {integrity: sha512-AsF7K0Fx/cNKVyk3a+DW0JLo+Ua598/NxMRvxDnkpCIGFh43+h/v2xyhRUYf6oD8gE4QtL83C7zZVghMjHd+iw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.21.5 + '@babel/core': 7.22.9 + '@babel/helper-plugin-utils': 7.22.5 + + /@babel/plugin-transform-nullish-coalescing-operator@7.22.5(@babel/core@7.22.9): + resolution: {integrity: sha512-6CF8g6z1dNYZ/VXok5uYkkBBICHZPiGEl7oDnAx2Mt1hlHVHOSIKWJaXHjQJA5VB43KZnXZDIexMchY4y2PGdA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.9 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.22.9) + + /@babel/plugin-transform-numeric-separator@7.22.5(@babel/core@7.22.9): + resolution: {integrity: sha512-NbslED1/6M+sXiwwtcAB/nieypGw02Ejf4KtDeMkCEpP6gWFMX1wI9WKYua+4oBneCCEmulOkRpwywypVZzs/g==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.9 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.22.9) + + /@babel/plugin-transform-object-rest-spread@7.22.5(@babel/core@7.22.9): + resolution: {integrity: sha512-Kk3lyDmEslH9DnvCDA1s1kkd3YWQITiBOHngOtDL9Pt6BZjzqb6hiOlb8VfjiiQJ2unmegBqZu0rx5RxJb5vmQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/compat-data': 7.22.9 + '@babel/core': 7.22.9 + '@babel/helper-compilation-targets': 7.22.9(@babel/core@7.22.9) '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.22.9) + '@babel/plugin-transform-parameters': 7.22.5(@babel/core@7.22.9) - /@babel/plugin-transform-object-super@7.22.5(@babel/core@7.21.5): + /@babel/plugin-transform-object-super@7.22.5(@babel/core@7.22.9): resolution: {integrity: sha512-klXqyaT9trSjIUrcsYIfETAzmOEZL3cBYqOYLJxBHfMFFggmXOv+NYSX/Jbs9mzMVESw/WycLFPRx8ba/b2Ipw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.21.5 + '@babel/core': 7.22.9 '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-replace-supers': 7.22.5 transitivePeerDependencies: - supports-color - /@babel/plugin-transform-optional-chaining@7.22.6(@babel/core@7.21.5): + /@babel/plugin-transform-optional-catch-binding@7.22.5(@babel/core@7.22.9): + resolution: {integrity: sha512-pH8orJahy+hzZje5b8e2QIlBWQvGpelS76C63Z+jhZKsmzfNaPQ+LaW6dcJ9bxTpo1mtXbgHwy765Ro3jftmUg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.9 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.22.9) + + /@babel/plugin-transform-optional-chaining@7.22.6(@babel/core@7.22.9): resolution: {integrity: sha512-Vd5HiWml0mDVtcLHIoEU5sw6HOUW/Zk0acLs/SAeuLzkGNOPc9DB4nkUajemhCmTIz3eiaKREZn2hQQqF79YTg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.21.5 + '@babel/core': 7.22.9 '@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.21.5) + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.22.9) - /@babel/plugin-transform-parameters@7.22.5(@babel/core@7.21.5): + /@babel/plugin-transform-parameters@7.22.5(@babel/core@7.22.9): resolution: {integrity: sha512-AVkFUBurORBREOmHRKo06FjHYgjrabpdqRSwq6+C7R5iTCZOsM4QbcB27St0a4U6fffyAOqh3s/qEfybAhfivg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.21.5 + '@babel/core': 7.22.9 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-property-literals@7.22.5(@babel/core@7.21.5): - resolution: {integrity: sha512-TiOArgddK3mK/x1Qwf5hay2pxI6wCZnvQqrFSqbtg1GLl2JcNMitVH/YnqjP+M31pLUeTfzY1HAXFDnUBV30rQ==} + /@babel/plugin-transform-private-methods@7.22.5(@babel/core@7.22.9): + resolution: {integrity: sha512-PPjh4gyrQnGe97JTalgRGMuU4icsZFnWkzicB/fUtzlKUqvsWBKEpPPfr5a2JiyirZkHxnAqkQMO5Z5B2kK3fA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.21.5 + '@babel/core': 7.22.9 + '@babel/helper-create-class-features-plugin': 7.22.6(@babel/core@7.22.9) '@babel/helper-plugin-utils': 7.22.5 + transitivePeerDependencies: + - supports-color - /@babel/plugin-transform-react-constant-elements@7.22.5(@babel/core@7.21.5): - resolution: {integrity: sha512-BF5SXoO+nX3h5OhlN78XbbDrBOffv+AxPP2ENaJOVqjWCgBDeOY3WcaUcddutGSfoap+5NEQ/q/4I3WZIvgkXA==} + /@babel/plugin-transform-private-property-in-object@7.22.5(@babel/core@7.22.9): + resolution: {integrity: sha512-/9xnaTTJcVoBtSSmrVyhtSvO3kbqS2ODoh2juEU72c3aYonNF0OMGiaz2gjukyKM2wBBYJP38S4JiE0Wfb5VMQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.21.5 + '@babel/core': 7.22.9 + '@babel/helper-annotate-as-pure': 7.22.5 + '@babel/helper-create-class-features-plugin': 7.22.6(@babel/core@7.22.9) '@babel/helper-plugin-utils': 7.22.5 - dev: true + '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.22.9) + transitivePeerDependencies: + - supports-color - /@babel/plugin-transform-react-display-name@7.22.5(@babel/core@7.21.5): - resolution: {integrity: sha512-PVk3WPYudRF5z4GKMEYUrLjPl38fJSKNaEOkFuoprioowGuWN6w2RKznuFNSlJx7pzzXXStPUnNSOEO0jL5EVw==} + /@babel/plugin-transform-property-literals@7.22.5(@babel/core@7.22.9): + resolution: {integrity: sha512-TiOArgddK3mK/x1Qwf5hay2pxI6wCZnvQqrFSqbtg1GLl2JcNMitVH/YnqjP+M31pLUeTfzY1HAXFDnUBV30rQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.21.5 + '@babel/core': 7.22.9 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-react-jsx-development@7.22.5(@babel/core@7.21.5): - resolution: {integrity: sha512-bDhuzwWMuInwCYeDeMzyi7TaBgRQei6DqxhbyniL7/VG4RSS7HtSL2QbY4eESy1KJqlWt8g3xeEBGPuo+XqC8A==} + /@babel/plugin-transform-react-constant-elements@7.22.5(@babel/core@7.22.9): + resolution: {integrity: sha512-BF5SXoO+nX3h5OhlN78XbbDrBOffv+AxPP2ENaJOVqjWCgBDeOY3WcaUcddutGSfoap+5NEQ/q/4I3WZIvgkXA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.21.5 - '@babel/plugin-transform-react-jsx': 7.22.5(@babel/core@7.21.5) + '@babel/core': 7.22.9 + '@babel/helper-plugin-utils': 7.22.5 + dev: true - /@babel/plugin-transform-react-jsx@7.21.5(@babel/core@7.21.5): - resolution: {integrity: sha512-ELdlq61FpoEkHO6gFRpfj0kUgSwQTGoaEU8eMRoS8Dv3v6e7BjEAj5WMtIBRdHUeAioMhKP5HyxNzNnP+heKbA==} + /@babel/plugin-transform-react-display-name@7.22.5(@babel/core@7.22.9): + resolution: {integrity: sha512-PVk3WPYudRF5z4GKMEYUrLjPl38fJSKNaEOkFuoprioowGuWN6w2RKznuFNSlJx7pzzXXStPUnNSOEO0jL5EVw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.21.5 - '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-module-imports': 7.22.5 + '@babel/core': 7.22.9 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-jsx': 7.21.4(@babel/core@7.21.5) - '@babel/types': 7.22.5 - /@babel/plugin-transform-react-jsx@7.22.5(@babel/core@7.21.5): + /@babel/plugin-transform-react-jsx-development@7.22.5(@babel/core@7.22.9): + resolution: {integrity: sha512-bDhuzwWMuInwCYeDeMzyi7TaBgRQei6DqxhbyniL7/VG4RSS7HtSL2QbY4eESy1KJqlWt8g3xeEBGPuo+XqC8A==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.9 + '@babel/plugin-transform-react-jsx': 7.22.5(@babel/core@7.22.9) + + /@babel/plugin-transform-react-jsx@7.22.5(@babel/core@7.22.9): resolution: {integrity: sha512-rog5gZaVbUip5iWDMTYbVM15XQq+RkUKhET/IHR6oizR+JEoN6CAfTTuHcK4vwUyzca30qqHqEpzBOnaRMWYMA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.21.5 + '@babel/core': 7.22.9 '@babel/helper-annotate-as-pure': 7.22.5 '@babel/helper-module-imports': 7.22.5 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.21.5) + '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.22.9) '@babel/types': 7.22.5 - /@babel/plugin-transform-react-pure-annotations@7.22.5(@babel/core@7.21.5): + /@babel/plugin-transform-react-pure-annotations@7.22.5(@babel/core@7.22.9): resolution: {integrity: sha512-gP4k85wx09q+brArVinTXhWiyzLl9UpmGva0+mWyKxk6JZequ05x3eUcIUE+FyttPKJFRRVtAvQaJ6YF9h1ZpA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.21.5 + '@babel/core': 7.22.9 '@babel/helper-annotate-as-pure': 7.22.5 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-regenerator@7.22.5(@babel/core@7.21.5): + /@babel/plugin-transform-regenerator@7.22.5(@babel/core@7.22.9): resolution: {integrity: sha512-rR7KePOE7gfEtNTh9Qw+iO3Q/e4DEsoQ+hdvM6QUDH7JRJ5qxq5AA52ZzBWbI5i9lfNuvySgOGP8ZN7LAmaiPw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.21.5 + '@babel/core': 7.22.9 '@babel/helper-plugin-utils': 7.22.5 regenerator-transform: 0.15.1 - /@babel/plugin-transform-reserved-words@7.22.5(@babel/core@7.21.5): + /@babel/plugin-transform-reserved-words@7.22.5(@babel/core@7.22.9): resolution: {integrity: sha512-DTtGKFRQUDm8svigJzZHzb/2xatPc6TzNvAIJ5GqOKDsGFYgAskjRulbR/vGsPKq3OPqtexnz327qYpP57RFyA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.21.5 + '@babel/core': 7.22.9 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-runtime@7.21.4(@babel/core@7.21.5): - resolution: {integrity: sha512-1J4dhrw1h1PqnNNpzwxQ2UBymJUF8KuPjAAnlLwZcGhHAIqUigFW7cdK6GHoB64ubY4qXQNYknoUeks4Wz7CUA==} + /@babel/plugin-transform-runtime@7.22.9(@babel/core@7.22.9): + resolution: {integrity: sha512-9KjBH61AGJetCPYp/IEyLEp47SyybZb0nDRpBvmtEkm+rUIwxdlKpyNHI1TmsGkeuLclJdleQHRZ8XLBnnh8CQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.21.5 + '@babel/core': 7.22.9 '@babel/helper-module-imports': 7.22.5 '@babel/helper-plugin-utils': 7.22.5 - babel-plugin-polyfill-corejs2: 0.3.3(@babel/core@7.21.5) - babel-plugin-polyfill-corejs3: 0.6.0(@babel/core@7.21.5) - babel-plugin-polyfill-regenerator: 0.4.1(@babel/core@7.21.5) - semver: 6.3.0 + babel-plugin-polyfill-corejs2: 0.4.4(@babel/core@7.22.9) + babel-plugin-polyfill-corejs3: 0.8.2(@babel/core@7.22.9) + babel-plugin-polyfill-regenerator: 0.5.1(@babel/core@7.22.9) + semver: 6.3.1 transitivePeerDependencies: - supports-color - /@babel/plugin-transform-shorthand-properties@7.22.5(@babel/core@7.21.5): + /@babel/plugin-transform-shorthand-properties@7.22.5(@babel/core@7.22.9): resolution: {integrity: sha512-vM4fq9IXHscXVKzDv5itkO1X52SmdFBFcMIBZ2FRn2nqVYqw6dBexUgMvAjHW+KXpPPViD/Yo3GrDEBaRC0QYA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.21.5 + '@babel/core': 7.22.9 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-spread@7.22.5(@babel/core@7.21.5): + /@babel/plugin-transform-spread@7.22.5(@babel/core@7.22.9): resolution: {integrity: sha512-5ZzDQIGyvN4w8+dMmpohL6MBo+l2G7tfC/O2Dg7/hjpgeWvUx8FzfeOKxGog9IimPa4YekaQ9PlDqTLOljkcxg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.21.5 + '@babel/core': 7.22.9 '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 - /@babel/plugin-transform-sticky-regex@7.22.5(@babel/core@7.21.5): + /@babel/plugin-transform-sticky-regex@7.22.5(@babel/core@7.22.9): resolution: {integrity: sha512-zf7LuNpHG0iEeiyCNwX4j3gDg1jgt1k3ZdXBKbZSoA3BbGQGvMiSvfbZRR3Dr3aeJe3ooWFZxOOG3IRStYp2Bw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.21.5 + '@babel/core': 7.22.9 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-template-literals@7.22.5(@babel/core@7.21.5): + /@babel/plugin-transform-template-literals@7.22.5(@babel/core@7.22.9): resolution: {integrity: sha512-5ciOehRNf+EyUeewo8NkbQiUs4d6ZxiHo6BcBcnFlgiJfu16q0bQUw9Jvo0b0gBKFG1SMhDSjeKXSYuJLeFSMA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.21.5 + '@babel/core': 7.22.9 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-typeof-symbol@7.22.5(@babel/core@7.21.5): + /@babel/plugin-transform-typeof-symbol@7.22.5(@babel/core@7.22.9): resolution: {integrity: sha512-bYkI5lMzL4kPii4HHEEChkD0rkc+nvnlR6+o/qdqR6zrm0Sv/nodmyLhlq2DO0YKLUNd2VePmPRjJXSBh9OIdA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.21.5 + '@babel/core': 7.22.9 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-typescript@7.22.5(@babel/core@7.21.5): + /@babel/plugin-transform-typescript@7.22.5(@babel/core@7.22.9): resolution: {integrity: sha512-SMubA9S7Cb5sGSFFUlqxyClTA9zWJ8qGQrppNUm05LtFuN1ELRFNndkix4zUJrC9F+YivWwa1dHMSyo0e0N9dA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.21.5 + '@babel/core': 7.22.9 '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-create-class-features-plugin': 7.22.6(@babel/core@7.21.5) + '@babel/helper-create-class-features-plugin': 7.22.6(@babel/core@7.22.9) '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-typescript': 7.22.5(@babel/core@7.21.5) + '@babel/plugin-syntax-typescript': 7.22.5(@babel/core@7.22.9) transitivePeerDependencies: - supports-color - /@babel/plugin-transform-unicode-escapes@7.22.5(@babel/core@7.21.5): + /@babel/plugin-transform-unicode-escapes@7.22.5(@babel/core@7.22.9): resolution: {integrity: sha512-biEmVg1IYB/raUO5wT1tgfacCef15Fbzhkx493D3urBI++6hpJ+RFG4SrWMn0NEZLfvilqKf3QDrRVZHo08FYg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.21.5 + '@babel/core': 7.22.9 + '@babel/helper-plugin-utils': 7.22.5 + + /@babel/plugin-transform-unicode-property-regex@7.22.5(@babel/core@7.22.9): + resolution: {integrity: sha512-HCCIb+CbJIAE6sXn5CjFQXMwkCClcOfPCzTlilJ8cUatfzwHlWQkbtV0zD338u9dZskwvuOYTuuaMaA8J5EI5A==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.9 + '@babel/helper-create-regexp-features-plugin': 7.22.6(@babel/core@7.22.9) '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-unicode-regex@7.22.5(@babel/core@7.21.5): + /@babel/plugin-transform-unicode-regex@7.22.5(@babel/core@7.22.9): resolution: {integrity: sha512-028laaOKptN5vHJf9/Arr/HiJekMd41hOEZYvNsrsXqJ7YPYuX2bQxh31fkZzGmq3YqHRJzYFFAVYvKfMPKqyg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.21.5 - '@babel/helper-create-regexp-features-plugin': 7.22.6(@babel/core@7.21.5) + '@babel/core': 7.22.9 + '@babel/helper-create-regexp-features-plugin': 7.22.6(@babel/core@7.22.9) + '@babel/helper-plugin-utils': 7.22.5 + + /@babel/plugin-transform-unicode-sets-regex@7.22.5(@babel/core@7.22.9): + resolution: {integrity: sha512-lhMfi4FC15j13eKrh3DnYHjpGj6UKQHtNKTbtc1igvAhRy4+kLhV07OpLcsN0VgDEw/MjAvJO4BdMJsHwMhzCg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.22.9 + '@babel/helper-create-regexp-features-plugin': 7.22.6(@babel/core@7.22.9) '@babel/helper-plugin-utils': 7.22.5 - /@babel/preset-env@7.21.5(@babel/core@7.21.5): - resolution: {integrity: sha512-wH00QnTTldTbf/IefEVyChtRdw5RJvODT/Vb4Vcxq1AZvtXj6T0YeX0cAcXhI6/BdGuiP3GcNIL4OQbI2DVNxg==} + /@babel/preset-env@7.22.9(@babel/core@7.22.9): + resolution: {integrity: sha512-wNi5H/Emkhll/bqPjsjQorSykrlfY5OWakd6AulLvMEytpKasMVUpVy8RL4qBIBs5Ac6/5i0/Rv0b/Fg6Eag/g==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/compat-data': 7.21.7 - '@babel/core': 7.21.5 - '@babel/helper-compilation-targets': 7.21.5(@babel/core@7.21.5) + '@babel/compat-data': 7.22.9 + '@babel/core': 7.22.9 + '@babel/helper-compilation-targets': 7.22.9(@babel/core@7.22.9) '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-validator-option': 7.22.5 - '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.22.5(@babel/core@7.21.5) - '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.22.5(@babel/core@7.21.5) - '@babel/plugin-proposal-async-generator-functions': 7.20.7(@babel/core@7.21.5) - '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.21.5) - '@babel/plugin-proposal-class-static-block': 7.21.0(@babel/core@7.21.5) - '@babel/plugin-proposal-dynamic-import': 7.18.6(@babel/core@7.21.5) - '@babel/plugin-proposal-export-namespace-from': 7.18.9(@babel/core@7.21.5) - '@babel/plugin-proposal-json-strings': 7.18.6(@babel/core@7.21.5) - '@babel/plugin-proposal-logical-assignment-operators': 7.20.7(@babel/core@7.21.5) - '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.21.5) - '@babel/plugin-proposal-numeric-separator': 7.18.6(@babel/core@7.21.5) - '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.21.5) - '@babel/plugin-proposal-optional-catch-binding': 7.18.6(@babel/core@7.21.5) - '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.21.5) - '@babel/plugin-proposal-private-methods': 7.18.6(@babel/core@7.21.5) - '@babel/plugin-proposal-private-property-in-object': 7.21.11(@babel/core@7.21.5) - '@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.21.5) - '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.21.5) - '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.21.5) - '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.21.5) - '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.21.5) - '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.21.5) - '@babel/plugin-syntax-import-assertions': 7.22.5(@babel/core@7.21.5) - '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.21.5) - '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.21.5) - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.21.5) - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.21.5) - '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.21.5) - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.21.5) - '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.21.5) - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.21.5) - '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.21.5) - '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.21.5) - '@babel/plugin-transform-arrow-functions': 7.22.5(@babel/core@7.21.5) - '@babel/plugin-transform-async-to-generator': 7.22.5(@babel/core@7.21.5) - '@babel/plugin-transform-block-scoped-functions': 7.22.5(@babel/core@7.21.5) - '@babel/plugin-transform-block-scoping': 7.22.5(@babel/core@7.21.5) - '@babel/plugin-transform-classes': 7.22.6(@babel/core@7.21.5) - '@babel/plugin-transform-computed-properties': 7.22.5(@babel/core@7.21.5) - '@babel/plugin-transform-destructuring': 7.22.5(@babel/core@7.21.5) - '@babel/plugin-transform-dotall-regex': 7.22.5(@babel/core@7.21.5) - '@babel/plugin-transform-duplicate-keys': 7.22.5(@babel/core@7.21.5) - '@babel/plugin-transform-exponentiation-operator': 7.22.5(@babel/core@7.21.5) - '@babel/plugin-transform-for-of': 7.22.5(@babel/core@7.21.5) - '@babel/plugin-transform-function-name': 7.22.5(@babel/core@7.21.5) - '@babel/plugin-transform-literals': 7.22.5(@babel/core@7.21.5) - '@babel/plugin-transform-member-expression-literals': 7.22.5(@babel/core@7.21.5) - '@babel/plugin-transform-modules-amd': 7.22.5(@babel/core@7.21.5) - '@babel/plugin-transform-modules-commonjs': 7.22.5(@babel/core@7.21.5) - '@babel/plugin-transform-modules-systemjs': 7.22.5(@babel/core@7.21.5) - '@babel/plugin-transform-modules-umd': 7.22.5(@babel/core@7.21.5) - '@babel/plugin-transform-named-capturing-groups-regex': 7.22.5(@babel/core@7.21.5) - '@babel/plugin-transform-new-target': 7.22.5(@babel/core@7.21.5) - '@babel/plugin-transform-object-super': 7.22.5(@babel/core@7.21.5) - '@babel/plugin-transform-parameters': 7.22.5(@babel/core@7.21.5) - '@babel/plugin-transform-property-literals': 7.22.5(@babel/core@7.21.5) - '@babel/plugin-transform-regenerator': 7.22.5(@babel/core@7.21.5) - '@babel/plugin-transform-reserved-words': 7.22.5(@babel/core@7.21.5) - '@babel/plugin-transform-shorthand-properties': 7.22.5(@babel/core@7.21.5) - '@babel/plugin-transform-spread': 7.22.5(@babel/core@7.21.5) - '@babel/plugin-transform-sticky-regex': 7.22.5(@babel/core@7.21.5) - '@babel/plugin-transform-template-literals': 7.22.5(@babel/core@7.21.5) - '@babel/plugin-transform-typeof-symbol': 7.22.5(@babel/core@7.21.5) - '@babel/plugin-transform-unicode-escapes': 7.22.5(@babel/core@7.21.5) - '@babel/plugin-transform-unicode-regex': 7.22.5(@babel/core@7.21.5) - '@babel/preset-modules': 0.1.5(@babel/core@7.21.5) + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.22.5(@babel/core@7.22.9) + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.22.5(@babel/core@7.22.9) + '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.22.9) + '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.22.9) + '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.22.9) + '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.22.9) + '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.22.9) + '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.22.9) + '@babel/plugin-syntax-import-assertions': 7.22.5(@babel/core@7.22.9) + '@babel/plugin-syntax-import-attributes': 7.22.5(@babel/core@7.22.9) + '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.22.9) + '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.22.9) + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.22.9) + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.22.9) + '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.22.9) + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.22.9) + '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.22.9) + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.22.9) + '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.22.9) + '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.22.9) + '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.22.9) + '@babel/plugin-transform-arrow-functions': 7.22.5(@babel/core@7.22.9) + '@babel/plugin-transform-async-generator-functions': 7.22.7(@babel/core@7.22.9) + '@babel/plugin-transform-async-to-generator': 7.22.5(@babel/core@7.22.9) + '@babel/plugin-transform-block-scoped-functions': 7.22.5(@babel/core@7.22.9) + '@babel/plugin-transform-block-scoping': 7.22.5(@babel/core@7.22.9) + '@babel/plugin-transform-class-properties': 7.22.5(@babel/core@7.22.9) + '@babel/plugin-transform-class-static-block': 7.22.5(@babel/core@7.22.9) + '@babel/plugin-transform-classes': 7.22.6(@babel/core@7.22.9) + '@babel/plugin-transform-computed-properties': 7.22.5(@babel/core@7.22.9) + '@babel/plugin-transform-destructuring': 7.22.5(@babel/core@7.22.9) + '@babel/plugin-transform-dotall-regex': 7.22.5(@babel/core@7.22.9) + '@babel/plugin-transform-duplicate-keys': 7.22.5(@babel/core@7.22.9) + '@babel/plugin-transform-dynamic-import': 7.22.5(@babel/core@7.22.9) + '@babel/plugin-transform-exponentiation-operator': 7.22.5(@babel/core@7.22.9) + '@babel/plugin-transform-export-namespace-from': 7.22.5(@babel/core@7.22.9) + '@babel/plugin-transform-for-of': 7.22.5(@babel/core@7.22.9) + '@babel/plugin-transform-function-name': 7.22.5(@babel/core@7.22.9) + '@babel/plugin-transform-json-strings': 7.22.5(@babel/core@7.22.9) + '@babel/plugin-transform-literals': 7.22.5(@babel/core@7.22.9) + '@babel/plugin-transform-logical-assignment-operators': 7.22.5(@babel/core@7.22.9) + '@babel/plugin-transform-member-expression-literals': 7.22.5(@babel/core@7.22.9) + '@babel/plugin-transform-modules-amd': 7.22.5(@babel/core@7.22.9) + '@babel/plugin-transform-modules-commonjs': 7.22.5(@babel/core@7.22.9) + '@babel/plugin-transform-modules-systemjs': 7.22.5(@babel/core@7.22.9) + '@babel/plugin-transform-modules-umd': 7.22.5(@babel/core@7.22.9) + '@babel/plugin-transform-named-capturing-groups-regex': 7.22.5(@babel/core@7.22.9) + '@babel/plugin-transform-new-target': 7.22.5(@babel/core@7.22.9) + '@babel/plugin-transform-nullish-coalescing-operator': 7.22.5(@babel/core@7.22.9) + '@babel/plugin-transform-numeric-separator': 7.22.5(@babel/core@7.22.9) + '@babel/plugin-transform-object-rest-spread': 7.22.5(@babel/core@7.22.9) + '@babel/plugin-transform-object-super': 7.22.5(@babel/core@7.22.9) + '@babel/plugin-transform-optional-catch-binding': 7.22.5(@babel/core@7.22.9) + '@babel/plugin-transform-optional-chaining': 7.22.6(@babel/core@7.22.9) + '@babel/plugin-transform-parameters': 7.22.5(@babel/core@7.22.9) + '@babel/plugin-transform-private-methods': 7.22.5(@babel/core@7.22.9) + '@babel/plugin-transform-private-property-in-object': 7.22.5(@babel/core@7.22.9) + '@babel/plugin-transform-property-literals': 7.22.5(@babel/core@7.22.9) + '@babel/plugin-transform-regenerator': 7.22.5(@babel/core@7.22.9) + '@babel/plugin-transform-reserved-words': 7.22.5(@babel/core@7.22.9) + '@babel/plugin-transform-shorthand-properties': 7.22.5(@babel/core@7.22.9) + '@babel/plugin-transform-spread': 7.22.5(@babel/core@7.22.9) + '@babel/plugin-transform-sticky-regex': 7.22.5(@babel/core@7.22.9) + '@babel/plugin-transform-template-literals': 7.22.5(@babel/core@7.22.9) + '@babel/plugin-transform-typeof-symbol': 7.22.5(@babel/core@7.22.9) + '@babel/plugin-transform-unicode-escapes': 7.22.5(@babel/core@7.22.9) + '@babel/plugin-transform-unicode-property-regex': 7.22.5(@babel/core@7.22.9) + '@babel/plugin-transform-unicode-regex': 7.22.5(@babel/core@7.22.9) + '@babel/plugin-transform-unicode-sets-regex': 7.22.5(@babel/core@7.22.9) + '@babel/preset-modules': 0.1.5(@babel/core@7.22.9) '@babel/types': 7.22.5 - babel-plugin-polyfill-corejs2: 0.3.3(@babel/core@7.21.5) - babel-plugin-polyfill-corejs3: 0.6.0(@babel/core@7.21.5) - babel-plugin-polyfill-regenerator: 0.4.1(@babel/core@7.21.5) + babel-plugin-polyfill-corejs2: 0.4.4(@babel/core@7.22.9) + babel-plugin-polyfill-corejs3: 0.8.2(@babel/core@7.22.9) + babel-plugin-polyfill-regenerator: 0.5.1(@babel/core@7.22.9) core-js-compat: 3.31.1 - semver: 6.3.0 + semver: 6.3.1 transitivePeerDependencies: - supports-color - /@babel/preset-flow@7.22.5(@babel/core@7.21.5): + /@babel/preset-flow@7.22.5(@babel/core@7.22.9): resolution: {integrity: sha512-ta2qZ+LSiGCrP5pgcGt8xMnnkXQrq8Sa4Ulhy06BOlF5QbLw9q5hIx7bn5MrsvyTGAfh6kTOo07Q+Pfld/8Y5Q==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.21.5 + '@babel/core': 7.22.9 '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-validator-option': 7.22.5 - '@babel/plugin-transform-flow-strip-types': 7.22.5(@babel/core@7.21.5) + '@babel/plugin-transform-flow-strip-types': 7.22.5(@babel/core@7.22.9) dev: true - /@babel/preset-modules@0.1.5(@babel/core@7.21.5): + /@babel/preset-modules@0.1.5(@babel/core@7.22.9): resolution: {integrity: sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.21.5 + '@babel/core': 7.22.9 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.21.5) - '@babel/plugin-transform-dotall-regex': 7.22.5(@babel/core@7.21.5) + '@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.22.9) + '@babel/plugin-transform-dotall-regex': 7.22.5(@babel/core@7.22.9) '@babel/types': 7.22.5 esutils: 2.0.3 - /@babel/preset-react@7.18.6(@babel/core@7.21.5): - resolution: {integrity: sha512-zXr6atUmyYdiWRVLOZahakYmOBHtWc2WGCkP8PYTgZi0iJXDY2CN180TdrIW4OGOAdLc7TifzDIvtx6izaRIzg==} + /@babel/preset-react@7.22.5(@babel/core@7.22.9): + resolution: {integrity: sha512-M+Is3WikOpEJHgR385HbuCITPTaPRaNkibTEa9oiofmJvIsrceb4yp9RL9Kb+TE8LznmeyZqpP+Lopwcx59xPQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.21.5 + '@babel/core': 7.22.9 '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-validator-option': 7.22.5 - '@babel/plugin-transform-react-display-name': 7.22.5(@babel/core@7.21.5) - '@babel/plugin-transform-react-jsx': 7.21.5(@babel/core@7.21.5) - '@babel/plugin-transform-react-jsx-development': 7.22.5(@babel/core@7.21.5) - '@babel/plugin-transform-react-pure-annotations': 7.22.5(@babel/core@7.21.5) + '@babel/plugin-transform-react-display-name': 7.22.5(@babel/core@7.22.9) + '@babel/plugin-transform-react-jsx': 7.22.5(@babel/core@7.22.9) + '@babel/plugin-transform-react-jsx-development': 7.22.5(@babel/core@7.22.9) + '@babel/plugin-transform-react-pure-annotations': 7.22.5(@babel/core@7.22.9) - /@babel/preset-typescript@7.21.5(@babel/core@7.21.5): - resolution: {integrity: sha512-iqe3sETat5EOrORXiQ6rWfoOg2y68Cs75B9wNxdPW4kixJxh7aXQE1KPdWLDniC24T/6dSnguF33W9j/ZZQcmA==} + /@babel/preset-typescript@7.22.5(@babel/core@7.22.9): + resolution: {integrity: sha512-YbPaal9LxztSGhmndR46FmAbkJ/1fAsw293tSU+I5E5h+cnJ3d4GTwyUgGYmOXJYdGA+uNePle4qbaRzj2NISQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.21.5 + '@babel/core': 7.22.9 '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-validator-option': 7.22.5 - '@babel/plugin-syntax-jsx': 7.21.4(@babel/core@7.21.5) - '@babel/plugin-transform-modules-commonjs': 7.22.5(@babel/core@7.21.5) - '@babel/plugin-transform-typescript': 7.22.5(@babel/core@7.21.5) + '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.22.9) + '@babel/plugin-transform-modules-commonjs': 7.22.5(@babel/core@7.22.9) + '@babel/plugin-transform-typescript': 7.22.5(@babel/core@7.22.9) transitivePeerDependencies: - supports-color - /@babel/register@7.21.0(@babel/core@7.21.5): - resolution: {integrity: sha512-9nKsPmYDi5DidAqJaQooxIhsLJiNMkGr8ypQ8Uic7cIox7UCDsM7HuUGxdGT7mSDTYbqzIdsOWzfBton/YJrMw==} + /@babel/register@7.22.5(@babel/core@7.22.9): + resolution: {integrity: sha512-vV6pm/4CijSQ8Y47RH5SopXzursN35RQINfGJkmOlcpAtGuf94miFvIPhCKGQN7WGIcsgG1BHEX2KVdTYwTwUQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.21.5 + '@babel/core': 7.22.9 clone-deep: 4.0.1 find-cache-dir: 2.1.0 make-dir: 2.1.0 @@ -5393,8 +5355,8 @@ packages: /@babel/regjsgen@0.8.0: resolution: {integrity: sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==} - /@babel/runtime@7.21.5: - resolution: {integrity: sha512-8jI69toZqqcsnqGGqwGS4Qb1VwLOEp4hz+CXPywcvjs60u3B4Pom/U/7rm4W8tMOYEB+E9wgD0mW1l3r8qlI9Q==} + /@babel/runtime@7.22.6: + resolution: {integrity: sha512-wDb5pWm4WDdF6LFUde3Jl8WzPA+3ZbxYqkC6xAXuD3irdEHN1k0NfTRrJD8ZD378SJ61miMLCqIOXYhd8x+AJQ==} engines: {node: '>=6.9.0'} dependencies: regenerator-runtime: 0.13.11 @@ -5407,30 +5369,12 @@ packages: '@babel/parser': 7.22.7 '@babel/types': 7.22.5 - /@babel/traverse@7.21.5: - resolution: {integrity: sha512-AhQoI3YjWi6u/y/ntv7k48mcrCXmus0t79J9qPNlk/lAsFlCiJ047RmbfMOawySTHtywXhbXgpx/8nXMYd+oFw==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/code-frame': 7.22.5 - '@babel/generator': 7.22.7 - '@babel/helper-environment-visitor': 7.22.5 - '@babel/helper-function-name': 7.22.5 - '@babel/helper-hoist-variables': 7.22.5 - '@babel/helper-split-export-declaration': 7.22.6 - '@babel/parser': 7.22.7 - '@babel/types': 7.22.5 - debug: 4.3.4 - globals: 11.12.0 - transitivePeerDependencies: - - supports-color - dev: true - /@babel/traverse@7.22.8: resolution: {integrity: sha512-y6LPR+wpM2I3qJrsheCTwhIinzkETbplIgPBbwvqPKc+uljeA5gP+3nP8irdYt1mjQaDnlIcG+dw8OjAco4GXw==} engines: {node: '>=6.9.0'} dependencies: '@babel/code-frame': 7.22.5 - '@babel/generator': 7.22.7 + '@babel/generator': 7.22.9 '@babel/helper-environment-visitor': 7.22.5 '@babel/helper-function-name': 7.22.5 '@babel/helper-hoist-variables': 7.22.5 @@ -5442,15 +5386,6 @@ packages: transitivePeerDependencies: - supports-color - /@babel/types@7.21.5: - resolution: {integrity: sha512-m4AfNvVF2mVC/F7fDEdH2El3HzUg9It/XsCxZiOTTA3m3qYfcSVSbTfM6Q9xG+hYDniZssYhlXKKUMD5m8tF4Q==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/helper-string-parser': 7.22.5 - '@babel/helper-validator-identifier': 7.22.5 - to-fast-properties: 2.0.0 - dev: true - /@babel/types@7.22.5: resolution: {integrity: sha512-zo3MIHGOkPOfoRXitsgHLjEXmlDaD/5KU1Uzuc9GNiZPhSqVxVRtxuPaSBZDsYZ9qV88AjtMtWW7ww98loJ9KA==} engines: {node: '>=6.9.0'} @@ -5501,7 +5436,7 @@ packages: resolution: {integrity: sha512-m4HEDZleaaCH+XgDDsPF15Ht6wTLsgDTeR3WYj9Q/k76JtWhrJjcP4+/XlG8LGT/Rol9qUfOIztXeA84ATpqPQ==} dependencies: '@babel/helper-module-imports': 7.22.5 - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 '@emotion/hash': 0.9.1 '@emotion/memoize': 0.8.1 '@emotion/serialize': 1.1.2 @@ -5512,26 +5447,6 @@ packages: source-map: 0.5.7 stylis: 4.2.0 - /@emotion/babel-plugin@11.3.0(@babel/core@7.21.5): - resolution: {integrity: sha512-UZKwBV2rADuhRp+ZOGgNWg2eYgbzKzQXfQPtJbu/PLy8onurxlNCLvxMQEvlr1/GudguPI5IU9qIY1+2z1M5bA==} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/core': 7.21.5 - '@babel/helper-module-imports': 7.22.5 - '@babel/plugin-syntax-jsx': 7.21.4(@babel/core@7.21.5) - '@babel/runtime': 7.21.5 - '@emotion/hash': 0.8.0 - '@emotion/memoize': 0.7.5 - '@emotion/serialize': 1.1.2 - babel-plugin-macros: 2.8.0 - convert-source-map: 1.9.0 - escape-string-regexp: 4.0.0 - find-root: 1.1.0 - source-map: 0.5.7 - stylis: 4.3.0 - dev: true - /@emotion/cache@11.11.0: resolution: {integrity: sha512-P34z9ssTCBi3e9EI1ZsWpNHcfY1r09ZO0rZbRO2ob3ZQMnFI35jB536qoXbkdesr5EUhYi22anuEJuyxifaqAQ==} dependencies: @@ -5550,10 +5465,6 @@ packages: '@emotion/sheet': 1.2.2 '@emotion/utils': 1.2.1 - /@emotion/hash@0.8.0: - resolution: {integrity: sha512-kBJtf7PH6aWwZ6fka3zQ0p6SBYzx4fl1LoZXE2RrnYST9Xljm7WfKJrU4g/Xr3Beg72MLrp1AWNUmuYJTL7Cow==} - dev: true - /@emotion/hash@0.9.1: resolution: {integrity: sha512-gJB6HLm5rYwSLI6PQa+X1t5CFGrv1J1TWG+sOyMCeKz2ojaj6Fnl/rZEspogG+cvqbt4AE/2eIyD2QfLKTBNlQ==} @@ -5573,10 +5484,6 @@ packages: resolution: {integrity: sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw==} optional: true - /@emotion/memoize@0.7.5: - resolution: {integrity: sha512-igX9a37DR2ZPGYtV6suZ6whr8pTFtyHL3K/oLUotxpSVO2ASaprmAe2Dkq7tBo7CRY7MMDrAa9nuQP9/YG8FxQ==} - dev: true - /@emotion/memoize@0.8.1: resolution: {integrity: sha512-W2P2c/VRW1/1tLox0mVUalvnWXxavmv/Oum2aPsRcoDJuob75FC3Y8FbpfLwUegRcxINtGUMPq0tFCvYNTBXNA==} @@ -5589,7 +5496,7 @@ packages: '@types/react': optional: true dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 '@emotion/babel-plugin': 11.11.0 '@emotion/cache': 11.11.0 '@emotion/serialize': 1.1.2 @@ -5609,7 +5516,7 @@ packages: '@types/react': optional: true dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 '@emotion/babel-plugin': 11.11.0 '@emotion/cache': 11.11.0 '@emotion/serialize': 1.1.2 @@ -5619,7 +5526,7 @@ packages: hoist-non-react-statics: 3.3.2 react: 18.2.0 - /@emotion/react@11.4.1(@babel/core@7.21.5)(@types/react@18.2.14)(react@18.2.0): + /@emotion/react@11.4.1(@babel/core@7.22.9)(@types/react@18.2.14)(react@18.2.0): resolution: {integrity: sha512-pRegcsuGYj4FCdZN6j5vqCALkNytdrKw3TZMekTzNXixRg4wkLsU5QEaBG5LC6l01Vppxlp7FE3aTHpIG5phLg==} peerDependencies: '@babel/core': ^7.0.0 @@ -5631,8 +5538,8 @@ packages: '@types/react': optional: true dependencies: - '@babel/core': 7.21.5 - '@babel/runtime': 7.21.5 + '@babel/core': 7.22.9 + '@babel/runtime': 7.22.6 '@emotion/cache': 11.11.0 '@emotion/serialize': 1.1.2 '@emotion/sheet': 1.2.2 @@ -5643,29 +5550,6 @@ packages: react: 18.2.0 dev: false - /@emotion/react@11.4.1(@babel/core@7.21.5)(react@18.2.0): - resolution: {integrity: sha512-pRegcsuGYj4FCdZN6j5vqCALkNytdrKw3TZMekTzNXixRg4wkLsU5QEaBG5LC6l01Vppxlp7FE3aTHpIG5phLg==} - peerDependencies: - '@babel/core': ^7.0.0 - '@types/react': '*' - react: '>=16.8.0' - peerDependenciesMeta: - '@babel/core': - optional: true - '@types/react': - optional: true - dependencies: - '@babel/core': 7.21.5 - '@babel/runtime': 7.21.5 - '@emotion/cache': 11.11.0 - '@emotion/serialize': 1.1.2 - '@emotion/sheet': 1.2.2 - '@emotion/utils': 1.2.1 - '@emotion/weak-memoize': 0.2.5 - hoist-non-react-statics: 3.3.2 - react: 18.2.0 - dev: true - /@emotion/serialize@1.1.2: resolution: {integrity: sha512-zR6a/fkFP4EAcCMQtLOhIgpprZOwNmCldtpaISpvz348+DP4Mz8ZoKaGGCQpbzepNIUWbq4w6hNZkwDyKoS+HA==} dependencies: @@ -5688,7 +5572,7 @@ packages: '@types/react': optional: true dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 '@emotion/babel-plugin': 11.11.0 '@emotion/is-prop-valid': 1.2.1 '@emotion/react': 11.11.1(@types/react@18.2.14)(react@18.2.0) @@ -5708,7 +5592,7 @@ packages: '@types/react': optional: true dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 '@emotion/babel-plugin': 11.11.0 '@emotion/is-prop-valid': 1.2.1 '@emotion/react': 11.11.1(react@18.2.0) @@ -5717,29 +5601,6 @@ packages: '@emotion/utils': 1.2.1 react: 18.2.0 - /@emotion/styled@11.3.0(@babel/core@7.21.5)(@emotion/react@11.4.1)(react@18.2.0): - resolution: {integrity: sha512-fUoLcN3BfMiLlRhJ8CuPUMEyKkLEoM+n+UyAbnqGEsCd5IzKQ7VQFLtzpJOaCD2/VR2+1hXQTnSZXVJeiTNltA==} - peerDependencies: - '@babel/core': ^7.0.0 - '@emotion/react': ^11.0.0-rc.0 - '@types/react': '*' - react: '>=16.8.0' - peerDependenciesMeta: - '@babel/core': - optional: true - '@types/react': - optional: true - dependencies: - '@babel/core': 7.21.5 - '@babel/runtime': 7.21.5 - '@emotion/babel-plugin': 11.3.0(@babel/core@7.21.5) - '@emotion/is-prop-valid': 1.2.1 - '@emotion/react': 11.4.1(@babel/core@7.21.5)(react@18.2.0) - '@emotion/serialize': 1.1.2 - '@emotion/utils': 1.2.1 - react: 18.2.0 - dev: true - /@emotion/unitless@0.8.1: resolution: {integrity: sha512-KOEGMu6dmJZtpadb476IsZBclKvILjopjUii3V+7MnXIQCYh8W3NgNcgwo21n9LXZX6EDIKvqfjYxXebDwxKmQ==} @@ -5755,6 +5616,7 @@ packages: /@emotion/weak-memoize@0.2.5: resolution: {integrity: sha512-6U71C2Wp7r5XtFtQzYrW5iKFT67OixrSxjI4MptCHzdSVlgabczzqLe0ZSgnub/5Kp4hSbpDB1tMytZY9pwxxA==} + dev: false /@emotion/weak-memoize@0.3.1: resolution: {integrity: sha512-EsBwpc7hBUJWAsNPBmJy4hxWx12v6bshQsldrVmjxJoc3isbxhOrF2IcCpaXxfvq03NwkI7sbsOLXbYuqF/8Ww==} @@ -6264,7 +6126,7 @@ packages: resolution: {integrity: sha512-URnTneIU3ZjRSaf906cvf6Hpox3hIeJXRnz3VDSw5/X93gR8ycdfSIEy19FlVx8NFmpN7fe3Gb1xF+NjXaQLWg==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@babel/core': 7.21.5 + '@babel/core': 7.22.9 '@jest/types': 29.6.1 '@jridgewell/trace-mapping': 0.3.18 babel-plugin-istanbul: 6.1.1 @@ -6802,13 +6664,13 @@ packages: /@radix-ui/primitive@1.0.0: resolution: {integrity: sha512-3e7rn8FDMin4CgeL7Z/49smCA3rFYY3Ha2rUQ7HRWFadS5iCRw08ZgVT1LaNTCNqgvrUiyczLflrVrF0SRQtNA==} dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 dev: false /@radix-ui/primitive@1.0.1: resolution: {integrity: sha512-yQ8oGX2GVsEYMWGxcovu1uGWPCxV5BFfeeYxqPmuAzUyLT9qmaMXSAhXpb0WrspIeqYzdJpkh2vHModJPgRIaw==} dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 /@radix-ui/react-arrow@1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-wSP+pHsB/jQRaL6voubsQ/ZlrGBHHrOjmBnr19hxYgtS0WvAFwZhK2WP/YY5yF9uKECCEEDGxuLxq1NBK51wFA==} @@ -6823,7 +6685,7 @@ packages: '@types/react-dom': optional: true dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) '@types/react': 18.2.14 '@types/react-dom': 18.2.6 @@ -6844,7 +6706,7 @@ packages: '@types/react-dom': optional: true dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 '@radix-ui/react-primitive': 1.0.3(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) '@types/react': 18.2.14 react: 18.2.0 @@ -6863,7 +6725,7 @@ packages: '@types/react-dom': optional: true dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 '@radix-ui/react-primitive': 1.0.3(react-dom@18.2.0)(react@18.2.0) react: 18.2.0 react-dom: 18.2.0(react@18.2.0) @@ -6881,7 +6743,7 @@ packages: '@types/react-dom': optional: true dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.14)(react@18.2.0) '@radix-ui/react-context': 1.0.1(@types/react@18.2.14)(react@18.2.0) '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) @@ -6905,7 +6767,7 @@ packages: '@types/react-dom': optional: true dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.14)(react@18.2.0) '@radix-ui/react-context': 1.0.1(@types/react@18.2.14)(react@18.2.0) '@radix-ui/react-primitive': 1.0.3(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) @@ -6927,7 +6789,7 @@ packages: '@types/react-dom': optional: true dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 '@radix-ui/react-compose-refs': 1.0.1(react@18.2.0) '@radix-ui/react-context': 1.0.1(react@18.2.0) '@radix-ui/react-primitive': 1.0.3(react-dom@18.2.0)(react@18.2.0) @@ -6940,7 +6802,7 @@ packages: peerDependencies: react: ^16.8 || ^17.0 || ^18.0 dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 react: 18.2.0 dev: false @@ -6953,7 +6815,7 @@ packages: '@types/react': optional: true dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 '@types/react': 18.2.14 react: 18.2.0 @@ -6966,7 +6828,7 @@ packages: '@types/react': optional: true dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 react: 18.2.0 /@radix-ui/react-context@1.0.0(react@18.2.0): @@ -6974,7 +6836,7 @@ packages: peerDependencies: react: ^16.8 || ^17.0 || ^18.0 dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 react: 18.2.0 dev: false @@ -6987,7 +6849,7 @@ packages: '@types/react': optional: true dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 '@types/react': 18.2.14 react: 18.2.0 @@ -7000,7 +6862,7 @@ packages: '@types/react': optional: true dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 react: 18.2.0 /@radix-ui/react-dialog@1.0.0(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0): @@ -7009,7 +6871,7 @@ packages: react: ^16.8 || ^17.0 || ^18.0 react-dom: ^16.8 || ^17.0 || ^18.0 dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 '@radix-ui/primitive': 1.0.0 '@radix-ui/react-compose-refs': 1.0.0(react@18.2.0) '@radix-ui/react-context': 1.0.0(react@18.2.0) @@ -7036,7 +6898,7 @@ packages: react: ^16.8 || ^17.0 || ^18.0 react-dom: ^16.8 || ^17.0 || ^18.0 dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 '@radix-ui/primitive': 1.0.0 '@radix-ui/react-compose-refs': 1.0.0(react@18.2.0) '@radix-ui/react-context': 1.0.0(react@18.2.0) @@ -7066,7 +6928,7 @@ packages: '@types/react': optional: true dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 '@types/react': 18.2.14 react: 18.2.0 @@ -7079,7 +6941,7 @@ packages: '@types/react': optional: true dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 react: 18.2.0 /@radix-ui/react-dismissable-layer@1.0.0(react-dom@18.2.0)(react@18.2.0): @@ -7088,7 +6950,7 @@ packages: react: ^16.8 || ^17.0 || ^18.0 react-dom: ^16.8 || ^17.0 || ^18.0 dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 '@radix-ui/primitive': 1.0.0 '@radix-ui/react-compose-refs': 1.0.0(react@18.2.0) '@radix-ui/react-primitive': 1.0.0(react-dom@18.2.0)(react@18.2.0) @@ -7111,7 +6973,7 @@ packages: '@types/react-dom': optional: true dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 '@radix-ui/primitive': 1.0.1 '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.14)(react@18.2.0) '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) @@ -7136,7 +6998,7 @@ packages: '@types/react-dom': optional: true dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 '@radix-ui/primitive': 1.0.1 '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.14)(react@18.2.0) '@radix-ui/react-primitive': 1.0.3(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) @@ -7159,7 +7021,7 @@ packages: '@types/react-dom': optional: true dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 '@radix-ui/primitive': 1.0.1 '@radix-ui/react-compose-refs': 1.0.1(react@18.2.0) '@radix-ui/react-primitive': 1.0.3(react-dom@18.2.0)(react@18.2.0) @@ -7181,7 +7043,7 @@ packages: '@types/react-dom': optional: true dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 '@radix-ui/primitive': 1.0.1 '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.14)(react@18.2.0) '@radix-ui/react-context': 1.0.1(@types/react@18.2.14)(react@18.2.0) @@ -7208,7 +7070,7 @@ packages: '@types/react-dom': optional: true dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 '@radix-ui/primitive': 1.0.1 '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.14)(react@18.2.0) '@radix-ui/react-context': 1.0.1(@types/react@18.2.14)(react@18.2.0) @@ -7233,7 +7095,7 @@ packages: '@types/react-dom': optional: true dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 '@radix-ui/primitive': 1.0.1 '@radix-ui/react-compose-refs': 1.0.1(react@18.2.0) '@radix-ui/react-context': 1.0.1(react@18.2.0) @@ -7249,7 +7111,7 @@ packages: peerDependencies: react: ^16.8 || ^17.0 || ^18.0 dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 react: 18.2.0 dev: false @@ -7262,7 +7124,7 @@ packages: '@types/react': optional: true dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 '@types/react': 18.2.14 react: 18.2.0 @@ -7275,7 +7137,7 @@ packages: '@types/react': optional: true dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 react: 18.2.0 /@radix-ui/react-focus-scope@1.0.0(react-dom@18.2.0)(react@18.2.0): @@ -7284,7 +7146,7 @@ packages: react: ^16.8 || ^17.0 || ^18.0 react-dom: ^16.8 || ^17.0 || ^18.0 dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 '@radix-ui/react-compose-refs': 1.0.0(react@18.2.0) '@radix-ui/react-primitive': 1.0.0(react-dom@18.2.0)(react@18.2.0) '@radix-ui/react-use-callback-ref': 1.0.0(react@18.2.0) @@ -7305,7 +7167,7 @@ packages: '@types/react-dom': optional: true dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.14)(react@18.2.0) '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.14)(react@18.2.0) @@ -7328,7 +7190,7 @@ packages: '@types/react-dom': optional: true dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.14)(react@18.2.0) '@radix-ui/react-primitive': 1.0.3(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.14)(react@18.2.0) @@ -7349,7 +7211,7 @@ packages: '@types/react-dom': optional: true dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 '@radix-ui/react-compose-refs': 1.0.1(react@18.2.0) '@radix-ui/react-primitive': 1.0.3(react-dom@18.2.0)(react@18.2.0) '@radix-ui/react-use-callback-ref': 1.0.1(react@18.2.0) @@ -7361,7 +7223,7 @@ packages: peerDependencies: react: ^16.8 || ^17.0 || ^18.0 dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 '@radix-ui/react-use-layout-effect': 1.0.0(react@18.2.0) react: 18.2.0 dev: false @@ -7375,7 +7237,7 @@ packages: '@types/react': optional: true dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.14)(react@18.2.0) '@types/react': 18.2.14 react: 18.2.0 @@ -7389,7 +7251,7 @@ packages: '@types/react': optional: true dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 '@radix-ui/react-use-layout-effect': 1.0.1(react@18.2.0) react: 18.2.0 @@ -7406,7 +7268,7 @@ packages: '@types/react-dom': optional: true dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 '@radix-ui/primitive': 1.0.1 '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.14)(react@18.2.0) @@ -7444,7 +7306,7 @@ packages: '@types/react-dom': optional: true dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 '@radix-ui/primitive': 1.0.1 '@radix-ui/react-collection': 1.0.3(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.14)(react@18.2.0) @@ -7480,7 +7342,7 @@ packages: '@types/react-dom': optional: true dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 '@radix-ui/primitive': 1.0.1 '@radix-ui/react-collection': 1.0.3(react-dom@18.2.0)(react@18.2.0) '@radix-ui/react-compose-refs': 1.0.1(react@18.2.0) @@ -7515,7 +7377,7 @@ packages: '@types/react-dom': optional: true dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 '@floating-ui/react-dom': 2.0.1(react-dom@18.2.0)(react@18.2.0) '@radix-ui/react-arrow': 1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.14)(react@18.2.0) @@ -7545,7 +7407,7 @@ packages: '@types/react-dom': optional: true dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 '@floating-ui/react-dom': 2.0.1(react-dom@18.2.0)(react@18.2.0) '@radix-ui/react-arrow': 1.0.3(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.14)(react@18.2.0) @@ -7573,7 +7435,7 @@ packages: '@types/react-dom': optional: true dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 '@floating-ui/react-dom': 2.0.1(react-dom@18.2.0)(react@18.2.0) '@radix-ui/react-arrow': 1.0.3(react-dom@18.2.0)(react@18.2.0) '@radix-ui/react-compose-refs': 1.0.1(react@18.2.0) @@ -7593,7 +7455,7 @@ packages: react: ^16.8 || ^17.0 || ^18.0 react-dom: ^16.8 || ^17.0 || ^18.0 dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 '@radix-ui/react-primitive': 1.0.0(react-dom@18.2.0)(react@18.2.0) react: 18.2.0 react-dom: 18.2.0(react@18.2.0) @@ -7612,7 +7474,7 @@ packages: '@types/react-dom': optional: true dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) '@types/react': 18.2.14 '@types/react-dom': 18.2.6 @@ -7633,7 +7495,7 @@ packages: '@types/react-dom': optional: true dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 '@radix-ui/react-primitive': 1.0.3(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) '@types/react': 18.2.14 react: 18.2.0 @@ -7652,7 +7514,7 @@ packages: '@types/react-dom': optional: true dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 '@radix-ui/react-primitive': 1.0.3(react-dom@18.2.0)(react@18.2.0) react: 18.2.0 react-dom: 18.2.0(react@18.2.0) @@ -7663,7 +7525,7 @@ packages: react: ^16.8 || ^17.0 || ^18.0 react-dom: ^16.8 || ^17.0 || ^18.0 dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 '@radix-ui/react-compose-refs': 1.0.0(react@18.2.0) '@radix-ui/react-use-layout-effect': 1.0.0(react@18.2.0) react: 18.2.0 @@ -7683,7 +7545,7 @@ packages: '@types/react-dom': optional: true dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.14)(react@18.2.0) '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.14)(react@18.2.0) '@types/react': 18.2.14 @@ -7705,7 +7567,7 @@ packages: '@types/react-dom': optional: true dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.14)(react@18.2.0) '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.14)(react@18.2.0) '@types/react': 18.2.14 @@ -7725,7 +7587,7 @@ packages: '@types/react-dom': optional: true dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 '@radix-ui/react-compose-refs': 1.0.1(react@18.2.0) '@radix-ui/react-use-layout-effect': 1.0.1(react@18.2.0) react: 18.2.0 @@ -7737,7 +7599,7 @@ packages: react: ^16.8 || ^17.0 || ^18.0 react-dom: ^16.8 || ^17.0 || ^18.0 dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 '@radix-ui/react-slot': 1.0.0(react@18.2.0) react: 18.2.0 react-dom: 18.2.0(react@18.2.0) @@ -7756,7 +7618,7 @@ packages: '@types/react-dom': optional: true dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 '@radix-ui/react-slot': 1.0.2(@types/react@18.2.14)(react@18.2.0) '@types/react': 18.2.14 '@types/react-dom': 18.2.6 @@ -7777,7 +7639,7 @@ packages: '@types/react-dom': optional: true dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 '@radix-ui/react-slot': 1.0.2(@types/react@18.2.14)(react@18.2.0) '@types/react': 18.2.14 react: 18.2.0 @@ -7796,7 +7658,7 @@ packages: '@types/react-dom': optional: true dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 '@radix-ui/react-slot': 1.0.2(react@18.2.0) react: 18.2.0 react-dom: 18.2.0(react@18.2.0) @@ -7814,7 +7676,7 @@ packages: '@types/react-dom': optional: true dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 '@radix-ui/primitive': 1.0.1 '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.14)(react@18.2.0) @@ -7843,7 +7705,7 @@ packages: '@types/react-dom': optional: true dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 '@radix-ui/primitive': 1.0.1 '@radix-ui/react-collection': 1.0.3(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.14)(react@18.2.0) @@ -7870,7 +7732,7 @@ packages: '@types/react-dom': optional: true dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 '@radix-ui/primitive': 1.0.1 '@radix-ui/react-collection': 1.0.3(react-dom@18.2.0)(react@18.2.0) '@radix-ui/react-compose-refs': 1.0.1(react@18.2.0) @@ -7888,7 +7750,7 @@ packages: peerDependencies: react: ^16.8 || ^17.0 || ^18.0 dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 '@radix-ui/react-compose-refs': 1.0.0(react@18.2.0) react: 18.2.0 dev: false @@ -7902,7 +7764,7 @@ packages: '@types/react': optional: true dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.14)(react@18.2.0) '@types/react': 18.2.14 react: 18.2.0 @@ -7916,7 +7778,7 @@ packages: '@types/react': optional: true dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 '@radix-ui/react-compose-refs': 1.0.1(react@18.2.0) react: 18.2.0 @@ -7925,7 +7787,7 @@ packages: peerDependencies: react: ^16.8 || ^17.0 || ^18.0 dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 react: 18.2.0 dev: false @@ -7938,7 +7800,7 @@ packages: '@types/react': optional: true dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 '@types/react': 18.2.14 react: 18.2.0 @@ -7951,7 +7813,7 @@ packages: '@types/react': optional: true dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 react: 18.2.0 /@radix-ui/react-use-controllable-state@1.0.0(react@18.2.0): @@ -7959,7 +7821,7 @@ packages: peerDependencies: react: ^16.8 || ^17.0 || ^18.0 dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 '@radix-ui/react-use-callback-ref': 1.0.0(react@18.2.0) react: 18.2.0 dev: false @@ -7973,7 +7835,7 @@ packages: '@types/react': optional: true dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.14)(react@18.2.0) '@types/react': 18.2.14 react: 18.2.0 @@ -7987,7 +7849,7 @@ packages: '@types/react': optional: true dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 '@radix-ui/react-use-callback-ref': 1.0.1(react@18.2.0) react: 18.2.0 @@ -7996,7 +7858,7 @@ packages: peerDependencies: react: ^16.8 || ^17.0 || ^18.0 dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 '@radix-ui/react-use-callback-ref': 1.0.0(react@18.2.0) react: 18.2.0 dev: false @@ -8010,7 +7872,7 @@ packages: '@types/react': optional: true dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.14)(react@18.2.0) '@types/react': 18.2.14 react: 18.2.0 @@ -8024,7 +7886,7 @@ packages: '@types/react': optional: true dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 '@radix-ui/react-use-callback-ref': 1.0.1(react@18.2.0) react: 18.2.0 @@ -8033,7 +7895,7 @@ packages: peerDependencies: react: ^16.8 || ^17.0 || ^18.0 dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 react: 18.2.0 dev: false @@ -8046,7 +7908,7 @@ packages: '@types/react': optional: true dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 '@types/react': 18.2.14 react: 18.2.0 @@ -8059,7 +7921,7 @@ packages: '@types/react': optional: true dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 react: 18.2.0 /@radix-ui/react-use-rect@1.0.1(@types/react@18.2.14)(react@18.2.0): @@ -8071,7 +7933,7 @@ packages: '@types/react': optional: true dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 '@radix-ui/rect': 1.0.1 '@types/react': 18.2.14 react: 18.2.0 @@ -8085,7 +7947,7 @@ packages: '@types/react': optional: true dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 '@radix-ui/rect': 1.0.1 react: 18.2.0 @@ -8098,7 +7960,7 @@ packages: '@types/react': optional: true dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.14)(react@18.2.0) '@types/react': 18.2.14 react: 18.2.0 @@ -8112,14 +7974,14 @@ packages: '@types/react': optional: true dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 '@radix-ui/react-use-layout-effect': 1.0.1(react@18.2.0) react: 18.2.0 /@radix-ui/rect@1.0.1: resolution: {integrity: sha512-fyrgCaedtvMg9NK3en0pnOYJdtfwxUcNolezkNPUsoX57X8oQk+NkqcvzHXD2uKNij6GXmWU9NDru2IWjrO4BQ==} dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 /@react-spring/animated@9.7.3(react@18.2.0): resolution: {integrity: sha512-5CWeNJt9pNgyvuSzQH+uy2pvTg8Y4/OisoscZIR8/ZNLIOI+CatFBhGZpDGTF/OzdNFsAoGk3wiUYTwoJ0YIvw==} @@ -8174,7 +8036,7 @@ packages: engines: {node: '>=14'} dev: false - /@rollup/plugin-babel@5.3.1(@babel/core@7.21.5)(rollup@2.79.1): + /@rollup/plugin-babel@5.3.1(@babel/core@7.22.9)(rollup@2.79.1): resolution: {integrity: sha512-WFfdLWU/xVWKeRQnKmIAQULUI7Il0gZnBIH/ZFO069wYIfPu+8zrfp/KMW0atmELoRDq8FbiP3VCss9MhCut7Q==} engines: {node: '>= 10.0.0'} peerDependencies: @@ -8185,7 +8047,7 @@ packages: '@types/babel__core': optional: true dependencies: - '@babel/core': 7.21.5 + '@babel/core': 7.22.9 '@babel/helper-module-imports': 7.22.5 '@rollup/pluginutils': 3.1.0(rollup@2.79.1) rollup: 2.79.1 @@ -8359,24 +8221,24 @@ packages: - supports-color dev: true - /@size-limit/file@6.0.4(size-limit@6.0.4): - resolution: {integrity: sha512-SoGUUNEHsZJTDlw6znuMbR0z6apr/NmeEXSFT6iB6gUPyOHIdFtFJpvWeS1vijC7OFQhWHskedB6nBJ6L+bd+A==} - engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} + /@size-limit/file@8.2.6(size-limit@8.2.6): + resolution: {integrity: sha512-B7ayjxiJsbtXdIIWazJkB5gezi5WBMecdHTFPMDhI3NwEML1RVvUjAkrb1mPAAkIpt2LVHPnhdCUHjqDdjugwg==} + engines: {node: ^14.0.0 || ^16.0.0 || >=18.0.0} peerDependencies: - size-limit: 6.0.4 + size-limit: 8.2.6 dependencies: - semver: 7.3.5 - size-limit: 6.0.4 + semver: 7.5.3 + size-limit: 8.2.6 dev: true - /@size-limit/preset-app@6.0.4(size-limit@6.0.4): - resolution: {integrity: sha512-zY5N+E0dOhdtG0v6LgVNuUv3xBjS1iZ8ZwvRnWiPXC6e84iJg9HqRZ78xa+/M/Wdkv0Pofv2GQ9cTrzptmDeAQ==} + /@size-limit/preset-app@8.2.6(size-limit@8.2.6): + resolution: {integrity: sha512-eCiwj4ph+HbO7Bs2TgS+pvwECiltTljPEQTgYbLGZ9Gk/8RHL45mUVvru34x2WgVjT0zYUCx8mJwWst9bOwqPQ==} peerDependencies: - size-limit: 6.0.4 + size-limit: 8.2.6 dependencies: - '@size-limit/file': 6.0.4(size-limit@6.0.4) - '@size-limit/time': 6.0.4(size-limit@6.0.4) - size-limit: 6.0.4 + '@size-limit/file': 8.2.6(size-limit@8.2.6) + '@size-limit/time': 8.2.6(size-limit@8.2.6) + size-limit: 8.2.6 transitivePeerDependencies: - bufferutil - encoding @@ -8384,15 +8246,15 @@ packages: - utf-8-validate dev: true - /@size-limit/time@6.0.4(size-limit@6.0.4): - resolution: {integrity: sha512-HA/YUsLi9KL/oMol1EmkFlwmxZa9OSkrfJxtGMsm9t3as/1Z/URmiaoMPKjOfaOEMZnnh2kgGRKZWwTSvPFqyg==} - engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} + /@size-limit/time@8.2.6(size-limit@8.2.6): + resolution: {integrity: sha512-fUEPvz7Uq6+oUQxSYbNlJt3tTgQBl1VY21USi/B7ebdnVKLnUx1JyPI9v7imN6XEkB2VpJtnYgjFeLgNrirzMA==} + engines: {node: ^14.0.0 || ^16.0.0 || >=18.0.0} peerDependencies: - size-limit: 6.0.4 + size-limit: 8.2.6 dependencies: estimo: 2.3.6 react: 17.0.2 - size-limit: 6.0.4 + size-limit: 8.2.6 transitivePeerDependencies: - bufferutil - encoding @@ -8428,8 +8290,8 @@ packages: transitivePeerDependencies: - debug - /@storybook/addon-a11y@7.0.5(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-MCEhw7AiXdYcRFRXk9ffy9AmMGDZ7FCqiOp03T74qm0VJotvdwZwMSNTRLsAOqMaF/hEK7pj7GeDaYsSKVKHPA==} + /@storybook/addon-a11y@7.0.27(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-S26bgFMhKa6AxyPqVyO51SOfO5MStzInHebOcqUtHYs1Npz1MMM80A4YuF8KVvcu4WAFdvdIA4gI/47djrN+sA==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -8439,16 +8301,16 @@ packages: react-dom: optional: true dependencies: - '@storybook/addon-highlight': 7.0.5 - '@storybook/channels': 7.0.5 - '@storybook/client-logger': 7.0.5 - '@storybook/components': 7.0.5(react-dom@18.2.0)(react@18.2.0) - '@storybook/core-events': 7.0.5 + '@storybook/addon-highlight': 7.0.27 + '@storybook/channels': 7.0.27 + '@storybook/client-logger': 7.0.27 + '@storybook/components': 7.0.27(react-dom@18.2.0)(react@18.2.0) + '@storybook/core-events': 7.0.27 '@storybook/global': 5.0.0 - '@storybook/manager-api': 7.0.5(react-dom@18.2.0)(react@18.2.0) - '@storybook/preview-api': 7.0.5 - '@storybook/theming': 7.0.5(react-dom@18.2.0)(react@18.2.0) - '@storybook/types': 7.0.5 + '@storybook/manager-api': 7.0.27(react-dom@18.2.0)(react@18.2.0) + '@storybook/preview-api': 7.0.27 + '@storybook/theming': 7.0.27(react-dom@18.2.0)(react@18.2.0) + '@storybook/types': 7.0.27 axe-core: 4.7.2 lodash: 4.17.21 react: 18.2.0 @@ -8456,8 +8318,8 @@ packages: react-resize-detector: 7.1.2(react-dom@18.2.0)(react@18.2.0) dev: true - /@storybook/addon-actions@7.0.5(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-+291rPr9Qms+93xdxejsGFPgZEAgdWlf/UkxEcpyhBkaY17haoFPkcEh2xxEpIx2pwWsTPEwHrd1Si8+Xz5nCQ==} + /@storybook/addon-actions@7.0.27(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-bDN7rxdEBfcgV+LJWpmd26RdblODIPFaR+UMLVIITLP2ZxSjJ5yCcDenKDvSZJCPLhDnDcyiUmNcyvRtdmWf0w==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -8467,14 +8329,14 @@ packages: react-dom: optional: true dependencies: - '@storybook/client-logger': 7.0.5 - '@storybook/components': 7.0.5(react-dom@18.2.0)(react@18.2.0) - '@storybook/core-events': 7.0.5 + '@storybook/client-logger': 7.0.27 + '@storybook/components': 7.0.27(react-dom@18.2.0)(react@18.2.0) + '@storybook/core-events': 7.0.27 '@storybook/global': 5.0.0 - '@storybook/manager-api': 7.0.5(react-dom@18.2.0)(react@18.2.0) - '@storybook/preview-api': 7.0.5 - '@storybook/theming': 7.0.5(react-dom@18.2.0)(react@18.2.0) - '@storybook/types': 7.0.5 + '@storybook/manager-api': 7.0.27(react-dom@18.2.0)(react@18.2.0) + '@storybook/preview-api': 7.0.27 + '@storybook/theming': 7.0.27(react-dom@18.2.0)(react@18.2.0) + '@storybook/types': 7.0.27 dequal: 2.0.3 lodash: 4.17.21 polished: 4.2.2 @@ -8484,10 +8346,10 @@ packages: react-inspector: 6.0.2(react@18.2.0) telejson: 7.1.0 ts-dedent: 2.2.0 - uuid-browser: 3.1.0 + uuid: 9.0.0 - /@storybook/addon-backgrounds@7.0.5(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-Xy9ZalEzIxiGv/+jsbDRDKwELVJqdMVoarrY6OkbDZJ0YckEBbiBTwfHur+VsHsoO19bS3l9i+22y7ePBIntTQ==} + /@storybook/addon-backgrounds@7.0.27(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-ujhlekvYirsEmRgLhKM8MtRHnG3ZBwkHKV7bj+BNl6YP39MB3SWlDqS9igRaoZhXvL1yIIbvtLkebaYBAL01dw==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -8497,22 +8359,22 @@ packages: react-dom: optional: true dependencies: - '@storybook/client-logger': 7.0.5 - '@storybook/components': 7.0.5(react-dom@18.2.0)(react@18.2.0) - '@storybook/core-events': 7.0.5 + '@storybook/client-logger': 7.0.27 + '@storybook/components': 7.0.27(react-dom@18.2.0)(react@18.2.0) + '@storybook/core-events': 7.0.27 '@storybook/global': 5.0.0 - '@storybook/manager-api': 7.0.5(react-dom@18.2.0)(react@18.2.0) - '@storybook/preview-api': 7.0.5 - '@storybook/theming': 7.0.5(react-dom@18.2.0)(react@18.2.0) - '@storybook/types': 7.0.5 + '@storybook/manager-api': 7.0.27(react-dom@18.2.0)(react@18.2.0) + '@storybook/preview-api': 7.0.27 + '@storybook/theming': 7.0.27(react-dom@18.2.0)(react@18.2.0) + '@storybook/types': 7.0.27 memoizerific: 1.11.3 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) ts-dedent: 2.2.0 dev: true - /@storybook/addon-controls@7.0.5(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-Fd3aUmFQ4iBfvpVrQ+rNi7PBgencxrvHx1CG6gtx27D8TKwb/y7iuel2ru6X1Qz/kvQcZl06ZB86zH+QljK9/w==} + /@storybook/addon-controls@7.0.27(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-wONLfJ4x6gbuSGxkK54QDGFI2/pd3K32ukpp2rXV6DyyRzrjal3RQdLZYzSppEfDqxrmPTFuGiw7J7w0BLJ5TQ==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -8522,46 +8384,47 @@ packages: react-dom: optional: true dependencies: - '@storybook/blocks': 7.0.5(react-dom@18.2.0)(react@18.2.0) - '@storybook/client-logger': 7.0.5 - '@storybook/components': 7.0.5(react-dom@18.2.0)(react@18.2.0) - '@storybook/core-common': 7.0.5 - '@storybook/manager-api': 7.0.5(react-dom@18.2.0)(react@18.2.0) - '@storybook/node-logger': 7.0.5 - '@storybook/preview-api': 7.0.5 - '@storybook/theming': 7.0.5(react-dom@18.2.0)(react@18.2.0) - '@storybook/types': 7.0.5 + '@storybook/blocks': 7.0.27(react-dom@18.2.0)(react@18.2.0) + '@storybook/client-logger': 7.0.27 + '@storybook/components': 7.0.27(react-dom@18.2.0)(react@18.2.0) + '@storybook/core-common': 7.0.27 + '@storybook/manager-api': 7.0.27(react-dom@18.2.0)(react@18.2.0) + '@storybook/node-logger': 7.0.27 + '@storybook/preview-api': 7.0.27 + '@storybook/theming': 7.0.27(react-dom@18.2.0)(react@18.2.0) + '@storybook/types': 7.0.27 lodash: 4.17.21 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) ts-dedent: 2.2.0 transitivePeerDependencies: + - encoding - supports-color dev: true - /@storybook/addon-docs@7.0.5(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-JAnV2wkRTs0raGoSJ4ufrZYCKe2jwcHDCUUUdRgRkI1oPsRZdXnaRscUgIJ2Eju6W4KK0Ibi/Qpe+8Wj+CpTpg==} + /@storybook/addon-docs@7.0.27(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-Q7JbvpejyDVHl/ZS7uHBmgdX+GFznZ042ohPL6a8+vInET2L0u6iXKRz8ZUkvaGPs8NniN9fNkf62Xmw7x2EMQ==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 dependencies: - '@babel/core': 7.21.5 - '@babel/plugin-transform-react-jsx': 7.21.5(@babel/core@7.21.5) + '@babel/core': 7.22.9 + '@babel/plugin-transform-react-jsx': 7.22.5(@babel/core@7.22.9) '@jest/transform': 29.6.1 '@mdx-js/react': 2.3.0(react@18.2.0) - '@storybook/blocks': 7.0.5(react-dom@18.2.0)(react@18.2.0) - '@storybook/client-logger': 7.0.5 - '@storybook/components': 7.0.5(react-dom@18.2.0)(react@18.2.0) - '@storybook/csf-plugin': 7.0.5 - '@storybook/csf-tools': 7.0.5 + '@storybook/blocks': 7.0.27(react-dom@18.2.0)(react@18.2.0) + '@storybook/client-logger': 7.0.27 + '@storybook/components': 7.0.27(react-dom@18.2.0)(react@18.2.0) + '@storybook/csf-plugin': 7.0.27 + '@storybook/csf-tools': 7.0.27 '@storybook/global': 5.0.0 '@storybook/mdx2-csf': 1.1.0 - '@storybook/node-logger': 7.0.5 - '@storybook/postinstall': 7.0.5 - '@storybook/preview-api': 7.0.5 - '@storybook/react-dom-shim': 7.0.5(react-dom@18.2.0)(react@18.2.0) - '@storybook/theming': 7.0.5(react-dom@18.2.0)(react@18.2.0) - '@storybook/types': 7.0.5 + '@storybook/node-logger': 7.0.27 + '@storybook/postinstall': 7.0.27 + '@storybook/preview-api': 7.0.27 + '@storybook/react-dom-shim': 7.0.27(react-dom@18.2.0)(react@18.2.0) + '@storybook/theming': 7.0.27(react-dom@18.2.0)(react@18.2.0) + '@storybook/types': 7.0.27 fs-extra: 11.1.1 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) @@ -8569,45 +8432,47 @@ packages: remark-slug: 6.1.0 ts-dedent: 2.2.0 transitivePeerDependencies: + - encoding - supports-color dev: true - /@storybook/addon-essentials@7.0.5(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-6wektUddMelsWdcRfZfvKfaRPE5d6IsFBbZtE97qcrYnm63mSFwfwC5Kr77ithOOk24cpv5N2a59AL0AEq6sNA==} + /@storybook/addon-essentials@7.0.27(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-3A5XHrxO+B7oNb/vZCV784Sb1a89OjQZGT5+LdW3vvwcuHMoQy0hXie7g0CVZEbG0qqfUMVmGuDlRCLuexsWog==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 dependencies: - '@storybook/addon-actions': 7.0.5(react-dom@18.2.0)(react@18.2.0) - '@storybook/addon-backgrounds': 7.0.5(react-dom@18.2.0)(react@18.2.0) - '@storybook/addon-controls': 7.0.5(react-dom@18.2.0)(react@18.2.0) - '@storybook/addon-docs': 7.0.5(react-dom@18.2.0)(react@18.2.0) - '@storybook/addon-highlight': 7.0.5 - '@storybook/addon-measure': 7.0.5(react-dom@18.2.0)(react@18.2.0) - '@storybook/addon-outline': 7.0.5(react-dom@18.2.0)(react@18.2.0) - '@storybook/addon-toolbars': 7.0.5(react-dom@18.2.0)(react@18.2.0) - '@storybook/addon-viewport': 7.0.5(react-dom@18.2.0)(react@18.2.0) - '@storybook/core-common': 7.0.5 - '@storybook/manager-api': 7.0.5(react-dom@18.2.0)(react@18.2.0) - '@storybook/node-logger': 7.0.5 - '@storybook/preview-api': 7.0.5 + '@storybook/addon-actions': 7.0.27(react-dom@18.2.0)(react@18.2.0) + '@storybook/addon-backgrounds': 7.0.27(react-dom@18.2.0)(react@18.2.0) + '@storybook/addon-controls': 7.0.27(react-dom@18.2.0)(react@18.2.0) + '@storybook/addon-docs': 7.0.27(react-dom@18.2.0)(react@18.2.0) + '@storybook/addon-highlight': 7.0.27 + '@storybook/addon-measure': 7.0.27(react-dom@18.2.0)(react@18.2.0) + '@storybook/addon-outline': 7.0.27(react-dom@18.2.0)(react@18.2.0) + '@storybook/addon-toolbars': 7.0.27(react-dom@18.2.0)(react@18.2.0) + '@storybook/addon-viewport': 7.0.27(react-dom@18.2.0)(react@18.2.0) + '@storybook/core-common': 7.0.27 + '@storybook/manager-api': 7.0.27(react-dom@18.2.0)(react@18.2.0) + '@storybook/node-logger': 7.0.27 + '@storybook/preview-api': 7.0.27 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) ts-dedent: 2.2.0 transitivePeerDependencies: + - encoding - supports-color dev: true - /@storybook/addon-highlight@7.0.5: - resolution: {integrity: sha512-m52Yx2AfWdh+hYAHTjPPocOUd15IE5OAF2nx1rmRfp+caIwKE8UyAn2J4Tk2aVwybUM96B4Bioo8cmOj6znqPw==} + /@storybook/addon-highlight@7.0.27: + resolution: {integrity: sha512-Lfiv0yeETF0pPyyN9lg4YXwLbEZXOOEzSkrXtBPgtrfhK/pfEBE5SUK4hmKy1droq1dEZhO52dxNUhg6y8GdWg==} dependencies: - '@storybook/core-events': 7.0.5 + '@storybook/core-events': 7.0.27 '@storybook/global': 5.0.0 - '@storybook/preview-api': 7.0.5 + '@storybook/preview-api': 7.0.27 dev: true - /@storybook/addon-measure@7.0.5(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-I7elq6JPYsNQXn6f9zCg/1vBxj74zuZjL/FyxjtQkFipi5M3NGcY/j0y62l0s8NL5+59F3sZmgf9jtyKRGQ99Q==} + /@storybook/addon-measure@7.0.27(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-ffwVgENUwoiG4vLniTxNV6Uw2dfLz7TkbIivAb+Z+OpkSfwu+2EXCt0shhoVAGfdrGSoaIij2TWabegd0jpUeQ==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -8617,19 +8482,19 @@ packages: react-dom: optional: true dependencies: - '@storybook/client-logger': 7.0.5 - '@storybook/components': 7.0.5(react-dom@18.2.0)(react@18.2.0) - '@storybook/core-events': 7.0.5 + '@storybook/client-logger': 7.0.27 + '@storybook/components': 7.0.27(react-dom@18.2.0)(react@18.2.0) + '@storybook/core-events': 7.0.27 '@storybook/global': 5.0.0 - '@storybook/manager-api': 7.0.5(react-dom@18.2.0)(react@18.2.0) - '@storybook/preview-api': 7.0.5 - '@storybook/types': 7.0.5 + '@storybook/manager-api': 7.0.27(react-dom@18.2.0)(react@18.2.0) + '@storybook/preview-api': 7.0.27 + '@storybook/types': 7.0.27 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) dev: true - /@storybook/addon-outline@7.0.5(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-ZgTjwYC5j6mOPzL+LKXgFuQhaGDOM/ZJwAX4EKrgRW6DMl49JNQqFug5AwYBPhDmLBjazW239JfbxgaEC76psA==} + /@storybook/addon-outline@7.0.27(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-t4uSaeUN8M4LIx7pevub8MZBPzpTfXyjzpdkEhTNqFRccGPqhtL56i++lbRviRbNWAHmBP3pswudxSl97/1dBA==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -8639,20 +8504,20 @@ packages: react-dom: optional: true dependencies: - '@storybook/client-logger': 7.0.5 - '@storybook/components': 7.0.5(react-dom@18.2.0)(react@18.2.0) - '@storybook/core-events': 7.0.5 + '@storybook/client-logger': 7.0.27 + '@storybook/components': 7.0.27(react-dom@18.2.0)(react@18.2.0) + '@storybook/core-events': 7.0.27 '@storybook/global': 5.0.0 - '@storybook/manager-api': 7.0.5(react-dom@18.2.0)(react@18.2.0) - '@storybook/preview-api': 7.0.5 - '@storybook/types': 7.0.5 + '@storybook/manager-api': 7.0.27(react-dom@18.2.0)(react@18.2.0) + '@storybook/preview-api': 7.0.27 + '@storybook/types': 7.0.27 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) ts-dedent: 2.2.0 dev: true - /@storybook/addon-storysource@7.0.5(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-f0v3zoIUrcIVf+s/4gZxVNRxamak0rQ0bQfUg4aeCbnFzEW0V7/BMGzYO+R9O9ccif7/6IyVvxUnYaDZNRb5sg==} + /@storybook/addon-storysource@7.0.27(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-G0wC+8kd6aUExsHT/ppleDzDMaURrBqsoq/DCnCbOg+ULS+KTaT427aQr17YpsINtQ2TVjunBn4lAcrYjwpBnQ==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -8662,13 +8527,13 @@ packages: react-dom: optional: true dependencies: - '@storybook/client-logger': 7.0.5 - '@storybook/components': 7.0.5(react-dom@18.2.0)(react@18.2.0) - '@storybook/manager-api': 7.0.5(react-dom@18.2.0)(react@18.2.0) - '@storybook/preview-api': 7.0.5 - '@storybook/router': 7.0.5(react-dom@18.2.0)(react@18.2.0) - '@storybook/source-loader': 7.0.5(react-dom@18.2.0)(react@18.2.0) - '@storybook/theming': 7.0.5(react-dom@18.2.0)(react@18.2.0) + '@storybook/client-logger': 7.0.27 + '@storybook/components': 7.0.27(react-dom@18.2.0)(react@18.2.0) + '@storybook/manager-api': 7.0.27(react-dom@18.2.0)(react@18.2.0) + '@storybook/preview-api': 7.0.27 + '@storybook/router': 7.0.27(react-dom@18.2.0)(react@18.2.0) + '@storybook/source-loader': 7.0.27(react-dom@18.2.0)(react@18.2.0) + '@storybook/theming': 7.0.27(react-dom@18.2.0)(react@18.2.0) estraverse: 5.3.0 prop-types: 15.8.1 react: 18.2.0 @@ -8676,8 +8541,8 @@ packages: react-syntax-highlighter: 15.5.0(react@18.2.0) dev: true - /@storybook/addon-toolbars@7.0.5(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-0H5gO9vw8QuVYIUH4NyFj5MGOLXtubnZqtjJBeBIGxfg56EHbn9GB515g6o5Jzn4jwnSDq1X8PGLC62CDiTbzA==} + /@storybook/addon-toolbars@7.0.27(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-Zz7B/T9l+Eyvh7jYO+t4Fwdq2N8mVHkklztCSWz5gk/VE3cFttku3+PjPithdOXVbpqbux8HC8lDDS5KnQuurA==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -8687,17 +8552,17 @@ packages: react-dom: optional: true dependencies: - '@storybook/client-logger': 7.0.5 - '@storybook/components': 7.0.5(react-dom@18.2.0)(react@18.2.0) - '@storybook/manager-api': 7.0.5(react-dom@18.2.0)(react@18.2.0) - '@storybook/preview-api': 7.0.5 - '@storybook/theming': 7.0.5(react-dom@18.2.0)(react@18.2.0) + '@storybook/client-logger': 7.0.27 + '@storybook/components': 7.0.27(react-dom@18.2.0)(react@18.2.0) + '@storybook/manager-api': 7.0.27(react-dom@18.2.0)(react@18.2.0) + '@storybook/preview-api': 7.0.27 + '@storybook/theming': 7.0.27(react-dom@18.2.0)(react@18.2.0) react: 18.2.0 react-dom: 18.2.0(react@18.2.0) dev: true - /@storybook/addon-viewport@7.0.5(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-sonhnMHjw7qetokABAjC6r8VjDqDhCqjB1VJi1pQ7WJT/iwzxQpGmhbbUTsJhJFJokIlqV+s7w0sOBrgekR1Sw==} + /@storybook/addon-viewport@7.0.27(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-evU1b7DT8yUR47ZhfLC255NPlxgupEVOcAtwL+8aQEp3uhff+nYXOEN8u/fd3ZTKs0i37FRyNdk5FOMk18RykQ==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -8707,34 +8572,34 @@ packages: react-dom: optional: true dependencies: - '@storybook/client-logger': 7.0.5 - '@storybook/components': 7.0.5(react-dom@18.2.0)(react@18.2.0) - '@storybook/core-events': 7.0.5 + '@storybook/client-logger': 7.0.27 + '@storybook/components': 7.0.27(react-dom@18.2.0)(react@18.2.0) + '@storybook/core-events': 7.0.27 '@storybook/global': 5.0.0 - '@storybook/manager-api': 7.0.5(react-dom@18.2.0)(react@18.2.0) - '@storybook/preview-api': 7.0.5 - '@storybook/theming': 7.0.5(react-dom@18.2.0)(react@18.2.0) + '@storybook/manager-api': 7.0.27(react-dom@18.2.0)(react@18.2.0) + '@storybook/preview-api': 7.0.27 + '@storybook/theming': 7.0.27(react-dom@18.2.0)(react@18.2.0) memoizerific: 1.11.3 prop-types: 15.8.1 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) dev: true - /@storybook/addons@7.0.5(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-Bkb56xL6R4s94VMHz1R4Bzo1qBjNclUPXO4DN9m3CAQDdCNuJVcj+JxDMBucs/m/FBjWm4hMM/saQeBCGk+Jpw==} + /@storybook/addons@7.0.27(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-LGfd8OAwS+zl7qQyLSAg/JjkfDDyf2uhwZIMYHomv3Oow/KT8kPqAdLqmsuAYBrTFBEqX3duemdHgjG7lVv9qQ==} peerDependencies: 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.0.5(react-dom@18.2.0)(react@18.2.0) - '@storybook/preview-api': 7.0.5 - '@storybook/types': 7.0.5 + '@storybook/manager-api': 7.0.27(react-dom@18.2.0)(react@18.2.0) + '@storybook/preview-api': 7.0.27 + '@storybook/types': 7.0.27 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) dev: true - /@storybook/api@7.0.5(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-0YftXdLOLPKnMtBxJrCitrG5BZUYUMs1KmFcjlLzLVbj+KOybvX1cTBkWPuoFY2YRS1FA79gHsth1Ed9oO3k1A==} + /@storybook/api@7.0.27(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-kvqtnahIdyp+c7qwG/IhY6e1ynet/G9k92J6n3UEpMqy0b+jKMpGE45uGdiMg5EDVGjvlDqN8Ed7v/ZDJFjlOw==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -8744,29 +8609,29 @@ packages: react-dom: optional: true dependencies: - '@storybook/client-logger': 7.0.5 - '@storybook/manager-api': 7.0.5(react-dom@18.2.0)(react@18.2.0) + '@storybook/client-logger': 7.0.27 + '@storybook/manager-api': 7.0.27(react-dom@18.2.0)(react@18.2.0) react: 18.2.0 react-dom: 18.2.0(react@18.2.0) dev: true - /@storybook/blocks@7.0.5(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-cOWRqmgRMZ+pgnqRv6jC2ehvXiQxDJsTQAoWO2+5iUuBmciv6s9u7FQFkW9Wn1TUkkLwEvY5jnzMNvzZsEBx1w==} + /@storybook/blocks@7.0.27(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-6EXUWS1DjI68HXHFilaav9/sAqLKZKNBaVdhIHoRfB3lJ29MzxQe1k5BN+JRnUQE9cKC/F5XuP9y2pg7P1Y6CQ==} peerDependencies: 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.0.5 - '@storybook/client-logger': 7.0.5 - '@storybook/components': 7.0.5(react-dom@18.2.0)(react@18.2.0) - '@storybook/core-events': 7.0.5 + '@storybook/channels': 7.0.27 + '@storybook/client-logger': 7.0.27 + '@storybook/components': 7.0.27(react-dom@18.2.0)(react@18.2.0) + '@storybook/core-events': 7.0.27 '@storybook/csf': 0.1.1 - '@storybook/docs-tools': 7.0.5 + '@storybook/docs-tools': 7.0.27 '@storybook/global': 5.0.0 - '@storybook/manager-api': 7.0.5(react-dom@18.2.0)(react@18.2.0) - '@storybook/preview-api': 7.0.5 - '@storybook/theming': 7.0.5(react-dom@18.2.0)(react@18.2.0) - '@storybook/types': 7.0.5 + '@storybook/manager-api': 7.0.27(react-dom@18.2.0)(react@18.2.0) + '@storybook/preview-api': 7.0.27 + '@storybook/theming': 7.0.27(react-dom@18.2.0)(react@18.2.0) + '@storybook/types': 7.0.27 '@types/lodash': 4.14.195 color-convert: 2.0.1 dequal: 2.0.3 @@ -8781,16 +8646,17 @@ packages: ts-dedent: 2.2.0 util-deprecate: 1.0.2 transitivePeerDependencies: + - encoding - supports-color dev: true - /@storybook/builder-manager@7.0.5: - resolution: {integrity: sha512-nSH5IWGsP+9OyZdh03i1yNvyViaF4099YpD9jDSQvn3H4I7UH8qsprFu3yoCax51lQqoxOadmlazS6P4DtLXMg==} + /@storybook/builder-manager@7.0.27: + resolution: {integrity: sha512-KDhBAx8Ib1nnAoB3Lm9kGo2QwBbxwFbonbB0otfT0hGhLSTKllHRYx3WL24bqibI9a87Jt1RT913PZusQ5up4w==} dependencies: '@fal-works/esbuild-plugin-global-externals': 2.1.2 - '@storybook/core-common': 7.0.5 - '@storybook/manager': 7.0.5 - '@storybook/node-logger': 7.0.5 + '@storybook/core-common': 7.0.27 + '@storybook/manager': 7.0.27 + '@storybook/node-logger': 7.0.27 '@types/ejs': 3.1.2 '@types/find-cache-dir': 3.2.1 '@yarnpkg/esbuild-plugin-pnp': 3.0.0-rc.15(esbuild@0.17.19) @@ -8804,11 +8670,12 @@ packages: process: 0.11.10 util: 0.12.5 transitivePeerDependencies: + - encoding - supports-color dev: true - /@storybook/builder-webpack5@7.0.5(react-dom@18.2.0)(react@18.2.0)(typescript@5.0.4)(webpack-cli@4.9.1): - resolution: {integrity: sha512-y0nryC0Ns5oM2rG8QmP9tUw2WCQ3O96kJWmVnjOxQ5XfD67IuuM/z+e3FMVMpluAYUeTFDc3BNmBqlra37FzMQ==} + /@storybook/builder-webpack5@7.0.27(react-dom@18.2.0)(react@18.2.0)(typescript@5.0.4)(webpack-cli@4.9.1): + resolution: {integrity: sha512-N6CZflMuUCR23ZXzz8oNRFJLL/SGguQxwlibcw0jpdUZnXREz+6Dr3ADIrTqZGeNVxM4MkLxHfRjhi4Bkmc3wQ==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -8817,29 +8684,29 @@ packages: typescript: optional: true dependencies: - '@babel/core': 7.21.5 - '@storybook/addons': 7.0.5(react-dom@18.2.0)(react@18.2.0) - '@storybook/api': 7.0.5(react-dom@18.2.0)(react@18.2.0) - '@storybook/channel-postmessage': 7.0.5 - '@storybook/channel-websocket': 7.0.5 - '@storybook/channels': 7.0.5 - '@storybook/client-api': 7.0.5 - '@storybook/client-logger': 7.0.5 - '@storybook/components': 7.0.5(react-dom@18.2.0)(react@18.2.0) - '@storybook/core-common': 7.0.5 - '@storybook/core-events': 7.0.5 - '@storybook/core-webpack': 7.0.5 + '@babel/core': 7.22.9 + '@storybook/addons': 7.0.27(react-dom@18.2.0)(react@18.2.0) + '@storybook/api': 7.0.27(react-dom@18.2.0)(react@18.2.0) + '@storybook/channel-postmessage': 7.0.27 + '@storybook/channel-websocket': 7.0.27 + '@storybook/channels': 7.0.27 + '@storybook/client-api': 7.0.27 + '@storybook/client-logger': 7.0.27 + '@storybook/components': 7.0.27(react-dom@18.2.0)(react@18.2.0) + '@storybook/core-common': 7.0.27 + '@storybook/core-events': 7.0.27 + '@storybook/core-webpack': 7.0.27 '@storybook/global': 5.0.0 - '@storybook/manager-api': 7.0.5(react-dom@18.2.0)(react@18.2.0) - '@storybook/node-logger': 7.0.5 - '@storybook/preview': 7.0.5 - '@storybook/preview-api': 7.0.5 - '@storybook/router': 7.0.5(react-dom@18.2.0)(react@18.2.0) - '@storybook/store': 7.0.5 - '@storybook/theming': 7.0.5(react-dom@18.2.0)(react@18.2.0) + '@storybook/manager-api': 7.0.27(react-dom@18.2.0)(react@18.2.0) + '@storybook/node-logger': 7.0.27 + '@storybook/preview': 7.0.27 + '@storybook/preview-api': 7.0.27 + '@storybook/router': 7.0.27(react-dom@18.2.0)(react@18.2.0) + '@storybook/store': 7.0.27 + '@storybook/theming': 7.0.27(react-dom@18.2.0)(react@18.2.0) '@types/node': 16.18.38 '@types/semver': 7.5.0 - babel-loader: 9.1.2(@babel/core@7.21.5)(webpack@5.76.0) + babel-loader: 9.1.2(@babel/core@7.22.9)(webpack@5.76.0) babel-plugin-named-exports-order: 0.0.2 browser-assert: 1.2.1 case-sensitive-paths-webpack-plugin: 2.4.0 @@ -8865,6 +8732,7 @@ packages: webpack-virtual-modules: 0.4.6 transitivePeerDependencies: - '@swc/core' + - encoding - esbuild - supports-color - uglify-js @@ -8872,44 +8740,43 @@ packages: - webpack-cli dev: true - /@storybook/channel-postmessage@7.0.5: - resolution: {integrity: sha512-Ri0188tHfvg2asdNOVUeLU1w1G/V485y/vatZ/vC3My9cG8P39t8ZKAJdA3hukc+7RZKZU+snqCz7de89/CF7Q==} + /@storybook/channel-postmessage@7.0.27: + resolution: {integrity: sha512-ScpiStUHvtgy9RrCFNyzzH9l+zHF80lSwW/BZ1MRETJ9ZaOVPrm03U0Ju01wJC57DYPROwPU/wKMetNqKKEhdA==} dependencies: - '@storybook/channels': 7.0.5 - '@storybook/client-logger': 7.0.5 - '@storybook/core-events': 7.0.5 + '@storybook/channels': 7.0.27 + '@storybook/client-logger': 7.0.27 + '@storybook/core-events': 7.0.27 '@storybook/global': 5.0.0 qs: 6.11.2 telejson: 7.1.0 - /@storybook/channel-websocket@7.0.5: - resolution: {integrity: sha512-QgvxAZjEdRzPZveUibErJbaqqe97DLscPeK5YHA1/xDCPqMKo0HaQKTyT0YSsSkeE3oKXbdz9IXFXEaPmIpjzw==} + /@storybook/channel-websocket@7.0.27: + resolution: {integrity: sha512-5WZmd5cd54HYa1WMWN694o266HpvWvGj9XC17DD+DwVARnWRxBmFnZs+X2FE68rGzccjD2cAJXyDTFHrcS+U1g==} dependencies: - '@storybook/channels': 7.0.5 - '@storybook/client-logger': 7.0.5 + '@storybook/channels': 7.0.27 + '@storybook/client-logger': 7.0.27 '@storybook/global': 5.0.0 telejson: 7.1.0 dev: true - /@storybook/channels@7.0.5: - resolution: {integrity: sha512-WiSPXgOK63jAlDDmbTs1sVXoYe3r/4VjpfwhEcxSPU544YQVARF1ePtiGjlp8HVFhZh1Q7afbVGJ9w96++u98A==} + /@storybook/channels@7.0.27: + resolution: {integrity: sha512-YppvPa1qMyC+oCQJ3tf7Quzpf2NnBlvIRLPJiGAMssUwX5qE0iKe9lTtkNwMaNxEvzz6rDxewSlz+f/MWr4gPw==} - /@storybook/cli@7.0.5: - resolution: {integrity: sha512-VRrf4XG9H29FycNqthT6r4MjT0f4ynpwQAj039vUrt95rosV8ytuLFIrTwww1x/2o/VNpkWyL7MJwu6dejeZgw==} + /@storybook/cli@7.0.27: + resolution: {integrity: sha512-iHugKuE3Rw/QdFSJBCJQYaZJsnEAQtFLf9vYNRjEqmkif5AR0leZj4yQ5kV1OfQ8MRuh+FGQ/u1cz6fRsFiWEA==} hasBin: true dependencies: - '@babel/core': 7.21.5 - '@babel/preset-env': 7.21.5(@babel/core@7.21.5) + '@babel/core': 7.22.9 + '@babel/preset-env': 7.22.9(@babel/core@7.22.9) '@ndelangen/get-tarball': 3.0.9 - '@storybook/codemod': 7.0.5 - '@storybook/core-common': 7.0.5 - '@storybook/core-server': 7.0.5 - '@storybook/csf-tools': 7.0.5 - '@storybook/node-logger': 7.0.5 - '@storybook/telemetry': 7.0.5 - '@storybook/types': 7.0.5 + '@storybook/codemod': 7.0.27 + '@storybook/core-common': 7.0.27 + '@storybook/core-server': 7.0.27 + '@storybook/csf-tools': 7.0.27 + '@storybook/node-logger': 7.0.27 + '@storybook/telemetry': 7.0.27 + '@storybook/types': 7.0.27 '@types/semver': 7.5.0 - boxen: 5.1.2 chalk: 4.1.2 commander: 6.2.1 cross-spawn: 7.0.3 @@ -8923,8 +8790,9 @@ packages: get-port: 5.1.1 giget: 1.1.2 globby: 11.1.0 - jscodeshift: 0.14.0(@babel/preset-env@7.21.5) + jscodeshift: 0.14.0(@babel/preset-env@7.22.9) leven: 3.1.0 + ora: 5.4.1 prettier: 2.8.6 prompts: 2.4.2 puppeteer-core: 2.1.1 @@ -8943,31 +8811,31 @@ packages: - utf-8-validate dev: true - /@storybook/client-api@7.0.5: - resolution: {integrity: sha512-T3QT+Y1CfPjPNHXfFfPiaGl+uepwfKGKwTsLPr5DDGXrDBe569omK9J+kTZptkJ1ZgFQBFcATPdnnHwIkb82kg==} + /@storybook/client-api@7.0.27: + resolution: {integrity: sha512-TS+w8hV2wZTbPkWgG6O1RXjkcYbqYflmZk/ju15d90AssPIZaSdd6se4HJrzJJ/9SMif/yyfG0NjFvNayl5Xcw==} dependencies: - '@storybook/client-logger': 7.0.5 - '@storybook/preview-api': 7.0.5 + '@storybook/client-logger': 7.0.27 + '@storybook/preview-api': 7.0.27 dev: true - /@storybook/client-logger@7.0.5: - resolution: {integrity: sha512-p8Vtb5G/l3gePNDbNjqgGsikthRqDfsPAqFEsAvBWJVZ3vq/ZSU4IsCWSLO/kdkyJyhTXMqQZnOpQ0pDXlOPcQ==} + /@storybook/client-logger@7.0.27: + resolution: {integrity: sha512-t4F0ByHP4MNiyVI5sgqtxSccr4RmPAqTr/h6CeGLJKWzUYobBV5hwKUd/qlfwdjev2u9C7AdLFPBKVcHX5PteA==} dependencies: '@storybook/global': 5.0.0 - /@storybook/codemod@7.0.5: - resolution: {integrity: sha512-Hu9CiVBHhaPJHMVpiAjr7pEtL7/AUsKT/Xxn3xUM7Ngy7TYMa62XTIMkt2Z+tAAud0HzAz/6Wv+2q+IqPr7BeQ==} + /@storybook/codemod@7.0.27: + resolution: {integrity: sha512-kJyJkxEkbm4tnKKcDgVOqN9PG+Pf3ibsl6Skrm1m3wrbOql3DAVfZzLec/QeFOXrGmmSuvl7JdBQrkJj22Bu1Q==} dependencies: - '@babel/core': 7.21.5 - '@babel/preset-env': 7.21.5(@babel/core@7.21.5) - '@babel/types': 7.21.5 + '@babel/core': 7.22.9 + '@babel/preset-env': 7.22.9(@babel/core@7.22.9) + '@babel/types': 7.22.5 '@storybook/csf': 0.1.1 - '@storybook/csf-tools': 7.0.5 - '@storybook/node-logger': 7.0.5 - '@storybook/types': 7.0.5 + '@storybook/csf-tools': 7.0.27 + '@storybook/node-logger': 7.0.27 + '@storybook/types': 7.0.27 cross-spawn: 7.0.3 globby: 11.1.0 - jscodeshift: 0.14.0(@babel/preset-env@7.21.5) + jscodeshift: 0.14.0(@babel/preset-env@7.22.9) lodash: 4.17.21 prettier: 2.8.6 recast: 0.23.2 @@ -8975,83 +8843,85 @@ packages: - supports-color dev: true - /@storybook/components@7.0.5(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-SHftxNH3FG3RZwJ5nbyBZwn5pkI3Ei2xjD7zDwxztI8bCp5hPnOTDwAnQZZCkeW7atSQUe7xFkYqlCgNmXR4PQ==} + /@storybook/components@7.0.27(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-utt4fA1td7QHpvuD/9dWm9UEoO5xTU3EsXk/U2fPUQzN9NEsbWKV/QubUYIpVy5iwwgUyMvqzWHM0veAriJW5A==} peerDependencies: 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.0.5 + '@storybook/client-logger': 7.0.27 '@storybook/csf': 0.1.1 '@storybook/global': 5.0.0 - '@storybook/theming': 7.0.5(react-dom@18.2.0)(react@18.2.0) - '@storybook/types': 7.0.5 + '@storybook/theming': 7.0.27(react-dom@18.2.0)(react@18.2.0) + '@storybook/types': 7.0.27 memoizerific: 1.11.3 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) use-resize-observer: 9.1.0(react-dom@18.2.0)(react@18.2.0) util-deprecate: 1.0.2 - /@storybook/core-client@7.0.5: - resolution: {integrity: sha512-vN3jK0H4IRjdn/VP7E5dtY0MjytTFSosreSzschmSDTs/K9w52Zm+PkmDzQaBtrDo/VNjJCHnxDLDJZ1ewkoEw==} + /@storybook/core-client@7.0.27: + resolution: {integrity: sha512-5cyAdOLqMUJfGW2c31U4/Q5TF+8DQnuQ6jKeX3W8ZQVhDn/Kox4qYNxRR0aRUUHTzxRVojQfmDHXy8IxZqYBNA==} dependencies: - '@storybook/client-logger': 7.0.5 - '@storybook/preview-api': 7.0.5 + '@storybook/client-logger': 7.0.27 + '@storybook/preview-api': 7.0.27 dev: true - /@storybook/core-common@7.0.5: - resolution: {integrity: sha512-MIvWwu2ntKK3A0FDWRhKcegIAKyJTyzTf5K4PiVgCT2X9Mj0r0GZ10L/OlyTrlnGHqgxNc4oS2rcN3uWjlwXaA==} + /@storybook/core-common@7.0.27: + resolution: {integrity: sha512-nlHXpn3CghCwkeIffZ7/PzcraCDXNZz+cnR4L8vtgJn1n6W7y92mxfF8gkRHuiYHWHbPWRVP9M5vAmVoiNMxjw==} dependencies: - '@storybook/node-logger': 7.0.5 - '@storybook/types': 7.0.5 + '@storybook/node-logger': 7.0.27 + '@storybook/types': 7.0.27 '@types/node': 16.18.38 + '@types/node-fetch': 2.6.4 '@types/pretty-hrtime': 1.0.1 chalk: 4.1.2 esbuild: 0.17.19 esbuild-register: 3.4.2(esbuild@0.17.19) - file-system-cache: 2.4.2 + file-system-cache: 2.3.0 find-up: 5.0.0 fs-extra: 11.1.1 glob: 8.1.0 glob-promise: 6.0.3(glob@8.1.0) handlebars: 4.7.7 lazy-universal-dotenv: 4.0.0 + node-fetch: 2.6.7 picomatch: 2.3.1 pkg-dir: 5.0.0 pretty-hrtime: 1.0.3 resolve-from: 5.0.0 ts-dedent: 2.2.0 transitivePeerDependencies: + - encoding - supports-color dev: true - /@storybook/core-events@7.0.5: - resolution: {integrity: sha512-bYQFZlJR3n5gFk5GVIemuL3m6aYPF6DVnzj6n9UcMZDlHcOZ2B2WbTmAUrGy0bmtj/Fd6ZJKDpBhh3cRRsYkbA==} + /@storybook/core-events@7.0.27: + resolution: {integrity: sha512-sNnqgO5i5DUIqeQfNbr987KWvAciMN9FmMBuYdKjVFMqWFyr44HTgnhfKwZZKl+VMDYkHA9Do7UGSYZIKy0P4g==} - /@storybook/core-server@7.0.5: - resolution: {integrity: sha512-h3SVzwepHTyDxS7ZPuYfHStnWC0EC05axSPKb3yeO6bCsowf+CEXgY5VayUqP8GkgLBez859m172y6B+wVXZ3g==} + /@storybook/core-server@7.0.27: + resolution: {integrity: sha512-9OBDtJ57qJYAgj5UNK8ip4XVSQEVAZxAXWv3QKkQi/QHGixOpxNG4piOF5TdQHv4kc/OX6I0j25ZIrO8jl+VnA==} dependencies: '@aw-web-design/x-default-browser': 1.4.88 '@discoveryjs/json-ext': 0.5.7 - '@storybook/builder-manager': 7.0.5 - '@storybook/core-common': 7.0.5 - '@storybook/core-events': 7.0.5 + '@storybook/builder-manager': 7.0.27 + '@storybook/core-common': 7.0.27 + '@storybook/core-events': 7.0.27 '@storybook/csf': 0.1.1 - '@storybook/csf-tools': 7.0.5 + '@storybook/csf-tools': 7.0.27 '@storybook/docs-mdx': 0.1.0 '@storybook/global': 5.0.0 - '@storybook/manager': 7.0.5 - '@storybook/node-logger': 7.0.5 - '@storybook/preview-api': 7.0.5 - '@storybook/telemetry': 7.0.5 - '@storybook/types': 7.0.5 + '@storybook/manager': 7.0.27 + '@storybook/node-logger': 7.0.27 + '@storybook/preview-api': 7.0.27 + '@storybook/telemetry': 7.0.27 + '@storybook/types': 7.0.27 '@types/detect-port': 1.3.3 '@types/node': 16.18.38 '@types/node-fetch': 2.6.4 '@types/pretty-hrtime': 1.0.1 '@types/semver': 7.5.0 better-opn: 2.1.1 - boxen: 5.1.2 chalk: 4.1.2 cli-table3: 0.6.3 compression: 1.7.4 @@ -9080,36 +8950,37 @@ packages: - utf-8-validate dev: true - /@storybook/core-webpack@7.0.5: - resolution: {integrity: sha512-314PdAt0XJsHq2Eyu3Gl6fqjMF7xGmrhWVvTf9Eczw58T+Gm2aoYnmAf0PP0CXNQwsdnlLx+LHoG2nVpHg9wCw==} + /@storybook/core-webpack@7.0.27: + resolution: {integrity: sha512-qCyiS8hkcejxIr5ARbdhYFxTMjxdBh5ddRPrVnmRk4zlA4SwkS+a6Mt5mzfy6CQY0MQvIeNuKidHZ2pEr2oHNQ==} dependencies: - '@storybook/core-common': 7.0.5 - '@storybook/node-logger': 7.0.5 - '@storybook/types': 7.0.5 + '@storybook/core-common': 7.0.27 + '@storybook/node-logger': 7.0.27 + '@storybook/types': 7.0.27 '@types/node': 16.18.38 ts-dedent: 2.2.0 transitivePeerDependencies: + - encoding - supports-color dev: true - /@storybook/csf-plugin@7.0.5: - resolution: {integrity: sha512-TTM6l1i73ZGUSCJpAXitsd/KHWQbiuPsFSHKaikowK+pJ2hz4kfNG5JrajXKR5OltBAAbUudK25oJWsvo8FGpQ==} + /@storybook/csf-plugin@7.0.27: + resolution: {integrity: sha512-9GqsRNrLMH9+P/57TfGZMZOYgnai1klI0hnBAHwPUaBvCwXx/pjOBy4VW30OslT1JLHzu2ZIvZxZiy+yNZM03w==} dependencies: - '@storybook/csf-tools': 7.0.5 + '@storybook/csf-tools': 7.0.27 unplugin: 0.10.2 transitivePeerDependencies: - supports-color dev: true - /@storybook/csf-tools@7.0.5: - resolution: {integrity: sha512-W83OAlYUyzbx3SuDGgsPunw8BeT5gkYJGqenC6wJH0B1Nc+MjYxjhffaMtnT2X8RgMKKgIIf7sB3QN22y+kN/Q==} + /@storybook/csf-tools@7.0.27: + resolution: {integrity: sha512-JrSP628b1VVQa2lLefEX1u3DRng4Czrl+NBFy5Mgy9JjXFs1dGJM9m0k1/r2qNO4Km9HeTcR4NAcTMfatqzw2Q==} dependencies: - '@babel/generator': 7.21.9 - '@babel/parser': 7.21.9 - '@babel/traverse': 7.21.5 - '@babel/types': 7.21.5 + '@babel/generator': 7.22.9 + '@babel/parser': 7.22.7 + '@babel/traverse': 7.22.8 + '@babel/types': 7.22.5 '@storybook/csf': 0.1.1 - '@storybook/types': 7.0.5 + '@storybook/types': 7.0.27 fs-extra: 11.1.1 recast: 0.23.2 ts-dedent: 2.2.0 @@ -9126,37 +8997,38 @@ packages: resolution: {integrity: sha512-JDaBR9lwVY4eSH5W8EGHrhODjygPd6QImRbwjAuJNEnY0Vw4ie3bPkeGfnacB3OBW6u/agqPv2aRlR46JcAQLg==} dev: true - /@storybook/docs-tools@7.0.5: - resolution: {integrity: sha512-8e/9EIA9+1AhekJ8g81FgnjhJKWq8fNZK3AWYoDiPCjBFY3bLzisTLMAnxQILUG9DRbbX4aH2FZ3sMqvO9f3EQ==} + /@storybook/docs-tools@7.0.27: + resolution: {integrity: sha512-vXlFbwnlJV1ihYbwoP7uJ8JhYXkhaH3WL1yzIJx0kL1Fl1KLQc+x4flBM3pWO2MkrRa2hFLy5GrDwD6GxbMfEQ==} dependencies: - '@babel/core': 7.21.5 - '@storybook/core-common': 7.0.5 - '@storybook/preview-api': 7.0.5 - '@storybook/types': 7.0.5 + '@babel/core': 7.22.9 + '@storybook/core-common': 7.0.27 + '@storybook/preview-api': 7.0.27 + '@storybook/types': 7.0.27 '@types/doctrine': 0.0.3 doctrine: 3.0.0 lodash: 4.17.21 transitivePeerDependencies: + - encoding - supports-color dev: true /@storybook/global@5.0.0: resolution: {integrity: sha512-FcOqPAXACP0I3oJ/ws6/rrPT9WGhu915Cg8D02a9YxLo0DE9zI+a9A5gRGvmQ09fiWPukqI8ZAEoQEdWUKMQdQ==} - /@storybook/manager-api@7.0.5(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-zZR5uL3vR5skNge0a8FZNZfnGuDYVLVBpNVi5/UpnVRA/Pr439NHXaJL8xzdT7Xcvs+qp1FHShMM4gZVIFHrKA==} + /@storybook/manager-api@7.0.27(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-CVgy4ti8h0Xc4nxiPujTzhMANl9wmfLGvSA9ZX6YUBbKFV4UOL4oj105iHPW7Ngse6Qoqj0rnhkOSmLczXT03w==} peerDependencies: 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.0.5 - '@storybook/client-logger': 7.0.5 - '@storybook/core-events': 7.0.5 + '@storybook/channels': 7.0.27 + '@storybook/client-logger': 7.0.27 + '@storybook/core-events': 7.0.27 '@storybook/csf': 0.1.1 '@storybook/global': 5.0.0 - '@storybook/router': 7.0.5(react-dom@18.2.0)(react@18.2.0) - '@storybook/theming': 7.0.5(react-dom@18.2.0)(react@18.2.0) - '@storybook/types': 7.0.5 + '@storybook/router': 7.0.27(react-dom@18.2.0)(react@18.2.0) + '@storybook/theming': 7.0.27(react-dom@18.2.0)(react@18.2.0) + '@storybook/types': 7.0.27 dequal: 2.0.3 lodash: 4.17.21 memoizerific: 1.11.3 @@ -9167,16 +9039,16 @@ packages: telejson: 7.1.0 ts-dedent: 2.2.0 - /@storybook/manager@7.0.5: - resolution: {integrity: sha512-EwgEXetNfpitkxJ+WCqVF71aqaLR+3exDfL088NalxLZOJIokodvbtEKdueJr7CzrqTdxMIm9um5YX1ZgxdUcg==} + /@storybook/manager@7.0.27: + resolution: {integrity: sha512-Kxryp9Bp3EEr1axZdq7iOU5epmUvd65j/uT9FxFFHp5ffag6ULfRYVmrXsSIfR6UkwAbx2XYX/W+ScWRel4pDA==} dev: true /@storybook/mdx2-csf@1.1.0: resolution: {integrity: sha512-TXJJd5RAKakWx4BtpwvSNdgTDkKM6RkXU8GK34S/LhidQ5Pjz3wcnqb0TxEkfhK/ztbP8nKHqXFwLfa2CYkvQw==} dev: true - /@storybook/node-logger@7.0.5: - resolution: {integrity: sha512-REBIMItpBVn9tpo2JXP3eyHg9lsYSt1JqWFaEncdKEiXWArv5c8pN6/od7MB3sU3NdHwEDKwLel2fZaDbg3jBQ==} + /@storybook/node-logger@7.0.27: + resolution: {integrity: sha512-idoK+sDaTTPuxHcKhxn+l27Omhxvr1TQ0ALw1h8ehyMbW8TZBdWvYLYfmiWeI3+NQtmeudzxhKSVYTmAY4qDJw==} dependencies: '@types/npmlog': 4.1.4 chalk: 4.1.2 @@ -9184,12 +9056,12 @@ packages: pretty-hrtime: 1.0.3 dev: true - /@storybook/postinstall@7.0.5: - resolution: {integrity: sha512-JtHY04HYdVHj8zeCHE6K6BLKK63r1hk/bhB49u64WuPkNJG8b5rAe5XYXeImOiRbwNLshDRJTyaUhjoSqONskA==} + /@storybook/postinstall@7.0.27: + resolution: {integrity: sha512-VehWuUQxTlqSfTEl3rnufA9+aBbFIv802c8HMJ6SsnwRSb93vlc2ZDGxx3hzryQhbBuI8oNDQx0VdFVwn+MkEg==} dev: true - /@storybook/preset-react-webpack@7.0.5(@babel/core@7.21.5)(react-dom@18.2.0)(react@18.2.0)(typescript@5.0.4)(webpack-cli@4.9.1): - resolution: {integrity: sha512-lW5XKPBALHubyZRm+xaVnjYBUkL79v4eHUZ8GnHI9ieLvKt3FmZJlloVYBEXYxI+5WAZ4AB5gP9xvAXujuAxzA==} + /@storybook/preset-react-webpack@7.0.27(@babel/core@7.22.9)(react-dom@18.2.0)(react@18.2.0)(typescript@5.0.4)(webpack-cli@4.9.1): + resolution: {integrity: sha512-6sqTbaqm3eKTk8RWhlGFQJl+3mwCZpue/4XXHAuuYKFt+0orIsqJtq7ulTk7G1Ism8YT/taU8pUknjGnJIeqiA==} engines: {node: '>=16.0.0'} peerDependencies: '@babel/core': ^7.11.5 @@ -9202,14 +9074,14 @@ packages: typescript: optional: true dependencies: - '@babel/core': 7.21.5 - '@babel/preset-flow': 7.22.5(@babel/core@7.21.5) - '@babel/preset-react': 7.18.6(@babel/core@7.21.5) + '@babel/core': 7.22.9 + '@babel/preset-flow': 7.22.5(@babel/core@7.22.9) + '@babel/preset-react': 7.22.5(@babel/core@7.22.9) '@pmmmwh/react-refresh-webpack-plugin': 0.5.10(react-refresh@0.11.0)(webpack@5.76.0) - '@storybook/core-webpack': 7.0.5 - '@storybook/docs-tools': 7.0.5 - '@storybook/node-logger': 7.0.5 - '@storybook/react': 7.0.5(react-dom@18.2.0)(react@18.2.0)(typescript@5.0.4) + '@storybook/core-webpack': 7.0.27 + '@storybook/docs-tools': 7.0.27 + '@storybook/node-logger': 7.0.27 + '@storybook/react': 7.0.27(react-dom@18.2.0)(react@18.2.0)(typescript@5.0.4) '@storybook/react-docgen-typescript-plugin': 1.0.6--canary.9.0c3f3b7.0(typescript@5.0.4)(webpack@5.76.0) '@types/node': 16.18.38 '@types/semver': 7.5.0 @@ -9225,6 +9097,7 @@ packages: transitivePeerDependencies: - '@swc/core' - '@types/webpack' + - encoding - esbuild - sockjs-client - supports-color @@ -9236,16 +9109,16 @@ packages: - webpack-plugin-serve dev: true - /@storybook/preview-api@7.0.5: - resolution: {integrity: sha512-mZruATt5JXfLuXJfOo30WCXILXjK+hs0HwtUDGRVW/J4Ql8CdNPB+WF56ZgeWUnMAYRf392bN3uNwmZx4v4Fog==} + /@storybook/preview-api@7.0.27: + resolution: {integrity: sha512-FhauTuLzRsaIaEORQP5lxYrzwRgZPMnfYEPnzduyGgPiY6VZkS6wIiO6pKzat83V1L4J7m5aZhTB3HtvTwPhvg==} dependencies: - '@storybook/channel-postmessage': 7.0.5 - '@storybook/channels': 7.0.5 - '@storybook/client-logger': 7.0.5 - '@storybook/core-events': 7.0.5 + '@storybook/channel-postmessage': 7.0.27 + '@storybook/channels': 7.0.27 + '@storybook/client-logger': 7.0.27 + '@storybook/core-events': 7.0.27 '@storybook/csf': 0.1.1 '@storybook/global': 5.0.0 - '@storybook/types': 7.0.5 + '@storybook/types': 7.0.27 '@types/qs': 6.9.7 dequal: 2.0.3 lodash: 4.17.21 @@ -9255,8 +9128,8 @@ packages: ts-dedent: 2.2.0 util-deprecate: 1.0.2 - /@storybook/preview@7.0.5: - resolution: {integrity: sha512-N1IDKzmqnF+XAdACGnaWw22dmSUQHuHKyyQ/vV9upMf0hA+4gk9pc5RFEHOQO/sTbxblgfKm9Q1fIYkxgPVFxg==} + /@storybook/preview@7.0.27: + resolution: {integrity: sha512-yHUlMX6wUlIlOYIzfUtqkuXOgRPJJLqGfeniMxLWjNpcePgZ6iSx0fF91ubKfPF1uUbA5vGSVX6KI+AF/RLM1Q==} dev: true /@storybook/react-docgen-typescript-plugin@1.0.6--canary.9.0c3f3b7.0(typescript@5.0.4)(webpack@5.76.0): @@ -9278,8 +9151,8 @@ packages: - supports-color dev: true - /@storybook/react-dom-shim@7.0.5(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-iSdP73Af/d8RdNfa4rDHI3JuAakDqPl8Z1LT0cFcfzg29kihdmXIVaLvMcMqTrnqELU6VmzSiE86U+T1XOX95w==} + /@storybook/react-dom-shim@7.0.27(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-KnyBrs9S8BIWIhNdT6cIpqmSE9CAxL8uGH/ev60OutKeM+rf3SC3AylIBSvMdjy4cykMasg16QiShK+MMbKl9g==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -9288,8 +9161,8 @@ packages: react-dom: 18.2.0(react@18.2.0) dev: true - /@storybook/react-webpack5@7.0.5(@babel/core@7.21.5)(react-dom@18.2.0)(react@18.2.0)(typescript@5.0.4)(webpack-cli@4.9.1): - resolution: {integrity: sha512-tTwUWp0px1tI4e6WRHq5jcIL5L8pPg0kooBsgln94hXEOTzMF33FT08Bs9knzwN76vkBUo37XfHJKR3vaNJtNA==} + /@storybook/react-webpack5@7.0.27(@babel/core@7.22.9)(react-dom@18.2.0)(react@18.2.0)(typescript@5.0.4)(webpack-cli@4.9.1): + resolution: {integrity: sha512-pTddt227ubDi8fjCe56F90fKgGPHlMaE7DDXYRYUDU8bgZUYu9hlmN0oVH8jXd3DputASH6hWC/Dll8aqrJ/6Q==} engines: {node: '>=16.0.0'} peerDependencies: '@babel/core': ^7.11.5 @@ -9302,10 +9175,10 @@ packages: typescript: optional: true dependencies: - '@babel/core': 7.21.5 - '@storybook/builder-webpack5': 7.0.5(react-dom@18.2.0)(react@18.2.0)(typescript@5.0.4)(webpack-cli@4.9.1) - '@storybook/preset-react-webpack': 7.0.5(@babel/core@7.21.5)(react-dom@18.2.0)(react@18.2.0)(typescript@5.0.4)(webpack-cli@4.9.1) - '@storybook/react': 7.0.5(react-dom@18.2.0)(react@18.2.0)(typescript@5.0.4) + '@babel/core': 7.22.9 + '@storybook/builder-webpack5': 7.0.27(react-dom@18.2.0)(react@18.2.0)(typescript@5.0.4)(webpack-cli@4.9.1) + '@storybook/preset-react-webpack': 7.0.27(@babel/core@7.22.9)(react-dom@18.2.0)(react@18.2.0)(typescript@5.0.4)(webpack-cli@4.9.1) + '@storybook/react': 7.0.27(react-dom@18.2.0)(react@18.2.0)(typescript@5.0.4) '@types/node': 16.18.38 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) @@ -9313,6 +9186,7 @@ packages: transitivePeerDependencies: - '@swc/core' - '@types/webpack' + - encoding - esbuild - sockjs-client - supports-color @@ -9325,8 +9199,8 @@ packages: - webpack-plugin-serve dev: true - /@storybook/react@7.0.5(react-dom@18.2.0)(react@18.2.0)(typescript@5.0.4): - resolution: {integrity: sha512-VXLi/oZnYLXe61Bvfan1YY6cANbFgDb5MmCpu8COaYOGjT53o4gTh3zQoDubaN8wzTQfE0TyP9E+m4//KvZxow==} + /@storybook/react@7.0.27(react-dom@18.2.0)(react@18.2.0)(typescript@5.0.4): + resolution: {integrity: sha512-NPD6J5okkxiBx8k8TWvn03qG6ThD2rp1+2nFGgo3cInCEmvDgoa3wjq/Gl/2QV4W8XrQ8GiItj0Lzca+CBrkOw==} engines: {node: '>=16.0.0'} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -9336,13 +9210,13 @@ packages: typescript: optional: true dependencies: - '@storybook/client-logger': 7.0.5 - '@storybook/core-client': 7.0.5 - '@storybook/docs-tools': 7.0.5 + '@storybook/client-logger': 7.0.27 + '@storybook/core-client': 7.0.27 + '@storybook/docs-tools': 7.0.27 '@storybook/global': 5.0.0 - '@storybook/preview-api': 7.0.5 - '@storybook/react-dom-shim': 7.0.5(react-dom@18.2.0)(react@18.2.0) - '@storybook/types': 7.0.5 + '@storybook/preview-api': 7.0.27 + '@storybook/react-dom-shim': 7.0.27(react-dom@18.2.0)(react@18.2.0) + '@storybook/types': 7.0.27 '@types/escodegen': 0.0.6 '@types/estree': 0.0.51 '@types/node': 16.18.38 @@ -9361,29 +9235,30 @@ packages: typescript: 5.0.4 util-deprecate: 1.0.2 transitivePeerDependencies: + - encoding - supports-color dev: true - /@storybook/router@7.0.5(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-tvbSb+G3Ft5Z7McwUcMa13D8pM4pdoCu/pKCVMOlAI5TZF3lidLMq2RCsrztpHiYBrhZcp6dWfErosXa+BYvwQ==} + /@storybook/router@7.0.27(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-Onflm2mERipuYB3SR+0CFAZKPbDiLsJdgX09BP8bGrg7dVYwiGkL5dc9H/CP0KPxtC7kXT8x1Zc+yx0Y0kWiJw==} peerDependencies: 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.0.5 + '@storybook/client-logger': 7.0.27 memoizerific: 1.11.3 qs: 6.11.2 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - /@storybook/source-loader@7.0.5(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-KUO9VbwTquH8BhM5KPoHgnVxIHrjmN0LlNSP5w0iL5/5aM4sAMGkF/KN9MCMbZ90m+IljLMBUgKk9ASkNH8tuw==} + /@storybook/source-loader@7.0.27(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-2qDH5WxumUGPia/q9pX1hsiGtoDXSQYFeLISJPsIe2Dd8WCiLOxIARXOkZxnzOL+pvFNaD2Y3Mas1JH/4Oy+gA==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 dependencies: '@storybook/csf': 0.1.1 - '@storybook/types': 7.0.5 + '@storybook/types': 7.0.27 estraverse: 5.3.0 lodash: 4.17.21 prettier: 2.8.6 @@ -9391,18 +9266,18 @@ packages: react-dom: 18.2.0(react@18.2.0) dev: true - /@storybook/store@7.0.5: - resolution: {integrity: sha512-ZKp9dw3SfZLEmML7mvA5YUorjxr8WKYkefzVAyOECK9B3gra4x0tH0uzO6J8esauzNiURHG1I1UmyzgcrRNrqg==} + /@storybook/store@7.0.27: + resolution: {integrity: sha512-uk4/92psjfYv8llxnGG3LRy4gpt0ofzbfP3Q3x+vXKRCriKhJFSUGuYp5fSIRwVXJ2UL2o2PqzVSlVgBWZexuA==} dependencies: - '@storybook/client-logger': 7.0.5 - '@storybook/preview-api': 7.0.5 + '@storybook/client-logger': 7.0.27 + '@storybook/preview-api': 7.0.27 dev: true - /@storybook/telemetry@7.0.5: - resolution: {integrity: sha512-eHf3JfMOBpy/QiErHfr4aIcqj/ADEqLOWxxoEICfwj4Nok/9dJKDXdjkHb0GAC2yRE2+iGlz7ipVL2XHZAIhIg==} + /@storybook/telemetry@7.0.27: + resolution: {integrity: sha512-dKPxR7BpIZU/6WmKXnPRHR1b7mlpLcEPoBxOXZKfEmTV6Qb+OIwr2N7pEQA1Jzlktkfw2CoM2O9s1JOMWrVnvQ==} dependencies: - '@storybook/client-logger': 7.0.5 - '@storybook/core-common': 7.0.5 + '@storybook/client-logger': 7.0.27 + '@storybook/core-common': 7.0.27 chalk: 4.1.2 detect-package-manager: 2.0.1 fetch-retry: 5.0.6 @@ -9415,122 +9290,122 @@ packages: - supports-color dev: true - /@storybook/theming@7.0.5(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-XgQXKktcVBOkJT5gXjqtjH7C2pjdreDy0BTVTaEmFzggyyw+cgFrkJ7tuB27oKwYe+svx26c/olVMSHYf+KqhA==} + /@storybook/theming@7.0.27(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-l2Lc8xX8QXQO8c9gpzdUUJ+0YqLoh8w74I7lzxiife0TzEQrhWD9aRJAVimm8Vzfq5x3CNeJNFHc5PcG8ypQig==} peerDependencies: 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.1(react@18.2.0) - '@storybook/client-logger': 7.0.5 + '@storybook/client-logger': 7.0.27 '@storybook/global': 5.0.0 memoizerific: 1.11.3 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - /@storybook/types@7.0.5: - resolution: {integrity: sha512-By+tF3B30QiCnzEJ+Z73M2usSCqBWEmX4OGT1KbiEzWekkrsfCfpZwfzeMw1WwdQGlB1gLKTzB8wZ1zZB8oPtQ==} + /@storybook/types@7.0.27: + resolution: {integrity: sha512-pmJuIm+kGaZiDMyl2i5KFS9iGWrpW1jVcp9OMtHeK20LBzY5Hxq/JMc3E+fbVNkAX2hVlVGbbVUNPTvd9AjbrA==} dependencies: - '@storybook/channels': 7.0.5 + '@storybook/channels': 7.0.27 '@types/babel__core': 7.20.1 '@types/express': 4.17.17 - file-system-cache: 2.4.2 + file-system-cache: 2.3.0 - /@svgr/babel-plugin-add-jsx-attribute@7.0.0(@babel/core@7.21.5): + /@svgr/babel-plugin-add-jsx-attribute@7.0.0(@babel/core@7.22.9): resolution: {integrity: sha512-khWbXesWIP9v8HuKCl2NU2HNAyqpSQ/vkIl36Nbn4HIwEYSRWL0H7Gs6idJdha2DkpFDWlsqMELvoCE8lfFY6Q==} engines: {node: '>=14'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.21.5 + '@babel/core': 7.22.9 dev: true - /@svgr/babel-plugin-remove-jsx-attribute@7.0.0(@babel/core@7.21.5): + /@svgr/babel-plugin-remove-jsx-attribute@7.0.0(@babel/core@7.22.9): resolution: {integrity: sha512-iiZaIvb3H/c7d3TH2HBeK91uI2rMhZNwnsIrvd7ZwGLkFw6mmunOCoVnjdYua662MqGFxlN9xTq4fv9hgR4VXQ==} engines: {node: '>=14'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.21.5 + '@babel/core': 7.22.9 dev: true - /@svgr/babel-plugin-remove-jsx-empty-expression@7.0.0(@babel/core@7.21.5): + /@svgr/babel-plugin-remove-jsx-empty-expression@7.0.0(@babel/core@7.22.9): resolution: {integrity: sha512-sQQmyo+qegBx8DfFc04PFmIO1FP1MHI1/QEpzcIcclo5OAISsOJPW76ZIs0bDyO/DBSJEa/tDa1W26pVtt0FRw==} engines: {node: '>=14'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.21.5 + '@babel/core': 7.22.9 dev: true - /@svgr/babel-plugin-replace-jsx-attribute-value@7.0.0(@babel/core@7.21.5): + /@svgr/babel-plugin-replace-jsx-attribute-value@7.0.0(@babel/core@7.22.9): resolution: {integrity: sha512-i6MaAqIZXDOJeikJuzocByBf8zO+meLwfQ/qMHIjCcvpnfvWf82PFvredEZElErB5glQFJa2KVKk8N2xV6tRRA==} engines: {node: '>=14'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.21.5 + '@babel/core': 7.22.9 dev: true - /@svgr/babel-plugin-svg-dynamic-title@7.0.0(@babel/core@7.21.5): + /@svgr/babel-plugin-svg-dynamic-title@7.0.0(@babel/core@7.22.9): resolution: {integrity: sha512-BoVSh6ge3SLLpKC0pmmN9DFlqgFy4NxNgdZNLPNJWBUU7TQpDWeBuyVuDW88iXydb5Cv0ReC+ffa5h3VrKfk1w==} engines: {node: '>=14'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.21.5 + '@babel/core': 7.22.9 dev: true - /@svgr/babel-plugin-svg-em-dimensions@7.0.0(@babel/core@7.21.5): + /@svgr/babel-plugin-svg-em-dimensions@7.0.0(@babel/core@7.22.9): resolution: {integrity: sha512-tNDcBa+hYn0gO+GkP/AuNKdVtMufVhU9fdzu+vUQsR18RIJ9RWe7h/pSBY338RO08wArntwbDk5WhQBmhf2PaA==} engines: {node: '>=14'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.21.5 + '@babel/core': 7.22.9 dev: true - /@svgr/babel-plugin-transform-react-native-svg@7.0.0(@babel/core@7.21.5): + /@svgr/babel-plugin-transform-react-native-svg@7.0.0(@babel/core@7.22.9): resolution: {integrity: sha512-qw54u8ljCJYL2KtBOjI5z7Nzg8LnSvQOP5hPKj77H4VQL4+HdKbAT5pnkkZLmHKYwzsIHSYKXxHouD8zZamCFQ==} engines: {node: '>=14'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.21.5 + '@babel/core': 7.22.9 dev: true - /@svgr/babel-plugin-transform-svg-component@7.0.0(@babel/core@7.21.5): + /@svgr/babel-plugin-transform-svg-component@7.0.0(@babel/core@7.22.9): resolution: {integrity: sha512-CcFECkDj98daOg9jE3Bh3uyD9kzevCAnZ+UtzG6+BQG/jOQ2OA3jHnX6iG4G1MCJkUQFnUvEv33NvQfqrb/F3A==} engines: {node: '>=12'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.21.5 + '@babel/core': 7.22.9 dev: true - /@svgr/babel-preset@7.0.0(@babel/core@7.21.5): + /@svgr/babel-preset@7.0.0(@babel/core@7.22.9): resolution: {integrity: sha512-EX/NHeFa30j5UjldQGVQikuuQNHUdGmbh9kEpBKofGUtF0GUPJ4T4rhoYiqDAOmBOxojyot36JIFiDUHUK1ilQ==} engines: {node: '>=14'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.21.5 - '@svgr/babel-plugin-add-jsx-attribute': 7.0.0(@babel/core@7.21.5) - '@svgr/babel-plugin-remove-jsx-attribute': 7.0.0(@babel/core@7.21.5) - '@svgr/babel-plugin-remove-jsx-empty-expression': 7.0.0(@babel/core@7.21.5) - '@svgr/babel-plugin-replace-jsx-attribute-value': 7.0.0(@babel/core@7.21.5) - '@svgr/babel-plugin-svg-dynamic-title': 7.0.0(@babel/core@7.21.5) - '@svgr/babel-plugin-svg-em-dimensions': 7.0.0(@babel/core@7.21.5) - '@svgr/babel-plugin-transform-react-native-svg': 7.0.0(@babel/core@7.21.5) - '@svgr/babel-plugin-transform-svg-component': 7.0.0(@babel/core@7.21.5) + '@babel/core': 7.22.9 + '@svgr/babel-plugin-add-jsx-attribute': 7.0.0(@babel/core@7.22.9) + '@svgr/babel-plugin-remove-jsx-attribute': 7.0.0(@babel/core@7.22.9) + '@svgr/babel-plugin-remove-jsx-empty-expression': 7.0.0(@babel/core@7.22.9) + '@svgr/babel-plugin-replace-jsx-attribute-value': 7.0.0(@babel/core@7.22.9) + '@svgr/babel-plugin-svg-dynamic-title': 7.0.0(@babel/core@7.22.9) + '@svgr/babel-plugin-svg-em-dimensions': 7.0.0(@babel/core@7.22.9) + '@svgr/babel-plugin-transform-react-native-svg': 7.0.0(@babel/core@7.22.9) + '@svgr/babel-plugin-transform-svg-component': 7.0.0(@babel/core@7.22.9) dev: true /@svgr/core@7.0.0: resolution: {integrity: sha512-ztAoxkaKhRVloa3XydohgQQCb0/8x9T63yXovpmHzKMkHO6pkjdsIAWKOS4bE95P/2quVh1NtjSKlMRNzSBffw==} engines: {node: '>=14'} dependencies: - '@babel/core': 7.21.5 - '@svgr/babel-preset': 7.0.0(@babel/core@7.21.5) + '@babel/core': 7.22.9 + '@svgr/babel-preset': 7.0.0(@babel/core@7.22.9) camelcase: 6.3.0 cosmiconfig: 8.2.0 transitivePeerDependencies: @@ -9549,8 +9424,8 @@ packages: resolution: {integrity: sha512-SWlTpPQmBUtLKxXWgpv8syzqIU8XgFRvyhfkam2So8b3BE0OS0HPe5UfmlJ2KIC+a7dpuuYovPR2WAQuSyMoPw==} engines: {node: '>=14'} dependencies: - '@babel/core': 7.21.5 - '@svgr/babel-preset': 7.0.0(@babel/core@7.21.5) + '@babel/core': 7.22.9 + '@svgr/babel-preset': 7.0.0(@babel/core@7.22.9) '@svgr/hast-util-to-babel-ast': 7.0.0 svg-parser: 2.0.4 transitivePeerDependencies: @@ -9573,11 +9448,11 @@ packages: resolution: {integrity: sha512-XWzIhLTr5WYns/cNFXpXrmFy+LFf2xp60VnNUBZCpM1CGTx47FCDuUj2DQjxirMf2L6CP2jTRELK8ef01TecFQ==} engines: {node: '>=14'} dependencies: - '@babel/core': 7.21.5 - '@babel/plugin-transform-react-constant-elements': 7.22.5(@babel/core@7.21.5) - '@babel/preset-env': 7.21.5(@babel/core@7.21.5) - '@babel/preset-react': 7.18.6(@babel/core@7.21.5) - '@babel/preset-typescript': 7.21.5(@babel/core@7.21.5) + '@babel/core': 7.22.9 + '@babel/plugin-transform-react-constant-elements': 7.22.5(@babel/core@7.22.9) + '@babel/preset-env': 7.22.9(@babel/core@7.22.9) + '@babel/preset-react': 7.22.5(@babel/core@7.22.9) + '@babel/preset-typescript': 7.22.5(@babel/core@7.22.9) '@svgr/core': 7.0.0 '@svgr/plugin-jsx': 7.0.0 '@svgr/plugin-svgo': 7.0.0(@svgr/core@7.0.0) @@ -9607,7 +9482,7 @@ packages: engines: {node: '>=12'} dependencies: '@babel/code-frame': 7.22.5 - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 '@types/aria-query': 5.0.1 aria-query: 5.3.0 chalk: 4.1.2 @@ -9621,7 +9496,7 @@ packages: engines: {node: '>=8', npm: '>=6', yarn: '>=1'} dependencies: '@adobe/css-tools': 4.2.0 - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 '@types/testing-library__jest-dom': 5.14.6 aria-query: 5.3.0 chalk: 3.0.0 @@ -9650,7 +9525,7 @@ packages: react: ^18.0.0 react-dom: ^18.0.0 dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 '@testing-library/dom': 8.19.1 '@types/react-dom': 18.2.6 react: 18.2.0 @@ -9959,11 +9834,6 @@ packages: /@types/qs@6.9.7: resolution: {integrity: sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw==} - /@types/ramda@0.29.3: - resolution: {integrity: sha512-Yh/RHkjN0ru6LVhSQtTkCRo6HXkfL9trot/2elzM/yXLJmbLm2v6kJc8yftTnwv1zvUob6TEtqI2cYjdqG3U0Q==} - dependencies: - types-ramda: 0.29.4 - /@types/range-parser@1.2.4: resolution: {integrity: sha512-EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw==} @@ -10417,7 +10287,7 @@ packages: resolution: {integrity: sha512-/eiISho69dMl6IaX1zw+++jqJBpjxM5RKQ9uvRr0rrp5yoS/rWUS3dnA8P8bLwieK1m+oTz5Bbq4tVpUH/yvrg==} engines: {node: '>=12'} dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 '@wordpress/dom-ready': 3.37.0 '@wordpress/i18n': 4.37.0 @@ -10425,7 +10295,7 @@ packages: resolution: {integrity: sha512-Am2dT+Sc4Bbjd2zrOsk7Te5cFtlDE5V8ikvxeFU7CQTF/wUEPjJjuhr8/c3WjIloZUghRvwi0+diCVWY3eUvuQ==} engines: {node: '>=12'} dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 '@wordpress/data': 9.7.0(react@18.2.0) '@wordpress/hooks': 3.37.0 '@wordpress/i18n': 4.37.0 @@ -10440,7 +10310,7 @@ packages: resolution: {integrity: sha512-bWJngQ/ZRyLtlRnDdvSErZyoXJFBfHWg+4EQXkLZc6js3FU290H8YoJ9SP4PJTE9aF723mN1x4l/sy1QVWFchQ==} engines: {node: '>=12'} dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 '@wordpress/i18n': 4.37.0 '@wordpress/url': 3.38.0 @@ -10448,28 +10318,28 @@ packages: resolution: {integrity: sha512-OSx8Ftu+XHU3QayQpcPgyhKTlVGDdSbld/5BDZ3xDmGcbmI72Qs6TzOw8bfeNn/Fc6FGhu0CVyg/jaOSVKJ05g==} engines: {node: '>=12'} dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 - /@wordpress/babel-plugin-import-jsx-pragma@4.20.0(@babel/core@7.21.5): + /@wordpress/babel-plugin-import-jsx-pragma@4.20.0(@babel/core@7.22.9): resolution: {integrity: sha512-vJAlUVFjyg+l+SiB8C5T1AWYsXDXZFpIITP5WfXAh4+6DG7R3JE+yUugHM3WLmPzCU57/mUfhyouq8blvsMk7A==} engines: {node: '>=14'} peerDependencies: '@babel/core': ^7.12.9 dependencies: - '@babel/core': 7.21.5 + '@babel/core': 7.22.9 dev: true /@wordpress/babel-preset-default@7.21.0: resolution: {integrity: sha512-5y9aNNEvw16Zz7b3K4OvfFPProxyQEbAK+cS252f7e3qQska5H1S1tVfR5ZCns8X3Aoccc8/odR8safj8zhILA==} engines: {node: '>=14'} dependencies: - '@babel/core': 7.21.5 - '@babel/plugin-transform-react-jsx': 7.21.5(@babel/core@7.21.5) - '@babel/plugin-transform-runtime': 7.21.4(@babel/core@7.21.5) - '@babel/preset-env': 7.21.5(@babel/core@7.21.5) - '@babel/preset-typescript': 7.21.5(@babel/core@7.21.5) - '@babel/runtime': 7.21.5 - '@wordpress/babel-plugin-import-jsx-pragma': 4.20.0(@babel/core@7.21.5) + '@babel/core': 7.22.9 + '@babel/plugin-transform-react-jsx': 7.22.5(@babel/core@7.22.9) + '@babel/plugin-transform-runtime': 7.22.9(@babel/core@7.22.9) + '@babel/preset-env': 7.22.9(@babel/core@7.22.9) + '@babel/preset-typescript': 7.22.5(@babel/core@7.22.9) + '@babel/runtime': 7.22.6 + '@wordpress/babel-plugin-import-jsx-pragma': 4.20.0(@babel/core@7.22.9) '@wordpress/browserslist-config': 5.20.0 '@wordpress/element': 5.14.0 '@wordpress/warning': 2.37.0 @@ -10486,7 +10356,7 @@ packages: resolution: {integrity: sha512-1JkInPKI0inhHlDOchkq639JyNXdPABYoWTNRs9TgB9DtL6Z/EPWwMTTbNTVgeh3LgSbe6Q/A8yPmlGWYDCoRQ==} engines: {node: '>=12'} dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 /@wordpress/block-editor@12.5.0(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-57+BDu0HauCje5KgiicBglHsi9LLCd/O/0xv1hnfMjXwASnbTSmXjKYCkz/G3K9/BqCwdwxoj3DyKML84OAC6w==} @@ -10495,7 +10365,7 @@ packages: react: ^18.0.0 react-dom: ^18.0.0 dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 '@emotion/react': 11.11.1(@types/react@18.2.14)(react@18.2.0) '@emotion/styled': 11.11.0(@emotion/react@11.11.1)(@types/react@18.2.14)(react@18.2.0) '@react-spring/web': 9.7.3(react-dom@18.2.0)(react@18.2.0) @@ -10561,7 +10431,7 @@ packages: react: ^18.0.0 react-dom: ^18.0.0 dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 '@emotion/react': 11.11.1(@types/react@18.2.14)(react@18.2.0) '@emotion/styled': 11.11.0(@emotion/react@11.11.1)(@types/react@18.2.14)(react@18.2.0) '@react-spring/web': 9.7.3(react-dom@18.2.0)(react@18.2.0) @@ -10626,7 +10496,7 @@ packages: react: ^18.0.0 react-dom: ^18.0.0 dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 '@emotion/react': 11.11.1(react@18.2.0) '@emotion/styled': 11.11.0(@emotion/react@11.11.1)(react@18.2.0) '@react-spring/web': 9.7.3(react-dom@18.2.0)(react@18.2.0) @@ -10691,7 +10561,7 @@ packages: react: ^18.0.0 react-dom: ^18.0.0 dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 '@wordpress/a11y': 3.37.0 '@wordpress/api-fetch': 6.34.0 '@wordpress/autop': 3.37.0 @@ -10716,7 +10586,7 @@ packages: '@wordpress/notices': 4.5.0(react@18.2.0) '@wordpress/primitives': 3.35.0 '@wordpress/private-apis': 0.19.0 - '@wordpress/reusable-blocks': 4.14.0(@babel/runtime@7.21.5)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) + '@wordpress/reusable-blocks': 4.14.0(@babel/runtime@7.22.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) '@wordpress/rich-text': 6.14.0(react@18.2.0) '@wordpress/server-side-render': 4.14.0(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) '@wordpress/url': 3.38.0 @@ -10750,7 +10620,7 @@ packages: react: ^18.0.0 react-dom: ^18.0.0 dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 '@wordpress/a11y': 3.37.0 '@wordpress/api-fetch': 6.34.0 '@wordpress/autop': 3.37.0 @@ -10775,7 +10645,7 @@ packages: '@wordpress/notices': 4.5.0(react@18.2.0) '@wordpress/primitives': 3.35.0 '@wordpress/private-apis': 0.19.0 - '@wordpress/reusable-blocks': 4.14.0(@babel/runtime@7.21.5)(react-dom@18.2.0)(react@18.2.0) + '@wordpress/reusable-blocks': 4.14.0(@babel/runtime@7.22.6)(react-dom@18.2.0)(react@18.2.0) '@wordpress/rich-text': 6.14.0(react@18.2.0) '@wordpress/server-side-render': 4.14.0(react-dom@18.2.0)(react@18.2.0) '@wordpress/url': 3.38.0 @@ -10805,7 +10675,7 @@ packages: resolution: {integrity: sha512-OF674nkHY5DKgM8PAiVXRngO4EbBXsL4UEhoTupyuTVvhyR2rIeGa7kUILxmCoRWxI1Es9JC52irOgYgm/MG+w==} engines: {node: '>=12'} dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 /@wordpress/blocks@12.14.0(react@18.2.0): resolution: {integrity: sha512-76czLTTDaG5zjHOM9l+6JPrizGhY3XdeHZwfcXlnCo0lnvxgyHC6FoXAkk6l4h2foWeKgbzWy4Lq76i78+CD0A==} @@ -10813,7 +10683,7 @@ packages: peerDependencies: react: ^18.0.0 dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 '@wordpress/autop': 3.37.0 '@wordpress/blob': 3.37.0 '@wordpress/block-serialization-default-parser': 4.37.0 @@ -10852,7 +10722,7 @@ packages: peerDependencies: react: ^18.0.0 dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 '@wordpress/components': 25.3.0(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) '@wordpress/data': 9.7.0(react@18.2.0) '@wordpress/element': 5.14.0 @@ -10880,7 +10750,7 @@ packages: peerDependencies: react: ^18.0.0 dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 '@wordpress/components': 25.3.0(react-dom@18.2.0)(react@18.2.0) '@wordpress/data': 9.7.0(react@18.2.0) '@wordpress/element': 5.14.0 @@ -10910,7 +10780,7 @@ packages: react-dom: ^18.0.0 dependencies: '@ariakit/react': 0.2.12(react-dom@18.2.0)(react@18.2.0) - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 '@emotion/cache': 11.11.0 '@emotion/css': 11.11.2 '@emotion/react': 11.11.1(@types/react@18.2.14)(react@18.2.0) @@ -10978,7 +10848,7 @@ packages: react-dom: ^18.0.0 dependencies: '@ariakit/react': 0.2.12(react-dom@18.2.0)(react@18.2.0) - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 '@emotion/cache': 11.11.0 '@emotion/css': 11.11.2 '@emotion/react': 11.11.1(@types/react@18.2.14)(react@18.2.0) @@ -11045,7 +10915,7 @@ packages: react-dom: ^18.0.0 dependencies: '@ariakit/react': 0.2.12(react-dom@18.2.0)(react@18.2.0) - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 '@emotion/cache': 11.11.0 '@emotion/css': 11.11.2 '@emotion/react': 11.11.1(react@18.2.0) @@ -11110,7 +10980,7 @@ packages: peerDependencies: react: ^18.0.0 dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 '@types/mousetrap': 1.6.11 '@wordpress/deprecated': 3.37.0 '@wordpress/dom': 3.37.0 @@ -11130,7 +11000,7 @@ packages: peerDependencies: react: ^18.0.0 dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 '@wordpress/commands': 0.8.0(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) '@wordpress/core-data': 6.14.0(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) '@wordpress/data': 9.7.0(react@18.2.0) @@ -11158,7 +11028,7 @@ packages: peerDependencies: react: ^18.0.0 dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 '@wordpress/commands': 0.8.0(react-dom@18.2.0)(react@18.2.0) '@wordpress/core-data': 6.14.0(react-dom@18.2.0)(react@18.2.0) '@wordpress/data': 9.7.0(react@18.2.0) @@ -11186,7 +11056,7 @@ packages: peerDependencies: react: ^18.0.0 dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 '@wordpress/api-fetch': 6.34.0 '@wordpress/block-editor': 12.5.0(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) '@wordpress/blocks': 12.14.0(react@18.2.0) @@ -11223,7 +11093,7 @@ packages: peerDependencies: react: ^18.0.0 dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 '@wordpress/api-fetch': 6.34.0 '@wordpress/block-editor': 12.5.0(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) '@wordpress/blocks': 12.14.0(react@18.2.0) @@ -11259,7 +11129,7 @@ packages: peerDependencies: react: ^18.0.0 dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 '@wordpress/api-fetch': 6.34.0 '@wordpress/block-editor': 12.5.0(react-dom@18.2.0)(react@18.2.0) '@wordpress/blocks': 12.14.0(react@18.2.0) @@ -11295,7 +11165,7 @@ packages: peerDependencies: react: ^18.0.0 dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 '@wordpress/compose': 6.14.0(react@18.2.0) '@wordpress/deprecated': 3.37.0 '@wordpress/element': 5.14.0 @@ -11319,7 +11189,7 @@ packages: peerDependencies: react: ^18.0.0 dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 '@wordpress/compose': 6.14.0(react@18.2.0) '@wordpress/deprecated': 3.37.0 '@wordpress/element': 5.14.0 @@ -11340,7 +11210,7 @@ packages: resolution: {integrity: sha512-7h5BQJboI6Tedm/ZJebh9b/+1QgJUV8OHbehVW5Xx8K1RFHCMScP5BmxxgBpl17HcohRHqljkYfVH2ePCbsThg==} engines: {node: '>=12'} dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 '@wordpress/deprecated': 3.37.0 moment: 2.29.4 moment-timezone: 0.5.43 @@ -11359,20 +11229,20 @@ packages: resolution: {integrity: sha512-lj5InuhaJGgg5jdceVL/8Raj0it4xdOO/TwlgbcJXhHFSIarUKqrg3JWA7Y427ibzJpq5ytGUYcSSbgVza7UlQ==} engines: {node: '>=12'} dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 '@wordpress/hooks': 3.37.0 /@wordpress/dom-ready@3.37.0: resolution: {integrity: sha512-qA28n37BaSYIYLmfyiZAObKOfneUbkRXRpiZkcD8TQQNOa6e7utl9A1C3uS19jeR5Od3kANtjSYJpKshabnstg==} engines: {node: '>=12'} dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 /@wordpress/dom@3.37.0: resolution: {integrity: sha512-KFPAzQYvKbF8J+RQmsdTE2h6iKsHD73eZvNN0dEs3FvUJtWATo3GwGrSYH1SeHd72xfHZR4d/Uw/aUcwlph2vA==} engines: {node: '>=12'} dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 '@wordpress/deprecated': 3.37.0 /@wordpress/edit-post@7.14.0(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0): @@ -11382,7 +11252,7 @@ packages: react: ^18.0.0 react-dom: ^18.0.0 dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 '@wordpress/a11y': 3.37.0 '@wordpress/api-fetch': 6.34.0 '@wordpress/block-editor': 12.5.0(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) @@ -11435,7 +11305,7 @@ packages: react: ^18.0.0 react-dom: ^18.0.0 dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 '@wordpress/a11y': 3.37.0 '@wordpress/api-fetch': 6.34.0 '@wordpress/block-editor': 12.5.0(react-dom@18.2.0)(react@18.2.0) @@ -11488,7 +11358,7 @@ packages: react: ^18.0.0 react-dom: ^18.0.0 dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 '@wordpress/a11y': 3.37.0 '@wordpress/api-fetch': 6.34.0 '@wordpress/blob': 3.37.0 @@ -11512,7 +11382,7 @@ packages: '@wordpress/notices': 4.5.0(react@18.2.0) '@wordpress/preferences': 3.14.0(@types/react-dom@18.2.6)(@types/react@18.2.14)(@wordpress/element@5.14.0)(react-dom@18.2.0)(react@18.2.0) '@wordpress/private-apis': 0.19.0 - '@wordpress/reusable-blocks': 4.14.0(@babel/runtime@7.21.5)(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) + '@wordpress/reusable-blocks': 4.14.0(@babel/runtime@7.22.6)(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) '@wordpress/rich-text': 6.14.0(react@18.2.0) '@wordpress/server-side-render': 4.14.0(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) '@wordpress/url': 3.38.0 @@ -11542,7 +11412,7 @@ packages: react: ^18.0.0 react-dom: ^18.0.0 dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 '@wordpress/a11y': 3.37.0 '@wordpress/api-fetch': 6.34.0 '@wordpress/blob': 3.37.0 @@ -11566,7 +11436,7 @@ packages: '@wordpress/notices': 4.5.0(react@18.2.0) '@wordpress/preferences': 3.14.0(@types/react@18.2.14)(@wordpress/element@5.14.0)(react-dom@18.2.0)(react@18.2.0) '@wordpress/private-apis': 0.19.0 - '@wordpress/reusable-blocks': 4.14.0(@babel/runtime@7.21.5)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) + '@wordpress/reusable-blocks': 4.14.0(@babel/runtime@7.22.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) '@wordpress/rich-text': 6.14.0(react@18.2.0) '@wordpress/server-side-render': 4.14.0(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) '@wordpress/url': 3.38.0 @@ -11595,7 +11465,7 @@ packages: react: ^18.0.0 react-dom: ^18.0.0 dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 '@wordpress/a11y': 3.37.0 '@wordpress/api-fetch': 6.34.0 '@wordpress/blob': 3.37.0 @@ -11619,7 +11489,7 @@ packages: '@wordpress/notices': 4.5.0(react@18.2.0) '@wordpress/preferences': 3.14.0(@wordpress/element@5.14.0)(react-dom@18.2.0)(react@18.2.0) '@wordpress/private-apis': 0.19.0 - '@wordpress/reusable-blocks': 4.14.0(@babel/runtime@7.21.5)(react-dom@18.2.0)(react@18.2.0) + '@wordpress/reusable-blocks': 4.14.0(@babel/runtime@7.22.6)(react-dom@18.2.0)(react@18.2.0) '@wordpress/rich-text': 6.14.0(react@18.2.0) '@wordpress/server-side-render': 4.14.0(react-dom@18.2.0)(react@18.2.0) '@wordpress/url': 3.38.0 @@ -11646,7 +11516,7 @@ packages: resolution: {integrity: sha512-W2lBumRvJ3UvB1qZaWAp268xvirZEzFwyS/epLUPIPOnIW4u7UBfEmEbhPx55KSuTFHSR/hbiYSuWBdbVpd8tA==} engines: {node: '>=12'} dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 '@types/react': 18.2.14 '@types/react-dom': 18.2.6 '@wordpress/escape-html': 2.37.0 @@ -11659,9 +11529,9 @@ packages: resolution: {integrity: sha512-YJZAsZIWLx+RMs2TyxqqR1w7oXbedE/zrtBJh5/Gbt0UIP64/gQOgoRaEX3EhPOFd7lGWzWr/vH0tgLVGm2jJg==} engines: {node: '>=12'} dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 - /@wordpress/eslint-plugin@14.10.0(@babel/core@7.21.5)(@typescript-eslint/eslint-plugin@5.62.0)(eslint-plugin-import@2.27.5)(eslint-plugin-jest@27.2.2)(eslint-plugin-jsdoc@39.9.1)(eslint-plugin-jsx-a11y@6.7.1)(eslint-plugin-prettier@4.2.1)(eslint-plugin-react-hooks@4.6.0)(eslint-plugin-react@7.32.2)(eslint@8.44.0)(typescript@5.0.4)(wp-prettier@2.8.5): + /@wordpress/eslint-plugin@14.10.0(@babel/core@7.22.9)(@typescript-eslint/eslint-plugin@5.62.0)(eslint-plugin-import@2.27.5)(eslint-plugin-jest@27.2.2)(eslint-plugin-jsdoc@39.9.1)(eslint-plugin-jsx-a11y@6.7.1)(eslint-plugin-prettier@4.2.1)(eslint-plugin-react-hooks@4.6.0)(eslint-plugin-react@7.32.2)(eslint@8.44.0)(typescript@5.0.4)(wp-prettier@2.8.5): resolution: {integrity: sha512-Z+VYxrYJrORcsEmQeoN39Nf0CwqUbUj4kZ5z6zwI6bw1UTOf4hd9oDqeK2D6N8aHBVOIvGi2p7Dyameu7bbsZg==} engines: {node: '>=14', npm: '>=6.14.4'} peerDependencies: @@ -11683,8 +11553,8 @@ packages: typescript: optional: true dependencies: - '@babel/core': 7.21.5 - '@babel/eslint-parser': 7.21.3(@babel/core@7.21.5)(eslint@8.44.0) + '@babel/core': 7.22.9 + '@babel/eslint-parser': 7.22.9(@babel/core@7.22.9)(eslint@8.44.0) '@typescript-eslint/eslint-plugin': 5.62.0(@typescript-eslint/parser@5.62.0)(eslint@8.44.0)(typescript@5.0.4) '@typescript-eslint/parser': 5.62.0(eslint@8.44.0)(typescript@5.0.4) '@wordpress/babel-preset-default': 7.21.0 @@ -11714,7 +11584,7 @@ packages: react: ^18.0.0 react-dom: ^18.0.0 dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 '@wordpress/a11y': 3.37.0 '@wordpress/block-editor': 12.5.0(react-dom@18.2.0)(react@18.2.0) '@wordpress/components': 25.3.0(react-dom@18.2.0)(react@18.2.0) @@ -11742,20 +11612,20 @@ packages: resolution: {integrity: sha512-rJ1hJjXCSD/jOXoaKug75N9PCcg65diexSsyxzVHJCjT2je9J5hVJbHiyB+JfvvGCK5H6qii9M9rKKvESZwXqw==} engines: {node: '>=12'} dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 /@wordpress/html-entities@3.37.0: resolution: {integrity: sha512-nou3D4+dDGrvD9whY0kdQr8gW7EFmD2HG1QudPXN3zJYDvW+LIR9TXlJhXghZ0550AjlmYCszY4xjPB2ZpaOsg==} engines: {node: '>=12'} dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 /@wordpress/i18n@4.37.0: resolution: {integrity: sha512-bjq3C9DXAay4jEe1+Brl5Jt5hymf6LZfI8XuHYMw5ejFiQUUf3J/8DZZUpC+8xNOP8FAvO6W8BWOJISBJS+Ylw==} engines: {node: '>=12'} hasBin: true dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 '@wordpress/hooks': 3.37.0 gettext-parser: 1.4.0 memize: 2.1.0 @@ -11766,7 +11636,7 @@ packages: resolution: {integrity: sha512-tmC1rYdcQEAuW2uLNi2JFgEsmzZR+/xZlWzYPcuqU3+t9tGsDhwzCUjgUErLNtTSH4TGV/3+Ti/mULVIAlealg==} engines: {node: '>=12'} dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 '@wordpress/element': 5.14.0 '@wordpress/primitives': 3.35.0 @@ -11787,7 +11657,7 @@ packages: react: ^18.0.0 react-dom: ^18.0.0 dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 '@wordpress/a11y': 3.37.0 '@wordpress/components': 25.3.0(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) '@wordpress/compose': 6.14.0(react@18.2.0) @@ -11819,7 +11689,7 @@ packages: react: ^18.0.0 react-dom: ^18.0.0 dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 '@wordpress/a11y': 3.37.0 '@wordpress/components': 25.3.0(react-dom@18.2.0)(react@18.2.0) '@wordpress/compose': 6.14.0(react@18.2.0) @@ -11848,7 +11718,7 @@ packages: resolution: {integrity: sha512-DRZYvrGiA0VatKMkUWyqz+ihS+Nf6rl5QaPlpOywpoe2Zmk3Ca3QnNQuVsjFc7VxnV9NtDImCIVRK+9NpcqAeA==} engines: {node: '>=12'} dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 /@wordpress/jest-console@7.8.0(jest@29.4.3): resolution: {integrity: sha512-4yFxec0SXLmkZL+Y8TlhWwHzN+ux3d5PvCNrTMNcjpbOZkmBDFM165wXkcJsDbWT0BS6M7pJ0+BTnu8PTn7F3A==} @@ -11856,7 +11726,7 @@ packages: peerDependencies: jest: '>=29' dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 jest: 29.4.3 jest-matcher-utils: 29.6.1 dev: true @@ -11867,7 +11737,7 @@ packages: peerDependencies: react: ^18.0.0 dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 '@wordpress/data': 9.7.0(react@18.2.0) '@wordpress/element': 5.14.0 '@wordpress/keycodes': 3.37.0 @@ -11878,7 +11748,7 @@ packages: resolution: {integrity: sha512-cbxoygTVPysy8pkyPgcnHfu7G0qD2QnKFffeVj/X2PCXA8KAAORrnErtpm+ULUagYjjfNb1J5ttj/cUf1Bgzvg==} engines: {node: '>=12'} dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 '@wordpress/i18n': 4.37.0 change-case: 4.1.2 @@ -11886,7 +11756,7 @@ packages: resolution: {integrity: sha512-tbzWXcd5RGLaDlqKvfXCEwIeCw6WS4ycCD743dhL8LNytpuwEU0RRb5l/tTJwe+/7dcUqsyPOo2T0ZWk4vCi9w==} engines: {node: '>=12'} dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 '@wordpress/api-fetch': 6.34.0 '@wordpress/blob': 3.37.0 '@wordpress/element': 5.14.0 @@ -11896,7 +11766,7 @@ packages: resolution: {integrity: sha512-xjKBCtT6w5rV+Ann8vvU+StiLzsoWIli8Udi/8LigTbcLOHEqyNy107jXuU2cQWZoqzKhRUbCypanjkXiblqUQ==} engines: {node: '>=12'} dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 '@wordpress/a11y': 3.37.0 '@wordpress/data': 9.7.0(react@18.2.0) transitivePeerDependencies: @@ -11908,7 +11778,7 @@ packages: peerDependencies: react: ^18.0.0 dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 '@wordpress/components': 25.3.0(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) '@wordpress/compose': 6.14.0(react@18.2.0) '@wordpress/element': 5.14.0 @@ -11934,7 +11804,7 @@ packages: peerDependencies: react: ^18.0.0 dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 '@wordpress/components': 25.3.0(react-dom@18.2.0)(react@18.2.0) '@wordpress/compose': 6.14.0(react@18.2.0) '@wordpress/element': 5.14.0 @@ -11973,7 +11843,7 @@ packages: react: ^18.0.0 react-dom: ^18.0.0 dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 '@wordpress/a11y': 3.37.0 '@wordpress/components': 25.3.0(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) '@wordpress/data': 9.7.0(react@18.2.0) @@ -12001,7 +11871,7 @@ packages: react: ^18.0.0 react-dom: ^18.0.0 dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 '@wordpress/a11y': 3.37.0 '@wordpress/components': 25.3.0(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) '@wordpress/data': 9.7.0(react@18.2.0) @@ -12028,7 +11898,7 @@ packages: react: ^18.0.0 react-dom: ^18.0.0 dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 '@wordpress/a11y': 3.37.0 '@wordpress/components': 25.3.0(react-dom@18.2.0)(react@18.2.0) '@wordpress/data': 9.7.0(react@18.2.0) @@ -12060,7 +11930,7 @@ packages: resolution: {integrity: sha512-WbUhppAukCOO4wKkYZDLXAsNnjcSKECQG7pK9TmJcGWzbJOjklf+7mV3mGKx70+U8ffVFRyYURJ0DsluXEZK8Q==} engines: {node: '>=12'} dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 '@wordpress/element': 5.14.0 classnames: 2.3.2 @@ -12068,21 +11938,21 @@ packages: resolution: {integrity: sha512-3aIAjFlgyASVrRxe36ep3vX3cahmdBEL7nFWsCQPrPudh3c0jAjITW+f5IQ1xmmwnFZfiUbggPxtS1f3FQOcXg==} engines: {node: '>=12'} dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 requestidlecallback: 0.3.0 /@wordpress/private-apis@0.11.0: resolution: {integrity: sha512-GpAZ34Ou9YkYi9fuJCb9oDIZhsLqj41stuHflxpTNih6vV/Qw7ApBkLZDhDCyWjOybnjtHQH1LWw3K3RCN4miw==} engines: {node: '>=12'} dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 dev: true /@wordpress/private-apis@0.19.0: resolution: {integrity: sha512-oObjdfSbvYrbicwLEBSrZQF6KOe9CUfWXJsZqqmkpbkOmGMb2NfdzHa1oJ0UcGwAHelBxHpmIt0C7jzUzUJ0sQ==} engines: {node: '>=12'} dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 /@wordpress/redux-routine@4.37.0(redux@4.2.1): resolution: {integrity: sha512-VS/MYhIGHs3/5eXG1wsFGWoSJNVKrlug0RZtUMox3UhkJShT0LkfOaaLNdwBdTGQwciZRT0TxsiQ7UerZJIHrg==} @@ -12090,13 +11960,13 @@ packages: peerDependencies: redux: '>=4' dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 is-plain-object: 5.0.0 is-promise: 4.0.0 redux: 4.2.1 rungen: 0.3.2 - /@wordpress/reusable-blocks@4.14.0(@babel/runtime@7.21.5)(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0): + /@wordpress/reusable-blocks@4.14.0(@babel/runtime@7.22.6)(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-MDb3VXu/AM6nw03PCYo18lhjEKkJQnXSpocHDDVzb/mPzqbE2w1WigIsn93WF7Ra1OM4ZyHS2NNC+W2fDy7UQA==} engines: {node: '>=12'} peerDependencies: @@ -12104,7 +11974,7 @@ packages: react: ^18.0.0 react-dom: ^18.0.0 dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 '@wordpress/block-editor': 12.5.0(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) '@wordpress/blocks': 12.14.0(react@18.2.0) '@wordpress/components': 25.3.0(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) @@ -12127,7 +11997,7 @@ packages: - vite dev: false - /@wordpress/reusable-blocks@4.14.0(@babel/runtime@7.21.5)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0): + /@wordpress/reusable-blocks@4.14.0(@babel/runtime@7.22.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-MDb3VXu/AM6nw03PCYo18lhjEKkJQnXSpocHDDVzb/mPzqbE2w1WigIsn93WF7Ra1OM4ZyHS2NNC+W2fDy7UQA==} engines: {node: '>=12'} peerDependencies: @@ -12135,7 +12005,7 @@ packages: react: ^18.0.0 react-dom: ^18.0.0 dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 '@wordpress/block-editor': 12.5.0(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) '@wordpress/blocks': 12.14.0(react@18.2.0) '@wordpress/components': 25.3.0(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) @@ -12157,7 +12027,7 @@ packages: - babel-plugin-macros - vite - /@wordpress/reusable-blocks@4.14.0(@babel/runtime@7.21.5)(react-dom@18.2.0)(react@18.2.0): + /@wordpress/reusable-blocks@4.14.0(@babel/runtime@7.22.6)(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-MDb3VXu/AM6nw03PCYo18lhjEKkJQnXSpocHDDVzb/mPzqbE2w1WigIsn93WF7Ra1OM4ZyHS2NNC+W2fDy7UQA==} engines: {node: '>=12'} peerDependencies: @@ -12165,7 +12035,7 @@ packages: react: ^18.0.0 react-dom: ^18.0.0 dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 '@wordpress/block-editor': 12.5.0(react-dom@18.2.0)(react@18.2.0) '@wordpress/blocks': 12.14.0(react@18.2.0) '@wordpress/components': 25.3.0(react-dom@18.2.0)(react@18.2.0) @@ -12193,7 +12063,7 @@ packages: peerDependencies: react: ^18.0.0 dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 '@wordpress/a11y': 3.37.0 '@wordpress/compose': 6.14.0(react@18.2.0) '@wordpress/data': 9.7.0(react@18.2.0) @@ -12212,7 +12082,7 @@ packages: peerDependencies: react: ^18.0.0 dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 '@wordpress/element': 5.14.0 '@wordpress/private-apis': 0.19.0 '@wordpress/url': 3.38.0 @@ -12227,7 +12097,7 @@ packages: react: ^18.0.0 react-dom: ^18.0.0 dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 '@wordpress/api-fetch': 6.34.0 '@wordpress/blocks': 12.14.0(react@18.2.0) '@wordpress/components': 25.3.0(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) @@ -12257,7 +12127,7 @@ packages: react: ^18.0.0 react-dom: ^18.0.0 dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 '@wordpress/api-fetch': 6.34.0 '@wordpress/blocks': 12.14.0(react@18.2.0) '@wordpress/components': 25.3.0(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) @@ -12286,7 +12156,7 @@ packages: react: ^18.0.0 react-dom: ^18.0.0 dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 '@wordpress/api-fetch': 6.34.0 '@wordpress/blocks': 12.14.0(react@18.2.0) '@wordpress/components': 25.3.0(react-dom@18.2.0)(react@18.2.0) @@ -12312,27 +12182,27 @@ packages: resolution: {integrity: sha512-ii2uuIycNC0L1IZDJ/NMklNPhVLQVHaSKrfL7L1e4sgvUznIGQFik/SOJuyIJ5w3Ob0E1cJ5O+FBL4ki9hiQMg==} engines: {node: '>=12'} dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 memize: 2.1.0 /@wordpress/style-engine@1.20.0: resolution: {integrity: sha512-c12rUvbQ1rV/mMwdLRkAePhabn8hWMGnIXgwuSubg2mlZwxLPXVP6vIP3qFGBgkVe2EWM5CYXA2tugnEFThO5A==} engines: {node: '>=12'} dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 change-case: 4.1.2 /@wordpress/token-list@2.37.0: resolution: {integrity: sha512-3TFJwVrctUsmA9hhqdLyug7FF7LhwsbpzKKiULvCTyJyH7wBaMc6OB3/gkKEq+B8jwHbH1laNdS5l0p9h2XVKQ==} engines: {node: '>=12'} dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 /@wordpress/url@3.38.0: resolution: {integrity: sha512-vWZMecRqmIvGOzVwFKoZkDHwPHaoOVrYAo7f+rmn8/fqKcjf7ube28wkIPVxq7F8W4E9YFOvDjcqzArVD1HG1A==} engines: {node: '>=12'} dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 remove-accents: 0.4.4 /@wordpress/viewport@5.14.0(@wordpress/element@5.14.0)(react@18.2.0): @@ -12342,7 +12212,7 @@ packages: '@wordpress/element': '*' react: ^18.0.0 dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 '@wordpress/compose': 6.14.0(react@18.2.0) '@wordpress/data': 9.7.0(react@18.2.0) '@wordpress/element': 5.14.0 @@ -12358,7 +12228,7 @@ packages: react: ^18.0.0 react-dom: ^18.0.0 dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 '@wordpress/api-fetch': 6.34.0 '@wordpress/block-editor': 12.5.0(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) '@wordpress/blocks': 12.14.0(react@18.2.0) @@ -12389,7 +12259,7 @@ packages: react: ^18.0.0 react-dom: ^18.0.0 dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 '@wordpress/api-fetch': 6.34.0 '@wordpress/block-editor': 12.5.0(react-dom@18.2.0)(react@18.2.0) '@wordpress/blocks': 12.14.0(react@18.2.0) @@ -12418,7 +12288,7 @@ packages: resolution: {integrity: sha512-bdqDIlplXvxSFlvoFm8KM2b99DtezS7R15+RbjFrt+zb2CsjP5xmtDMZs0wN6jDVp4ys4QEMgsBz4B5xJdmTzQ==} engines: {node: '>=12'} dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 /@xtuc/ieee754@1.2.0: resolution: {integrity: sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==} @@ -12585,12 +12455,6 @@ packages: resolution: {integrity: sha512-OwIuC4yZaRogHKiuU5WlMR5Xk/jAcpPtawWL05Gj8Lvm2F6mwoJt4O/bHI+DHwG79vWd+8OFYM4/BzYqyRd3qw==} dev: true - /ansi-align@3.0.1: - resolution: {integrity: sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w==} - dependencies: - string-width: 4.2.3 - dev: true - /ansi-colors@4.1.3: resolution: {integrity: sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==} engines: {node: '>=6'} @@ -12898,25 +12762,25 @@ packages: dequal: 2.0.3 dev: true - /babel-core@7.0.0-bridge.0(@babel/core@7.21.5): + /babel-core@7.0.0-bridge.0(@babel/core@7.22.9): resolution: {integrity: sha512-poPX9mZH/5CSanm50Q+1toVci6pv5KSRv/5TWCwtzQS5XEwn40BcCrgIeMFWP9CKKIniKXNxoIOnOq4VVlGXhg==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.21.5 + '@babel/core': 7.22.9 dev: true - /babel-jest@29.3.1(@babel/core@7.21.5): + /babel-jest@29.3.1(@babel/core@7.22.9): resolution: {integrity: sha512-aard+xnMoxgjwV70t0L6wkW/3HQQtV+O0PEimxKgzNqCJnbYmroPojdP2tqKSOAt8QAKV/uSZU8851M7B5+fcA==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} peerDependencies: '@babel/core': ^7.8.0 dependencies: - '@babel/core': 7.21.5 + '@babel/core': 7.22.9 '@jest/transform': 29.6.1 '@types/babel__core': 7.20.1 babel-plugin-istanbul: 6.1.1 - babel-preset-jest: 29.5.0(@babel/core@7.21.5) + babel-preset-jest: 29.5.0(@babel/core@7.22.9) chalk: 4.1.2 graceful-fs: 4.2.11 slash: 3.0.0 @@ -12924,17 +12788,17 @@ packages: - supports-color dev: true - /babel-jest@29.4.3(@babel/core@7.21.5): + /babel-jest@29.4.3(@babel/core@7.22.9): resolution: {integrity: sha512-o45Wyn32svZE+LnMVWv/Z4x0SwtLbh4FyGcYtR20kIWd+rdrDZ9Fzq8Ml3MYLD+mZvEdzCjZsCnYZ2jpJyQ+Nw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} peerDependencies: '@babel/core': ^7.8.0 dependencies: - '@babel/core': 7.21.5 + '@babel/core': 7.22.9 '@jest/transform': 29.6.1 '@types/babel__core': 7.20.1 babel-plugin-istanbul: 6.1.1 - babel-preset-jest: 29.5.0(@babel/core@7.21.5) + babel-preset-jest: 29.5.0(@babel/core@7.22.9) chalk: 4.1.2 graceful-fs: 4.2.11 slash: 3.0.0 @@ -12942,17 +12806,17 @@ packages: - supports-color dev: true - /babel-jest@29.6.1(@babel/core@7.21.5): + /babel-jest@29.6.1(@babel/core@7.22.9): resolution: {integrity: sha512-qu+3bdPEQC6KZSPz+4Fyjbga5OODNcp49j6GKzG1EKbkfyJBxEYGVUmVGpwCSeGouG52R4EgYMLb6p9YeEEQ4A==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} peerDependencies: '@babel/core': ^7.8.0 dependencies: - '@babel/core': 7.21.5 + '@babel/core': 7.22.9 '@jest/transform': 29.6.1 '@types/babel__core': 7.20.1 babel-plugin-istanbul: 6.1.1 - babel-preset-jest: 29.5.0(@babel/core@7.21.5) + babel-preset-jest: 29.5.0(@babel/core@7.22.9) chalk: 4.1.2 graceful-fs: 4.2.11 slash: 3.0.0 @@ -12960,14 +12824,14 @@ packages: - supports-color dev: true - /babel-loader@9.1.2(@babel/core@7.21.5)(webpack@5.76.0): + /babel-loader@9.1.2(@babel/core@7.22.9)(webpack@5.76.0): resolution: {integrity: sha512-mN14niXW43tddohGl8HPu5yfQq70iUThvFL/4QzESA7GcZoC0eVOhvWdQ8+3UlSjaDE9MVtsW9mxDY07W7VpVA==} engines: {node: '>= 14.15.0'} peerDependencies: '@babel/core': ^7.12.0 webpack: '>=5' dependencies: - '@babel/core': 7.21.5 + '@babel/core': 7.22.9 find-cache-dir: 3.3.2 schema-utils: 4.2.0 webpack: 5.76.0(webpack-cli@4.9.1) @@ -13005,19 +12869,11 @@ packages: '@types/babel__traverse': 7.20.1 dev: true - /babel-plugin-macros@2.8.0: - resolution: {integrity: sha512-SEP5kJpfGYqYKpBrj5XU3ahw5p5GOHJ0U5ssOSQ/WBVdwkD2Dzlce95exQTs3jOVWPPKLBN2rlEWkCK7dSmLvg==} - dependencies: - '@babel/runtime': 7.21.5 - cosmiconfig: 6.0.0 - resolve: 1.22.2 - dev: true - /babel-plugin-macros@3.1.0: resolution: {integrity: sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==} engines: {node: '>=10', npm: '>=6'} dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 cosmiconfig: 7.1.0 resolve: 1.22.2 @@ -13025,36 +12881,36 @@ packages: resolution: {integrity: sha512-OgOYHOLoRK+/mvXU9imKHlG6GkPLYrUCvFXG/CM93R/aNNO8pOOF4aS+S8CCHMDQoNSeiOYEZb/G6RwL95Jktw==} dev: true - /babel-plugin-polyfill-corejs2@0.3.3(@babel/core@7.21.5): - resolution: {integrity: sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q==} + /babel-plugin-polyfill-corejs2@0.4.4(@babel/core@7.22.9): + resolution: {integrity: sha512-9WeK9snM1BfxB38goUEv2FLnA6ja07UMfazFHzCXUb3NyDZAwfXvQiURQ6guTTMeHcOsdknULm1PDhs4uWtKyA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/compat-data': 7.21.7 - '@babel/core': 7.21.5 - '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.21.5) - semver: 6.3.0 + '@babel/compat-data': 7.22.9 + '@babel/core': 7.22.9 + '@babel/helper-define-polyfill-provider': 0.4.1(@babel/core@7.22.9) + '@nicolo-ribaudo/semver-v6': 6.3.3 transitivePeerDependencies: - supports-color - /babel-plugin-polyfill-corejs3@0.6.0(@babel/core@7.21.5): - resolution: {integrity: sha512-+eHqR6OPcBhJOGgsIar7xoAB1GcSwVUA3XjAd7HJNzOXT4wv6/H7KIdA/Nc60cvUlDbKApmqNvD1B1bzOt4nyA==} + /babel-plugin-polyfill-corejs3@0.8.2(@babel/core@7.22.9): + resolution: {integrity: sha512-Cid+Jv1BrY9ReW9lIfNlNpsI53N+FN7gE+f73zLAUbr9C52W4gKLWSByx47pfDJsEysojKArqOtOKZSVIIUTuQ==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.21.5 - '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.21.5) + '@babel/core': 7.22.9 + '@babel/helper-define-polyfill-provider': 0.4.1(@babel/core@7.22.9) core-js-compat: 3.31.1 transitivePeerDependencies: - supports-color - /babel-plugin-polyfill-regenerator@0.4.1(@babel/core@7.21.5): - resolution: {integrity: sha512-NtQGmyQDXjQqQ+IzRkBVwEOz9lQ4zxAQZgoAYEtU9dJjnl1Oc98qnN7jcp+bE7O7aYzVpavXE3/VKXNzUbh7aw==} + /babel-plugin-polyfill-regenerator@0.5.1(@babel/core@7.22.9): + resolution: {integrity: sha512-L8OyySuI6OSQ5hFy9O+7zFjyr4WhAfRjLIOkhQGYl+emwJkd/S4XXT1JpfrgR1jrQ1NcGiOh+yAdGlF8pnC3Jw==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.21.5 - '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.21.5) + '@babel/core': 7.22.9 + '@babel/helper-define-polyfill-provider': 0.4.1(@babel/core@7.22.9) transitivePeerDependencies: - supports-color @@ -13068,13 +12924,13 @@ packages: - supports-color dev: true - /babel-plugin-tester@11.0.4(@babel/core@7.21.5): + /babel-plugin-tester@11.0.4(@babel/core@7.22.9): resolution: {integrity: sha512-cqswtpSPo0e++rZB0l/54EG17LL25l9gLgh59yXfnmNxX+2lZTIOpx2zt4YI9QIClVXc8xf63J6yWwKkzy0jNg==} engines: {node: ^14.20.0 || ^16.16.0 || >=18.5.0} peerDependencies: '@babel/core': '>=7.11.6' dependencies: - '@babel/core': 7.21.5 + '@babel/core': 7.22.9 core-js: 3.31.1 debug: 4.3.4 lodash.mergewith: 4.6.2 @@ -13084,35 +12940,35 @@ packages: - supports-color dev: true - /babel-preset-current-node-syntax@1.0.1(@babel/core@7.21.5): + /babel-preset-current-node-syntax@1.0.1(@babel/core@7.22.9): resolution: {integrity: sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.21.5 - '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.21.5) - '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.21.5) - '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.21.5) - '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.21.5) - '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.21.5) - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.21.5) - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.21.5) - '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.21.5) - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.21.5) - '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.21.5) - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.21.5) - '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.21.5) - dev: true - - /babel-preset-jest@29.5.0(@babel/core@7.21.5): + '@babel/core': 7.22.9 + '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.22.9) + '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.22.9) + '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.22.9) + '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.22.9) + '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.22.9) + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.22.9) + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.22.9) + '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.22.9) + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.22.9) + '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.22.9) + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.22.9) + '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.22.9) + dev: true + + /babel-preset-jest@29.5.0(@babel/core@7.22.9): resolution: {integrity: sha512-JOMloxOqdiBSxMAzjRaH023/vvcaSaec49zvg+2LmNsktC7ei39LTJGw02J+9uUtTZUq6xbLyJ4dxe9sSmIuAg==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.21.5 + '@babel/core': 7.22.9 babel-plugin-jest-hoist: 29.5.0 - babel-preset-current-node-syntax: 1.0.1(@babel/core@7.21.5) + babel-preset-current-node-syntax: 1.0.1(@babel/core@7.22.9) dev: true /bail@2.0.2: @@ -13198,20 +13054,6 @@ packages: get-document: 1.0.0 dev: false - /boxen@5.1.2: - resolution: {integrity: sha512-9gYgQKXx+1nP8mP7CzFyaUARhg7D3n1dF/FnErWmu9l6JvGpNUN278h0aSb+QjoiKSWG+iZ3uHrcqk0qrY9RQQ==} - engines: {node: '>=10'} - dependencies: - ansi-align: 3.0.1 - camelcase: 6.3.0 - chalk: 4.1.2 - cli-boxes: 2.2.1 - string-width: 4.2.3 - type-fest: 0.20.2 - widest-line: 3.1.0 - wrap-ansi: 7.0.0 - dev: true - /bplist-parser@0.2.0: resolution: {integrity: sha512-z0M+byMThzQmD9NILRniCUXYsYpjwnlO8N5uCFaCqIOpqRsJCrQL9NK3JsD67CN5a08nF5oIL2bD6loTdHOuKw==} engines: {node: '>= 5.10.0'} @@ -13527,10 +13369,6 @@ packages: resolution: {integrity: sha512-eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw==} engines: {node: '>=8'} - /ci-job-number@1.2.2: - resolution: {integrity: sha512-CLOGsVDrVamzv8sXJGaILUVI6dsuAkouJP/n6t+OxLPeeA4DDby7zn9SB6EUpa1H7oIKoE+rMmkW80zYsFfUjA==} - dev: true - /cjs-module-lexer@1.2.3: resolution: {integrity: sha512-0TNiGstbQmCFwt4akjjBg5pLRTSyj/PkWQ1ZoO2zntmg9yLqSRxwEa4iCfQLGjqhiqBfOJa7W/E8wfGrTDmlZQ==} dev: true @@ -13549,11 +13387,6 @@ packages: engines: {node: '>=6'} dev: true - /cli-boxes@2.2.1: - resolution: {integrity: sha512-y4coMcylgSCdVinjiDBuR8PCC2bLjyGTwEmPb9NHR/QaNU6EUOXcTY/s6VjGMD6ENSEaeQYHCY0GNGS5jfMwPw==} - engines: {node: '>=6'} - dev: true - /cli-cursor@2.1.0: resolution: {integrity: sha512-8lgKz8LmCRYZZQDpRyT2m5rKJ08TnU4tR9FFFW2rxpxR1FzWi4PQ/NfyODchAatHaUgnSPVcx/R5w6NuTBzFiw==} engines: {node: '>=4'} @@ -13567,6 +13400,11 @@ packages: dependencies: restore-cursor: 3.1.0 + /cli-spinners@2.9.0: + resolution: {integrity: sha512-4/aL9X3Wh0yiMQlE+eeRhWP6vclO3QRtw1JHKIT0FFUs5FjpFmESqtMvYZ0+lbzBw900b95mS0hohy+qn2VK/g==} + engines: {node: '>=6'} + dev: true + /cli-table3@0.6.3: resolution: {integrity: sha512-w5Jac5SykAeZJKntOxJCrm63Eg5/4dhMWIcuTbo9rpE+brgaSZo0RuNJZeOyMgsUdhDeojvgyQLmjI+K50ZGyg==} engines: {node: 10.* || >= 12.*} @@ -13641,6 +13479,11 @@ packages: kind-of: 6.0.3 shallow-clone: 3.0.1 + /clone@1.0.4: + resolution: {integrity: sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==} + engines: {node: '>=0.8'} + dev: true + /cmdk@0.2.0(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-JQpKvEOb86SnvMZbYaFKYhvzFntWBeSZdyii0rZPhKJj9uwJBxu4DaVYDrRN7r3mPop56oPhRw+JYWTKs66TYw==} peerDependencies: @@ -13973,17 +13816,6 @@ packages: resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==} dev: true - /cosmiconfig@6.0.0: - resolution: {integrity: sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==} - engines: {node: '>=8'} - dependencies: - '@types/parse-json': 4.0.0 - import-fresh: 3.3.0 - parse-json: 5.2.0 - path-type: 4.0.0 - yaml: 1.10.2 - dev: true - /cosmiconfig@7.1.0: resolution: {integrity: sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==} engines: {node: '>=10'} @@ -14268,7 +14100,7 @@ packages: resolution: {integrity: sha512-fnULvOpxnC5/Vg3NCiWelDsLiUc9bRwAPs/+LfTLNvetFCtCTN+yQz15C/fs4AwX1R9K5GLtLfn8QW+dWisaAw==} engines: {node: '>=0.11'} dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 /dayjs@1.11.9: resolution: {integrity: sha512-QvzAURSbQ0pKdIye2txOzNaHmxtUBXerpY0FJsFXUMKbIZeFm5ht1LS/jFsrncjnmtv8HsG0W2g6c0zUjZWmpA==} @@ -14366,6 +14198,12 @@ packages: untildify: 4.0.0 dev: true + /defaults@1.0.4: + resolution: {integrity: sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==} + dependencies: + clone: 1.0.4 + dev: true + /define-lazy-prop@2.0.0: resolution: {integrity: sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==} engines: {node: '>=8'} @@ -14521,7 +14359,7 @@ packages: /dom-helpers@5.2.1: resolution: {integrity: sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==} dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 csstype: 3.1.2 dev: false @@ -14618,7 +14456,7 @@ packages: peerDependencies: react: '>=16.12.0' dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 compute-scroll-into-view: 1.0.20 prop-types: 15.8.1 react: 18.2.0 @@ -15047,7 +14885,7 @@ packages: minimatch: 3.1.2 object.values: 1.1.6 resolve: 1.22.2 - semver: 6.3.0 + semver: 6.3.1 tsconfig-paths: 3.14.2 transitivePeerDependencies: - eslint-import-resolver-typescript @@ -15067,7 +14905,7 @@ packages: peerDependencies: eslint: ^6.8.0 || ^7.0.0 || ^8.0.0 dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 '@testing-library/dom': 8.19.1 eslint: 8.44.0 requireindex: 1.2.0 @@ -15119,7 +14957,7 @@ packages: peerDependencies: eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 aria-query: 5.3.0 array-includes: 3.1.6 array.prototype.flatmap: 1.3.1 @@ -15135,7 +14973,7 @@ packages: minimatch: 3.1.2 object.entries: 1.1.6 object.fromentries: 2.0.6 - semver: 6.3.0 + semver: 6.3.1 dev: true /eslint-plugin-lodash@7.4.0(eslint@8.44.0): @@ -15207,7 +15045,7 @@ packages: object.values: 1.1.6 prop-types: 15.8.1 resolve: 2.0.0-next.4 - semver: 6.3.0 + semver: 6.3.1 string.prototype.matchall: 4.0.8 dev: true @@ -15234,7 +15072,7 @@ packages: - typescript dev: true - /eslint-plugin-wpcalypso@7.0.0(@babel/core@7.21.5)(eslint-plugin-inclusive-language@2.2.0)(eslint-plugin-jsdoc@39.9.1)(eslint-plugin-react-hooks@4.6.0)(eslint-plugin-react@7.32.2)(eslint@8.44.0): + /eslint-plugin-wpcalypso@7.0.0(@babel/core@7.22.9)(eslint-plugin-inclusive-language@2.2.0)(eslint-plugin-jsdoc@39.9.1)(eslint-plugin-react-hooks@4.6.0)(eslint-plugin-react@7.32.2)(eslint@8.44.0): resolution: {integrity: sha512-1vNMQiFh06IB8N+CP20/65bYEr+4dYq3LrZI+wWZp1OEM2o6G11ePA3tJ5otDgsLtYTiVeoG+JjhcWChNfCOBA==} engines: {node: '>=14'} peerDependencies: @@ -15250,7 +15088,7 @@ packages: eslint-plugin-react-hooks: optional: true dependencies: - '@babel/core': 7.21.5 + '@babel/core': 7.22.9 eslint: 8.44.0 eslint-plugin-inclusive-language: 2.2.0 eslint-plugin-jsdoc: 39.9.1(eslint@8.44.0) @@ -15689,10 +15527,9 @@ packages: flat-cache: 3.0.4 dev: true - /file-system-cache@2.4.2: - resolution: {integrity: sha512-33ALMyc8nFwrb7p5+Dl0rmYUY48hHoYvFQhH7zpr08DJ68xR41PONJaYQ5XRj61CFq/hvoj680Ej/P9hoOU4eQ==} + /file-system-cache@2.3.0: + resolution: {integrity: sha512-l4DMNdsIPsVnKrgEXbJwDJsA5mB8rGwHYERMgqQx/xAUtChPJMre1bXBzDEqqVbWv9AIbFezXMxeEkZDSrXUOQ==} dependencies: - '@types/ramda': 0.29.3 fs-extra: 11.1.1 ramda: 0.29.0 @@ -16425,7 +16262,7 @@ packages: /history@4.10.1: resolution: {integrity: sha512-36nwAD620w12kuzPAsyINPWJqlNbij+hpK1k9XRloDtym8mxzGYl2c17LnV6IAGB2Dmg4tEa7G7DlawS0+qjew==} dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 loose-envify: 1.4.0 resolve-pathname: 3.0.0 tiny-invariant: 1.3.1 @@ -16436,7 +16273,7 @@ packages: /history@5.3.0: resolution: {integrity: sha512-ZqaKwjjrAYUYfLG+htGaIIZ4nioX2L70ZUMIFysS3xvBsSG4x/n1V6TXV3N8ZYNuFGlDirFg32T7B6WOUPDYcQ==} dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 dev: false /hoist-non-react-statics@3.3.2: @@ -16895,6 +16732,11 @@ packages: resolution: {integrity: sha512-gyPJuv83bHMpocVYoqof5VDiZveEoGoFL8m3BXNb2VW8Xs+rz9kqO8LOQ5DH6EsuvilT1ApazU0pyl+ytbPtlw==} dev: true + /is-interactive@1.0.0: + resolution: {integrity: sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==} + engines: {node: '>=8'} + dev: true + /is-module@1.0.0: resolution: {integrity: sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g==} dev: true @@ -17042,6 +16884,11 @@ packages: resolution: {integrity: sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==} dev: false + /is-unicode-supported@0.1.0: + resolution: {integrity: sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==} + engines: {node: '>=10'} + dev: true + /is-weakref@1.0.2: resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==} dependencies: @@ -17087,11 +16934,11 @@ packages: resolution: {integrity: sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==} engines: {node: '>=8'} dependencies: - '@babel/core': 7.21.5 + '@babel/core': 7.22.9 '@babel/parser': 7.22.7 '@istanbuljs/schema': 0.1.3 istanbul-lib-coverage: 3.2.0 - semver: 6.3.0 + semver: 6.3.1 transitivePeerDependencies: - supports-color dev: true @@ -17211,10 +17058,10 @@ packages: ts-node: optional: true dependencies: - '@babel/core': 7.21.5 + '@babel/core': 7.22.9 '@jest/test-sequencer': 29.6.1 '@jest/types': 29.6.1 - babel-jest: 29.6.1(@babel/core@7.21.5) + babel-jest: 29.6.1(@babel/core@7.22.9) chalk: 4.1.2 ci-info: 3.8.0 deepmerge: 4.3.1 @@ -17249,11 +17096,11 @@ packages: ts-node: optional: true dependencies: - '@babel/core': 7.21.5 + '@babel/core': 7.22.9 '@jest/test-sequencer': 29.6.1 '@jest/types': 29.6.1 '@types/node': 20.4.1 - babel-jest: 29.6.1(@babel/core@7.21.5) + babel-jest: 29.6.1(@babel/core@7.22.9) chalk: 4.1.2 ci-info: 3.8.0 deepmerge: 4.3.1 @@ -17582,16 +17429,16 @@ packages: resolution: {integrity: sha512-G4UQE1QQ6OaCgfY+A0uR1W2AY0tGXUPQpoUClhWHq1Xdnx1H6JOrC2nH5lqnOEqaDgbHFgIwZ7bNq24HpB180A==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@babel/core': 7.21.5 - '@babel/generator': 7.22.7 - '@babel/plugin-syntax-jsx': 7.21.4(@babel/core@7.21.5) - '@babel/plugin-syntax-typescript': 7.22.5(@babel/core@7.21.5) + '@babel/core': 7.22.9 + '@babel/generator': 7.22.9 + '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.22.9) + '@babel/plugin-syntax-typescript': 7.22.5(@babel/core@7.22.9) '@babel/types': 7.22.5 '@jest/expect-utils': 29.6.1 '@jest/transform': 29.6.1 '@jest/types': 29.6.1 '@types/prettier': 2.7.3 - babel-preset-current-node-syntax: 1.0.1(@babel/core@7.21.5) + babel-preset-current-node-syntax: 1.0.1(@babel/core@7.22.9) chalk: 4.1.2 expect: 29.6.1 graceful-fs: 4.2.11 @@ -17755,23 +17602,23 @@ packages: dependencies: argparse: 2.0.1 - /jscodeshift@0.14.0(@babel/preset-env@7.21.5): + /jscodeshift@0.14.0(@babel/preset-env@7.22.9): resolution: {integrity: sha512-7eCC1knD7bLUPuSCwXsMZUH51O8jIcoVyKtI6P0XM0IVzlGjckPy3FIwQlorzbN0Sg79oK+RlohN32Mqf/lrYA==} hasBin: true peerDependencies: '@babel/preset-env': ^7.1.6 dependencies: - '@babel/core': 7.21.5 + '@babel/core': 7.22.9 '@babel/parser': 7.22.7 - '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.21.5) - '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.21.5) - '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.21.5) - '@babel/plugin-transform-modules-commonjs': 7.22.5(@babel/core@7.21.5) - '@babel/preset-env': 7.21.5(@babel/core@7.21.5) - '@babel/preset-flow': 7.22.5(@babel/core@7.21.5) - '@babel/preset-typescript': 7.21.5(@babel/core@7.21.5) - '@babel/register': 7.21.0(@babel/core@7.21.5) - babel-core: 7.0.0-bridge.0(@babel/core@7.21.5) + '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.22.9) + '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.22.9) + '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.22.9) + '@babel/plugin-transform-modules-commonjs': 7.22.5(@babel/core@7.22.9) + '@babel/preset-env': 7.22.9(@babel/core@7.22.9) + '@babel/preset-flow': 7.22.5(@babel/core@7.22.9) + '@babel/preset-typescript': 7.22.5(@babel/core@7.22.9) + '@babel/register': 7.22.5(@babel/core@7.22.9) + babel-core: 7.0.0-bridge.0(@babel/core@7.22.9) chalk: 4.1.2 flow-parser: 0.211.1 graceful-fs: 4.2.11 @@ -18208,6 +18055,14 @@ packages: chalk: 1.1.3 dev: false + /log-symbols@4.1.0: + resolution: {integrity: sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==} + engines: {node: '>=10'} + dependencies: + chalk: 4.1.2 + is-unicode-supported: 0.1.0 + dev: true + /log-update@2.3.0: resolution: {integrity: sha512-vlP11XfFGyeNQlmEn9tJ66rEW1coA/79m5z6BCkudjbAGE83uhAcGYrBFwfs3AdLiLzGRusRPAbSPK9xZteCmg==} engines: {node: '>=4'} @@ -18291,7 +18146,7 @@ packages: resolution: {integrity: sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==} engines: {node: '>=8'} dependencies: - semver: 6.3.0 + semver: 6.3.1 /make-error@1.3.6: resolution: {integrity: sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==} @@ -18942,8 +18797,8 @@ packages: engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} hasBin: true - /nanospinner@0.4.0: - resolution: {integrity: sha512-FhxiB9PcEztMw6XfQDSLJBMlmN4n7B2hl/oiK4Hy9479r1+df0i2099DgcEx+m6yBfBJVUuKpILvP8fM3rK3Sw==} + /nanospinner@1.1.0: + resolution: {integrity: sha512-yFvNYMig4AthKYfHFl1sLj7B2nkHL4lzdig4osvl9/LdGbXwrdFRoqBS98gsEsOakr0yH+r5NZ/1Y9gdVB8trA==} dependencies: picocolors: 1.0.0 dev: true @@ -19336,6 +19191,21 @@ packages: resolution: {integrity: sha512-k41FwbcLnlgnFh69f4qdUfvDQ+5vaSDnVPFI/y5XuhKRq97EnVVneO9F1ESVCdiVu4fCS2L8usX3mU331hB7pg==} dev: true + /ora@5.4.1: + resolution: {integrity: sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==} + engines: {node: '>=10'} + dependencies: + bl: 4.1.0 + chalk: 4.1.2 + cli-cursor: 3.1.0 + cli-spinners: 2.9.0 + is-interactive: 1.0.0 + is-unicode-supported: 0.1.0 + log-symbols: 4.1.0 + strip-ansi: 6.0.1 + wcwidth: 1.0.1 + dev: true + /os-tmpdir@1.0.2: resolution: {integrity: sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==} engines: {node: '>=0.10.0'} @@ -19592,7 +19462,7 @@ packages: /photon@4.0.0: resolution: {integrity: sha512-RD3buB17jW9B+OOPjIqv/cE9imCyR+WJ4ALWtb1Q1mVg8OfYnHAyvdVTxa/+bZFNI2FWaQBKry3i1mItmW3H3A==} dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 crc32: 0.2.2 debug: 4.3.4 seed-random: 2.2.0 @@ -19767,7 +19637,7 @@ packages: resolution: {integrity: sha512-Sz2Lkdxz6F2Pgnpi9U5Ng/WdWAUZxmHrNPoVlm3aAemxoy2Qy7LGjQg4uf8qKelDAUW94F4np3iH2YPf2qefcQ==} engines: {node: '>=10'} dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 /postcss-calc@9.0.1(postcss@8.4.21): resolution: {integrity: sha512-TipgjGyzP5QzEhsOZUaIkeO5mKeMFpebWzRogWG/ysonUlnHcq5aJe0jOjpfzUU8PeSaBQnrE8ehR0QA5vs8PQ==} @@ -20265,6 +20135,7 @@ packages: loose-envify: 1.4.0 object-assign: 4.1.1 react-is: 16.13.1 + dev: false /prop-types@15.8.1: resolution: {integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==} @@ -20498,7 +20369,7 @@ packages: dependencies: autosize: 4.0.4 line-height: 0.3.1 - prop-types: 15.7.2 + prop-types: 15.8.1 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) @@ -20524,9 +20395,9 @@ packages: engines: {node: '>=8.10.0'} hasBin: true dependencies: - '@babel/core': 7.21.5 - '@babel/generator': 7.22.7 - '@babel/runtime': 7.21.5 + '@babel/core': 7.22.9 + '@babel/generator': 7.22.9 + '@babel/runtime': 7.22.6 ast-types: 0.14.2 commander: 2.20.3 doctrine: 3.0.0 @@ -20633,7 +20504,7 @@ packages: react-native: optional: true dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 '@types/react-redux': 7.1.25 hoist-non-react-statics: 3.3.2 loose-envify: 1.4.0 @@ -20765,7 +20636,7 @@ packages: peerDependencies: react: '>=15' dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 history: 4.10.1 loose-envify: 1.4.0 prop-types: 15.8.1 @@ -20818,7 +20689,7 @@ packages: peerDependencies: react: '>=15' dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 history: 4.10.1 hoist-non-react-statics: 3.3.2 loose-envify: 1.4.0 @@ -20869,13 +20740,13 @@ packages: react-is: 18.2.0 dev: true - /react-slider@2.0.5(@babel/runtime@7.21.5)(react@18.2.0): + /react-slider@2.0.5(@babel/runtime@7.22.6)(react@18.2.0): resolution: {integrity: sha512-MU5gaK1yYCKnbDDN3CMiVcgkKZwMvdqK2xUEW7fFU37NAzRgS1FZbF9N7vP08E3XXNVhiuZnwVzUa3PYQAZIMg==} peerDependencies: '@babel/runtime': ^7 react: ^16 || ^17 || ^18 dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 prop-types: 15.8.1 react: 18.2.0 dev: false @@ -20916,7 +20787,7 @@ packages: peerDependencies: react: '>= 0.14.0' dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 highlight.js: 10.7.3 lowlight: 1.20.0 prismjs: 1.29.0 @@ -20941,7 +20812,7 @@ packages: react: '>=16.6.0' react-dom: '>=16.6.0' dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 dom-helpers: 5.2.1 loose-envify: 1.4.0 prop-types: 15.8.1 @@ -21128,13 +20999,13 @@ packages: /redux@4.1.1: resolution: {integrity: sha512-hZQZdDEM25UY2P493kPYuKqviVwZ58lEmGQNeQ+gXa+U0gYPUBf7NKYazbe3m+bs/DzM/ahN12DbF+NG8i0CWw==} dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 dev: false /redux@4.2.1: resolution: {integrity: sha512-LAUYz4lc+Do8/g7aeRa8JkyDErK6ekstQaqWQrNRW//MY1TvCEpMtpTWvlQ+FPbWCx+Xixu/6SHt5N0HR+SB4w==} dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 /refractor@3.6.0: resolution: {integrity: sha512-MY9W41IOWxxk31o+YvFCNyNzdkc9M20NoZK5vq6jkv4I/uh2zkWcfudj0Q1fovjUQJrNewS9NMzeTtqPf+n5EA==} @@ -21167,7 +21038,7 @@ packages: /regenerator-transform@0.15.1: resolution: {integrity: sha512-knzmNAcuyxV+gQCufkYcvOqX/qIIfHLv0u5x79kRxuGojfYVky1f15TzZEu2Avte8QGepvUNTnLskf8E6X6Vyg==} dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.6 /regexp.prototype.flags@1.5.0: resolution: {integrity: sha512-0SutC3pNudRKgquxGoRGIz946MZVHqbNfPjBdxeOhBrdgDKlRoXmYLQN9xRbrR09ZXWeGAdPuif7egofn6v5LA==} @@ -21799,6 +21670,11 @@ packages: /semver@6.3.0: resolution: {integrity: sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==} hasBin: true + dev: true + + /semver@6.3.1: + resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==} + hasBin: true /semver@7.0.0: resolution: {integrity: sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==} @@ -21811,20 +21687,20 @@ packages: hasBin: true dev: true - /semver@7.3.5: - resolution: {integrity: sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==} + /semver@7.5.2: + resolution: {integrity: sha512-SoftuTROv/cRjCze/scjGyiDtcUyxw1rgYQSZY7XTmtR5hX+dm76iDbTH8TkLPHCQmlbQVSSbNZCPM2hb0knnQ==} engines: {node: '>=10'} hasBin: true dependencies: lru-cache: 6.0.0 - dev: true - /semver@7.5.2: - resolution: {integrity: sha512-SoftuTROv/cRjCze/scjGyiDtcUyxw1rgYQSZY7XTmtR5hX+dm76iDbTH8TkLPHCQmlbQVSSbNZCPM2hb0knnQ==} + /semver@7.5.3: + resolution: {integrity: sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==} engines: {node: '>=10'} hasBin: true dependencies: lru-cache: 6.0.0 + dev: true /semver@7.5.4: resolution: {integrity: sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==} @@ -21971,17 +21847,16 @@ packages: resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==} dev: true - /size-limit@6.0.4: - resolution: {integrity: sha512-zo/9FrXzetvZGFJnd1LC4mR9GvirElALlerMY3EOwEGdW7Lwgl2WT0hTRC2559ZR2PGfRpnXEgAFkayGAJOebg==} - engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} + /size-limit@8.2.6: + resolution: {integrity: sha512-zpznim/tX/NegjoQuRKgWTF4XiB0cn2qt90uJzxYNTFAqexk4b94DOAkBD3TwhC6c3kw2r0KcnA5upziVMZqDg==} + engines: {node: ^14.0.0 || ^16.0.0 || >=18.0.0} hasBin: true dependencies: bytes-iec: 3.1.1 chokidar: 3.5.3 - ci-job-number: 1.2.2 globby: 11.1.0 lilconfig: 2.1.0 - nanospinner: 0.4.0 + nanospinner: 1.1.0 picocolors: 1.0.0 dev: true @@ -22171,7 +22046,7 @@ packages: /store2@2.14.2: resolution: {integrity: sha512-siT1RiqlfQnGqgT/YzXVUNsom9S0H1OX+dpdGN1xkyYATo4I6sep5NmsRD/40s3IIOvlCq6akxkqG82urIZW1w==} - /storybook-addon-mock@4.0.0(@storybook/addons@7.0.5)(@storybook/blocks@7.0.5)(@storybook/components@7.0.5)(@storybook/manager-api@7.0.5)(@storybook/theming@7.0.5)(react-dom@18.2.0)(react@18.2.0)(storybook@7.0.5): + /storybook-addon-mock@4.0.0(@storybook/addons@7.0.27)(@storybook/blocks@7.0.27)(@storybook/components@7.0.27)(@storybook/manager-api@7.0.27)(@storybook/theming@7.0.27)(react-dom@18.2.0)(react@18.2.0)(storybook@7.0.27): resolution: {integrity: sha512-3c01q9pYzkLjOajnnFLgya8HIHLVVQCaulasOeTniFaEAQeEngqxzc6sYWJx2AlISVsSktEonBGB7QVgmT9A9g==} peerDependencies: '@storybook/addons': ^7.0.0 @@ -22188,25 +22063,25 @@ packages: react-dom: optional: true dependencies: - '@storybook/addons': 7.0.5(react-dom@18.2.0)(react@18.2.0) - '@storybook/blocks': 7.0.5(react-dom@18.2.0)(react@18.2.0) - '@storybook/components': 7.0.5(react-dom@18.2.0)(react@18.2.0) - '@storybook/manager-api': 7.0.5(react-dom@18.2.0)(react@18.2.0) - '@storybook/theming': 7.0.5(react-dom@18.2.0)(react@18.2.0) + '@storybook/addons': 7.0.27(react-dom@18.2.0)(react@18.2.0) + '@storybook/blocks': 7.0.27(react-dom@18.2.0)(react@18.2.0) + '@storybook/components': 7.0.27(react-dom@18.2.0)(react@18.2.0) + '@storybook/manager-api': 7.0.27(react-dom@18.2.0)(react@18.2.0) + '@storybook/theming': 7.0.27(react-dom@18.2.0)(react@18.2.0) mock-xmlhttprequest: 8.2.0 path-to-regexp: 6.2.1 polished: 4.2.2 prop-types: 15.8.1 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - storybook: 7.0.5 + storybook: 7.0.27 dev: true - /storybook@7.0.5: - resolution: {integrity: sha512-wU8PpA2vgZe4Eu4ytilUdHIwl1J2sYlqVT4luGw+O/9dDbkVkB/3f73rAEMMwucWJmqG9HDausdZqEh+1BzJsw==} + /storybook@7.0.27: + resolution: {integrity: sha512-hp6lBETyC9uHFH0/RYU7v9Ga+e00VlaOA6/hKOFCoO1AH4/3J5/+Ey/uYslyAjCMIFsrqz7jyJjBzcUG/Ps+6g==} hasBin: true dependencies: - '@storybook/cli': 7.0.5 + '@storybook/cli': 7.0.27 transitivePeerDependencies: - bufferutil - encoding @@ -22414,10 +22289,6 @@ packages: /stylis@4.2.0: resolution: {integrity: sha512-Orov6g6BB1sDfYgzWfTHDOxamtX1bE/zo104Dh9e6fqJ3PooipYyfJ0pUmrZO2wAvO8YbEyeFrkV91XTsGMSrw==} - /stylis@4.3.0: - resolution: {integrity: sha512-E87pIogpwUsUwXw7dNyU4QDjdgVMy52m+XEOPEKUn161cCzWjjhPSQhByfd1CcNvrOLnXQ6OnnZDwnJrz/Z4YQ==} - dev: true - /supercluster@7.1.5: resolution: {integrity: sha512-EulshI3pGUM66o6ZdH3ReiFcvHpM3vAigyK+vcxdjpJyEbIIrtbmBdY23mGgnI24uXiGFvrGq9Gkum/8U7vJWg==} dependencies: @@ -22462,7 +22333,7 @@ packages: - typescript dev: false - /svelte-preprocess@5.0.3(@babel/core@7.21.5)(postcss@8.4.21)(sass@1.43.3)(svelte@3.58.0)(typescript@5.0.4): + /svelte-preprocess@5.0.3(@babel/core@7.22.9)(postcss@8.4.21)(sass@1.43.3)(svelte@3.58.0)(typescript@5.0.4): resolution: {integrity: sha512-GrHF1rusdJVbOZOwgPWtpqmaexkydznKzy5qIC2FabgpFyKN57bjMUUUqPRfbBXK5igiEWn1uO/DXsa2vJ5VHA==} engines: {node: '>= 14.10.0'} requiresBuild: true @@ -22500,7 +22371,7 @@ packages: typescript: optional: true dependencies: - '@babel/core': 7.21.5 + '@babel/core': 7.22.9 '@types/pug': 2.0.6 detect-indent: 6.1.0 magic-string: 0.27.0 @@ -22867,9 +22738,6 @@ packages: webpack: 5.76.0(webpack-cli@4.9.1) dev: true - /ts-toolbelt@9.6.0: - resolution: {integrity: sha512-nsZd8ZeNUzukXPlJmTBwUAuABDe/9qtVDelJeT/qW0ow3ZS3BsQJtNkan1802aM9Uf68/Y8ljw86Hu0h5IUW3w==} - /tsconfig-paths@3.14.2: resolution: {integrity: sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g==} dependencies: @@ -23013,11 +22881,6 @@ packages: resolution: {integrity: sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==} dev: true - /types-ramda@0.29.4: - resolution: {integrity: sha512-XO/820iRsCDwqLjE8XE+b57cVGPyk1h+U9lBGpDWvbEky+NQChvHVwaKM05WnW1c5z3EVQh8NhXFmh2E/1YazQ==} - dependencies: - ts-toolbelt: 9.6.0 - /typescript@5.0.4: resolution: {integrity: sha512-cW9T5W9xY37cc+jfEnaUvX91foxtHkza3Nw3wkoF4sSlKn0MONdkdEndig/qPBWXNkmplh3NzayQzCiHM4/hqw==} engines: {node: '>=12.20'} @@ -23321,10 +23184,6 @@ packages: engines: {node: '>= 0.4.0'} dev: true - /uuid-browser@3.1.0: - resolution: {integrity: sha512-dsNgbLaTrd6l3MMxTtouOCFw4CBFc/3a+GgYA2YyrJvyQ1u6q4pcu3ktLoUZ/VN/Aw9WsauazbgsgdfVWgAKQg==} - deprecated: Package no longer supported and required. Use the uuid package or crypto.randomUUID instead - /uuid@3.4.0: resolution: {integrity: sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==} deprecated: Please upgrade to version 7 or higher. Older versions may use Math.random() in certain circumstances, which is known to be problematic. See https://v8.dev/blog/math-random for details. @@ -23335,6 +23194,10 @@ packages: resolution: {integrity: sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==} hasBin: true + /uuid@9.0.0: + resolution: {integrity: sha512-MXcSTerfPa4uqyzStbRoTgt5XIe3x5+42+q1sDuy3R5MDk66URdLMOZe5aPX/SQd+kuYAh0FdP/pO28IkQyTeg==} + hasBin: true + /uvu@0.5.6: resolution: {integrity: sha512-+g8ENReyr8YsOc6fv/NVJs2vFdHBnBNdfE49rshrTzDWOlUx4Gq7KOS2GD8eqhy2j+Ejq29+SbKH8yjkAqXqoA==} engines: {node: '>=8'} @@ -23468,6 +23331,12 @@ packages: glob-to-regexp: 0.4.1 graceful-fs: 4.2.11 + /wcwidth@1.0.1: + resolution: {integrity: sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==} + dependencies: + defaults: 1.0.4 + dev: true + /webidl-conversions@3.0.1: resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==} @@ -23654,13 +23523,6 @@ packages: string-width: 4.2.3 dev: true - /widest-line@3.1.0: - resolution: {integrity: sha512-NsmoXalsWVDMGupxZ5R08ka9flZjjiLvHVAWYOKtiKM8ujtZWr9cRffak+uSE48+Ob8ObalXpwyeUiyDD6QFgg==} - engines: {node: '>=8'} - dependencies: - string-width: 4.2.3 - dev: true - /wildcard@2.0.1: resolution: {integrity: sha512-CC1bOL87PIWSBhDcTrdeLo6eGT7mCFtrg0uIJtqJUFyK+eJnzl8A1niH56uu7KMa5XFrtiV+AQuHO3n7DsHnLQ==} diff --git a/projects/js-packages/babel-plugin-replace-textdomain/changelog/renovate-babel-monorepo b/projects/js-packages/babel-plugin-replace-textdomain/changelog/renovate-babel-monorepo new file mode 100644 index 0000000000000..c47cb18e82997 --- /dev/null +++ b/projects/js-packages/babel-plugin-replace-textdomain/changelog/renovate-babel-monorepo @@ -0,0 +1,4 @@ +Significance: patch +Type: changed + +Updated package dependencies. diff --git a/projects/js-packages/babel-plugin-replace-textdomain/package.json b/projects/js-packages/babel-plugin-replace-textdomain/package.json index b16b04049a44f..3d380259698e2 100644 --- a/projects/js-packages/babel-plugin-replace-textdomain/package.json +++ b/projects/js-packages/babel-plugin-replace-textdomain/package.json @@ -1,6 +1,6 @@ { "name": "@automattic/babel-plugin-replace-textdomain", - "version": "1.0.25", + "version": "1.0.26-alpha", "description": "A Babel plugin to replace the textdomain in gettext-style function calls.", "homepage": "https://github.com/Automattic/jetpack/tree/HEAD/projects/js-packages/babel-plugin-replace-textdomain/#readme", "bugs": { @@ -20,7 +20,7 @@ "debug": "^4.3.2" }, "devDependencies": { - "@babel/core": "7.21.5", + "@babel/core": "7.22.9", "babel-plugin-tester": "11.0.4", "jest": "29.4.3" }, diff --git a/projects/js-packages/components/changelog/renovate-babel-monorepo b/projects/js-packages/components/changelog/renovate-babel-monorepo new file mode 100644 index 0000000000000..c47cb18e82997 --- /dev/null +++ b/projects/js-packages/components/changelog/renovate-babel-monorepo @@ -0,0 +1,4 @@ +Significance: patch +Type: changed + +Updated package dependencies. diff --git a/projects/js-packages/components/changelog/renovate-storybook-monorepo b/projects/js-packages/components/changelog/renovate-storybook-monorepo new file mode 100644 index 0000000000000..c47cb18e82997 --- /dev/null +++ b/projects/js-packages/components/changelog/renovate-storybook-monorepo @@ -0,0 +1,4 @@ +Significance: patch +Type: changed + +Updated package dependencies. diff --git a/projects/js-packages/components/package.json b/projects/js-packages/components/package.json index 3c4c10e6b0518..0405887387d69 100644 --- a/projects/js-packages/components/package.json +++ b/projects/js-packages/components/package.json @@ -1,6 +1,6 @@ { "name": "@automattic/jetpack-components", - "version": "0.40.2", + "version": "0.40.3-alpha", "description": "Jetpack Components Package", "author": "Automattic", "license": "GPL-2.0-or-later", @@ -30,12 +30,12 @@ }, "devDependencies": { "@automattic/jetpack-base-styles": "workspace:*", - "@babel/core": "7.21.5", - "@babel/preset-react": "7.18.6", + "@babel/core": "7.22.9", + "@babel/preset-react": "7.22.5", "@jest/globals": "29.4.3", - "@storybook/addon-actions": "7.0.5", - "@storybook/blocks": "7.0.5", - "@storybook/react": "7.0.5", + "@storybook/addon-actions": "7.0.27", + "@storybook/blocks": "7.0.27", + "@storybook/react": "7.0.27", "@testing-library/dom": "8.19.1", "@testing-library/react": "13.4.0", "@testing-library/user-event": "14.4.3", diff --git a/projects/js-packages/connection/changelog/renovate-babel-monorepo b/projects/js-packages/connection/changelog/renovate-babel-monorepo new file mode 100644 index 0000000000000..c47cb18e82997 --- /dev/null +++ b/projects/js-packages/connection/changelog/renovate-babel-monorepo @@ -0,0 +1,4 @@ +Significance: patch +Type: changed + +Updated package dependencies. diff --git a/projects/js-packages/connection/changelog/renovate-storybook-monorepo b/projects/js-packages/connection/changelog/renovate-storybook-monorepo new file mode 100644 index 0000000000000..c47cb18e82997 --- /dev/null +++ b/projects/js-packages/connection/changelog/renovate-storybook-monorepo @@ -0,0 +1,4 @@ +Significance: patch +Type: changed + +Updated package dependencies. diff --git a/projects/js-packages/connection/package.json b/projects/js-packages/connection/package.json index 499982b82b4a9..44dd34defd256 100644 --- a/projects/js-packages/connection/package.json +++ b/projects/js-packages/connection/package.json @@ -22,9 +22,9 @@ }, "devDependencies": { "@automattic/jetpack-base-styles": "workspace:*", - "@babel/core": "7.21.5", - "@babel/preset-react": "7.18.6", - "@storybook/addon-actions": "7.0.5", + "@babel/core": "7.22.9", + "@babel/preset-react": "7.22.5", + "@storybook/addon-actions": "7.0.27", "@testing-library/dom": "8.19.1", "@testing-library/react": "13.4.0", "@testing-library/user-event": "14.4.3", diff --git a/projects/js-packages/i18n-check-webpack-plugin/changelog/renovate-babel-monorepo b/projects/js-packages/i18n-check-webpack-plugin/changelog/renovate-babel-monorepo new file mode 100644 index 0000000000000..c47cb18e82997 --- /dev/null +++ b/projects/js-packages/i18n-check-webpack-plugin/changelog/renovate-babel-monorepo @@ -0,0 +1,4 @@ +Significance: patch +Type: changed + +Updated package dependencies. diff --git a/projects/js-packages/i18n-check-webpack-plugin/package.json b/projects/js-packages/i18n-check-webpack-plugin/package.json index 1788d8d56ed41..bb74528622846 100644 --- a/projects/js-packages/i18n-check-webpack-plugin/package.json +++ b/projects/js-packages/i18n-check-webpack-plugin/package.json @@ -1,6 +1,6 @@ { "name": "@automattic/i18n-check-webpack-plugin", - "version": "1.0.33", + "version": "1.0.34-alpha", "description": "A Webpack plugin to check that WordPress i18n hasn't been mangled by Webpack optimizations.", "homepage": "https://github.com/Automattic/jetpack/tree/HEAD/projects/js-packages/i18n-check-webpack-plugin/#readme", "bugs": { @@ -20,7 +20,7 @@ "debug": "^4.3.2" }, "devDependencies": { - "@babel/core": "7.21.5", + "@babel/core": "7.22.9", "jest": "29.4.3", "webpack": "5.76.0", "webpack-cli": "4.9.1" diff --git a/projects/js-packages/idc/changelog/renovate-babel-monorepo b/projects/js-packages/idc/changelog/renovate-babel-monorepo new file mode 100644 index 0000000000000..c47cb18e82997 --- /dev/null +++ b/projects/js-packages/idc/changelog/renovate-babel-monorepo @@ -0,0 +1,4 @@ +Significance: patch +Type: changed + +Updated package dependencies. diff --git a/projects/js-packages/idc/package.json b/projects/js-packages/idc/package.json index 574a2f66d6cfc..34b63d0ad9adb 100644 --- a/projects/js-packages/idc/package.json +++ b/projects/js-packages/idc/package.json @@ -19,8 +19,8 @@ "prop-types": "^15.7.2" }, "devDependencies": { - "@babel/core": "7.21.5", - "@babel/preset-react": "7.18.6", + "@babel/core": "7.22.9", + "@babel/preset-react": "7.22.5", "react": "18.2.0", "react-dom": "18.2.0", "react-test-renderer": "18.2.0" diff --git a/projects/js-packages/licensing/changelog/renovate-babel-monorepo b/projects/js-packages/licensing/changelog/renovate-babel-monorepo new file mode 100644 index 0000000000000..c47cb18e82997 --- /dev/null +++ b/projects/js-packages/licensing/changelog/renovate-babel-monorepo @@ -0,0 +1,4 @@ +Significance: patch +Type: changed + +Updated package dependencies. diff --git a/projects/js-packages/licensing/package.json b/projects/js-packages/licensing/package.json index 3365af4007679..62793ed401a2d 100644 --- a/projects/js-packages/licensing/package.json +++ b/projects/js-packages/licensing/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@automattic/jetpack-licensing", - "version": "0.11.1", + "version": "0.11.2-alpha", "description": "Jetpack licensing flow", "homepage": "https://github.com/Automattic/jetpack/tree/HEAD/projects/js-packages/licensing/#readme", "bugs": { @@ -31,8 +31,8 @@ }, "devDependencies": { "@automattic/jetpack-base-styles": "workspace:*", - "@babel/core": "7.21.5", - "@babel/preset-react": "7.18.6", + "@babel/core": "7.22.9", + "@babel/preset-react": "7.22.5", "@testing-library/dom": "8.19.1", "@testing-library/react": "13.4.0", "@testing-library/user-event": "14.4.3", diff --git a/projects/js-packages/partner-coupon/changelog/renovate-babel-monorepo b/projects/js-packages/partner-coupon/changelog/renovate-babel-monorepo new file mode 100644 index 0000000000000..c47cb18e82997 --- /dev/null +++ b/projects/js-packages/partner-coupon/changelog/renovate-babel-monorepo @@ -0,0 +1,4 @@ +Significance: patch +Type: changed + +Updated package dependencies. diff --git a/projects/js-packages/partner-coupon/package.json b/projects/js-packages/partner-coupon/package.json index 1854c544dc52b..57e98daeae204 100644 --- a/projects/js-packages/partner-coupon/package.json +++ b/projects/js-packages/partner-coupon/package.json @@ -21,8 +21,8 @@ "devDependencies": { "@automattic/jetpack-analytics": "workspace:*", "@automattic/jetpack-base-styles": "workspace:*", - "@babel/core": "7.21.5", - "@babel/preset-react": "7.18.6", + "@babel/core": "7.22.9", + "@babel/preset-react": "7.22.5", "@testing-library/dom": "8.19.1", "@testing-library/react": "13.4.0", "@testing-library/user-event": "14.4.3", diff --git a/projects/js-packages/publicize-components/changelog/renovate-babel-monorepo b/projects/js-packages/publicize-components/changelog/renovate-babel-monorepo new file mode 100644 index 0000000000000..c47cb18e82997 --- /dev/null +++ b/projects/js-packages/publicize-components/changelog/renovate-babel-monorepo @@ -0,0 +1,4 @@ +Significance: patch +Type: changed + +Updated package dependencies. diff --git a/projects/js-packages/publicize-components/package.json b/projects/js-packages/publicize-components/package.json index b27dbd4dcda49..9f75e2545d7f7 100644 --- a/projects/js-packages/publicize-components/package.json +++ b/projects/js-packages/publicize-components/package.json @@ -49,10 +49,10 @@ "@automattic/color-studio": "2.5.0", "@automattic/jetpack-base-styles": "workspace:*", "@automattic/jetpack-webpack-config": "workspace:*", - "@babel/core": "7.21.5", - "@babel/plugin-transform-react-jsx": "7.21.5", - "@babel/preset-react": "7.18.6", - "@babel/runtime": "7.21.5", + "@babel/core": "7.22.9", + "@babel/plugin-transform-react-jsx": "7.22.5", + "@babel/preset-react": "7.22.5", + "@babel/runtime": "7.22.6", "@testing-library/dom": "8.19.1", "@testing-library/react": "13.4.0", "@testing-library/user-event": "14.4.3", diff --git a/projects/js-packages/shared-extension-utils/changelog/renovate-babel-monorepo b/projects/js-packages/shared-extension-utils/changelog/renovate-babel-monorepo new file mode 100644 index 0000000000000..c47cb18e82997 --- /dev/null +++ b/projects/js-packages/shared-extension-utils/changelog/renovate-babel-monorepo @@ -0,0 +1,4 @@ +Significance: patch +Type: changed + +Updated package dependencies. diff --git a/projects/js-packages/shared-extension-utils/package.json b/projects/js-packages/shared-extension-utils/package.json index cc2c76c2e2307..faeb3fa677f5e 100644 --- a/projects/js-packages/shared-extension-utils/package.json +++ b/projects/js-packages/shared-extension-utils/package.json @@ -1,6 +1,6 @@ { "name": "@automattic/jetpack-shared-extension-utils", - "version": "0.10.8", + "version": "0.10.9-alpha", "description": "Utility functions used by the block editor extensions", "homepage": "https://github.com/Automattic/jetpack/tree/HEAD/projects/js-packages/shared-extension-utils/#readme", "bugs": { @@ -28,8 +28,8 @@ "lodash": "4.17.21" }, "devDependencies": { - "@babel/core": "7.21.5", - "@babel/preset-react": "7.18.6", + "@babel/core": "7.22.9", + "@babel/preset-react": "7.22.5", "babel-jest": "29.3.1", "jest": "29.3.1", "jest-environment-jsdom": "29.3.1", @@ -41,7 +41,7 @@ "@testing-library/dom": "8.19.1", "@testing-library/react": "13.4.0", "@testing-library/user-event": "14.4.3", - "@babel/plugin-transform-react-jsx": "7.21.5" + "@babel/plugin-transform-react-jsx": "7.22.5" }, "engines": { "node": "^18.13.0", diff --git a/projects/js-packages/storybook/.babelrc b/projects/js-packages/storybook/.babelrc index 3277d36bedd69..c97694a2f21a5 100644 --- a/projects/js-packages/storybook/.babelrc +++ b/projects/js-packages/storybook/.babelrc @@ -1,7 +1,6 @@ { "presets": [ "@wordpress/babel-preset-default" ], "plugins": [ - "@emotion/babel-plugin", "babel-plugin-inline-json-import" ] } diff --git a/projects/js-packages/storybook/changelog/remove-unused-js-deps b/projects/js-packages/storybook/changelog/remove-unused-js-deps new file mode 100644 index 0000000000000..b132df835992a --- /dev/null +++ b/projects/js-packages/storybook/changelog/remove-unused-js-deps @@ -0,0 +1,5 @@ +Significance: patch +Type: removed +Comment: Remove unused JS deps. No change to the project itself. + + diff --git a/projects/js-packages/storybook/changelog/renovate-babel-monorepo b/projects/js-packages/storybook/changelog/renovate-babel-monorepo new file mode 100644 index 0000000000000..c47cb18e82997 --- /dev/null +++ b/projects/js-packages/storybook/changelog/renovate-babel-monorepo @@ -0,0 +1,4 @@ +Significance: patch +Type: changed + +Updated package dependencies. diff --git a/projects/js-packages/storybook/changelog/renovate-storybook-monorepo b/projects/js-packages/storybook/changelog/renovate-storybook-monorepo new file mode 100644 index 0000000000000..c47cb18e82997 --- /dev/null +++ b/projects/js-packages/storybook/changelog/renovate-storybook-monorepo @@ -0,0 +1,4 @@ +Significance: patch +Type: changed + +Updated package dependencies. diff --git a/projects/js-packages/storybook/package.json b/projects/js-packages/storybook/package.json index 1addbd6043f1e..6db03c5e22f03 100644 --- a/projects/js-packages/storybook/package.json +++ b/projects/js-packages/storybook/package.json @@ -22,26 +22,23 @@ "devDependencies": { "@automattic/jetpack-components": "workspace:*", "@automattic/jetpack-webpack-config": "workspace:*", - "@babel/core": "7.21.5", - "@babel/plugin-syntax-jsx": "7.21.4", - "@babel/preset-react": "7.18.6", - "@babel/runtime": "7.21.5", - "@emotion/babel-plugin": "11.3.0", - "@emotion/react": "11.4.1", - "@emotion/styled": "11.3.0", - "@storybook/addon-a11y": "7.0.5", - "@storybook/addon-docs": "7.0.5", - "@storybook/addon-essentials": "7.0.5", - "@storybook/addon-storysource": "7.0.5", - "@storybook/addons": "7.0.5", - "@storybook/api": "7.0.5", - "@storybook/blocks": "7.0.5", - "@storybook/components": "7.0.5", - "@storybook/manager-api": "7.0.5", - "@storybook/react": "7.0.5", - "@storybook/react-webpack5": "7.0.5", - "@storybook/source-loader": "7.0.5", - "@storybook/theming": "7.0.5", + "@babel/core": "7.22.9", + "@babel/plugin-syntax-jsx": "7.22.5", + "@babel/preset-react": "7.22.5", + "@babel/runtime": "7.22.6", + "@storybook/addon-a11y": "7.0.27", + "@storybook/addon-docs": "7.0.27", + "@storybook/addon-essentials": "7.0.27", + "@storybook/addon-storysource": "7.0.27", + "@storybook/addons": "7.0.27", + "@storybook/api": "7.0.27", + "@storybook/blocks": "7.0.27", + "@storybook/components": "7.0.27", + "@storybook/manager-api": "7.0.27", + "@storybook/react": "7.0.27", + "@storybook/react-webpack5": "7.0.27", + "@storybook/source-loader": "7.0.27", + "@storybook/theming": "7.0.27", "@wordpress/babel-preset-default": "7.21.0", "@wordpress/base-styles": "4.28.0", "@wordpress/block-editor": "12.5.0", @@ -65,7 +62,7 @@ "require-from-string": "2.0.2", "sass": "1.43.3", "sass-loader": "12.4.0", - "storybook": "7.0.5", + "storybook": "7.0.27", "storybook-addon-mock": "4.0.0", "style-loader": "2.0.0", "ts-dedent": "2.2.0", diff --git a/projects/js-packages/videopress-core/changelog/renovate-babel-monorepo b/projects/js-packages/videopress-core/changelog/renovate-babel-monorepo new file mode 100644 index 0000000000000..c47cb18e82997 --- /dev/null +++ b/projects/js-packages/videopress-core/changelog/renovate-babel-monorepo @@ -0,0 +1,4 @@ +Significance: patch +Type: changed + +Updated package dependencies. diff --git a/projects/js-packages/videopress-core/package.json b/projects/js-packages/videopress-core/package.json index 169ca264d1c3f..84ca4540d51d5 100644 --- a/projects/js-packages/videopress-core/package.json +++ b/projects/js-packages/videopress-core/package.json @@ -25,8 +25,8 @@ "devDependencies": { "jest": "*", "@automattic/jetpack-webpack-config": "workspace:*", - "@babel/core": "7.21.5", - "@babel/preset-react": "7.18.6", + "@babel/core": "7.22.9", + "@babel/preset-react": "7.22.5", "@types/jest": "29.2.5", "ts-loader": "9.4.2", "tslib": "2.5.0", diff --git a/projects/js-packages/webpack-config/changelog/renovate-babel-monorepo b/projects/js-packages/webpack-config/changelog/renovate-babel-monorepo new file mode 100644 index 0000000000000..c47cb18e82997 --- /dev/null +++ b/projects/js-packages/webpack-config/changelog/renovate-babel-monorepo @@ -0,0 +1,4 @@ +Significance: patch +Type: changed + +Updated package dependencies. diff --git a/projects/js-packages/webpack-config/package.json b/projects/js-packages/webpack-config/package.json index a1d5ba069d2eb..6a991df20dc20 100644 --- a/projects/js-packages/webpack-config/package.json +++ b/projects/js-packages/webpack-config/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@automattic/jetpack-webpack-config", - "version": "1.5.5", + "version": "1.5.6-alpha", "description": "Library of pieces for webpack config in Jetpack projects.", "homepage": "https://github.com/Automattic/jetpack/tree/HEAD/projects/js-packages/webpack-config/#readme", "bugs": { @@ -21,13 +21,13 @@ "@automattic/i18n-check-webpack-plugin": "workspace:*", "@automattic/i18n-loader-webpack-plugin": "workspace:*", "@automattic/webpack-rtl-plugin": "6.0.0", - "@babel/compat-data": "7.21.7", - "@babel/helper-compilation-targets": "7.21.5", + "@babel/compat-data": "7.22.9", + "@babel/helper-compilation-targets": "7.22.9", "@babel/plugin-proposal-class-properties": "7.18.6", - "@babel/plugin-transform-runtime": "7.21.4", - "@babel/preset-env": "7.21.5", - "@babel/preset-react": "7.18.6", - "@babel/preset-typescript": "7.21.5", + "@babel/plugin-transform-runtime": "7.22.9", + "@babel/preset-env": "7.22.9", + "@babel/preset-react": "7.22.5", + "@babel/preset-typescript": "7.22.5", "@cerner/duplicate-package-checker-webpack-plugin": "2.3.0", "@wordpress/browserslist-config": "5.20.0", "@wordpress/dependency-extraction-webpack-plugin": "4.20.0", @@ -40,14 +40,14 @@ "thread-loader": "3.0.4" }, "devDependencies": { - "@babel/core": "7.21.5", - "@babel/runtime": "7.21.5", + "@babel/core": "7.22.9", + "@babel/runtime": "7.22.6", "webpack": "5.76.0", "webpack-cli": "4.9.1" }, "peerDependencies": { "@babel/core": "^7.0.0", - "@babel/runtime": "7.21.5", + "@babel/runtime": "7.22.6", "webpack": "^5.67.0" }, "peerDependenciesMeta": { diff --git a/projects/packages/action-bar/changelog/renovate-babel-monorepo b/projects/packages/action-bar/changelog/renovate-babel-monorepo new file mode 100644 index 0000000000000..c47cb18e82997 --- /dev/null +++ b/projects/packages/action-bar/changelog/renovate-babel-monorepo @@ -0,0 +1,4 @@ +Significance: patch +Type: changed + +Updated package dependencies. diff --git a/projects/packages/action-bar/package.json b/projects/packages/action-bar/package.json index 7a49bc6e5b3bb..61dfde0366698 100644 --- a/projects/packages/action-bar/package.json +++ b/projects/packages/action-bar/package.json @@ -27,7 +27,7 @@ }, "devDependencies": { "@automattic/jetpack-webpack-config": "workspace:*", - "@babel/core": "7.21.5", + "@babel/core": "7.22.9", "@wordpress/browserslist-config": "5.20.0", "@wordpress/dependency-extraction-webpack-plugin": "4.20.0", "core-js": "3.23.5", diff --git a/projects/packages/backup/changelog/remove-unused-js-deps b/projects/packages/backup/changelog/remove-unused-js-deps new file mode 100644 index 0000000000000..b132df835992a --- /dev/null +++ b/projects/packages/backup/changelog/remove-unused-js-deps @@ -0,0 +1,5 @@ +Significance: patch +Type: removed +Comment: Remove unused JS deps. No change to the project itself. + + diff --git a/projects/packages/backup/changelog/renovate-babel-monorepo b/projects/packages/backup/changelog/renovate-babel-monorepo new file mode 100644 index 0000000000000..c47cb18e82997 --- /dev/null +++ b/projects/packages/backup/changelog/renovate-babel-monorepo @@ -0,0 +1,4 @@ +Significance: patch +Type: changed + +Updated package dependencies. diff --git a/projects/packages/backup/package.json b/projects/packages/backup/package.json index 137ca44dfbd4f..3f2b0aab4c73c 100644 --- a/projects/packages/backup/package.json +++ b/projects/packages/backup/package.json @@ -43,10 +43,9 @@ "devDependencies": { "@automattic/jetpack-base-styles": "workspace:*", "@automattic/jetpack-webpack-config": "workspace:*", - "@babel/core": "7.21.5", - "@babel/preset-env": "7.21.5", - "@babel/register": "7.21.0", - "@babel/runtime": "7.21.5", + "@babel/core": "7.22.9", + "@babel/preset-env": "7.22.9", + "@babel/runtime": "7.22.6", "@testing-library/dom": "8.19.1", "@testing-library/react": "13.4.0", "@testing-library/user-event": "14.4.3", diff --git a/projects/packages/blaze/changelog/remove-unused-js-deps b/projects/packages/blaze/changelog/remove-unused-js-deps new file mode 100644 index 0000000000000..b132df835992a --- /dev/null +++ b/projects/packages/blaze/changelog/remove-unused-js-deps @@ -0,0 +1,5 @@ +Significance: patch +Type: removed +Comment: Remove unused JS deps. No change to the project itself. + + diff --git a/projects/packages/blaze/changelog/renovate-babel-monorepo b/projects/packages/blaze/changelog/renovate-babel-monorepo new file mode 100644 index 0000000000000..c47cb18e82997 --- /dev/null +++ b/projects/packages/blaze/changelog/renovate-babel-monorepo @@ -0,0 +1,4 @@ +Significance: patch +Type: changed + +Updated package dependencies. diff --git a/projects/packages/blaze/package.json b/projects/packages/blaze/package.json index 19806aa050b22..83830b9d9ea45 100644 --- a/projects/packages/blaze/package.json +++ b/projects/packages/blaze/package.json @@ -38,10 +38,9 @@ }, "devDependencies": { "@automattic/jetpack-webpack-config": "workspace:*", - "@babel/core": "7.21.5", - "@babel/preset-env": "7.21.5", - "@babel/register": "7.21.0", - "@babel/runtime": "7.21.5", + "@babel/core": "7.22.9", + "@babel/preset-env": "7.22.9", + "@babel/runtime": "7.22.6", "@wordpress/browserslist-config": "5.20.0", "sass": "1.54.4", "sass-loader": "12.4.0", diff --git a/projects/packages/forms/changelog/fix-bad-extra-fields b/projects/packages/forms/changelog/fix-bad-extra-fields new file mode 100644 index 0000000000000..5c763563050a6 --- /dev/null +++ b/projects/packages/forms/changelog/fix-bad-extra-fields @@ -0,0 +1,4 @@ +Significance: patch +Type: fixed + +Avoid Fatal errors when exporting fields that were not saved with the correct value. diff --git a/projects/packages/forms/changelog/fix-forms-dropdown-validation b/projects/packages/forms/changelog/fix-forms-dropdown-validation new file mode 100644 index 0000000000000..0d54f2b73c135 --- /dev/null +++ b/projects/packages/forms/changelog/fix-forms-dropdown-validation @@ -0,0 +1,4 @@ +Significance: patch +Type: fixed + +Fix Forms dropdown required validation diff --git a/projects/packages/forms/changelog/renovate-babel-monorepo b/projects/packages/forms/changelog/renovate-babel-monorepo new file mode 100644 index 0000000000000..c47cb18e82997 --- /dev/null +++ b/projects/packages/forms/changelog/renovate-babel-monorepo @@ -0,0 +1,4 @@ +Significance: patch +Type: changed + +Updated package dependencies. diff --git a/projects/packages/forms/package.json b/projects/packages/forms/package.json index 15e01e08a1717..a0ffef77564e8 100644 --- a/projects/packages/forms/package.json +++ b/projects/packages/forms/package.json @@ -58,12 +58,12 @@ "@automattic/jetpack-base-styles": "workspace:*", "@automattic/jetpack-webpack-config": "workspace:*", "@automattic/remove-asset-webpack-plugin": "workspace:*", - "@babel/core": "7.21.5", + "@babel/core": "7.22.9", "@babel/plugin-proposal-nullish-coalescing-operator": "7.18.6", - "@babel/plugin-transform-react-jsx": "7.21.5", - "@babel/plugin-transform-runtime": "7.21.4", - "@babel/preset-env": "7.21.5", - "@babel/runtime": "7.21.5", + "@babel/plugin-transform-react-jsx": "7.22.5", + "@babel/plugin-transform-runtime": "7.22.9", + "@babel/preset-env": "7.22.9", + "@babel/runtime": "7.22.6", "@wordpress/api-fetch": "6.34.0", "@wordpress/babel-plugin-import-jsx-pragma": "4.20.0", "@wordpress/browserslist-config": "5.20.0", diff --git a/projects/packages/forms/src/contact-form/class-contact-form-field.php b/projects/packages/forms/src/contact-form/class-contact-form-field.php index de4d03722c063..d7dac50c5f70d 100644 --- a/projects/packages/forms/src/contact-form/class-contact-form-field.php +++ b/projects/packages/forms/src/contact-form/class-contact-form-field.php @@ -719,7 +719,7 @@ public function render_select_field( $id, $label, $value, $class, $required, $re $field .= "\t\n"; if ( $this->get_attribute( 'togglelabel' ) ) { - $field .= "\t\t\n"; + $field .= "\t\t\n"; } foreach ( (array) $this->get_attribute( 'options' ) as $option_index => $option ) { diff --git a/projects/plugins/jetpack/modules/contact-form/js/dropdown.js b/projects/plugins/jetpack/modules/contact-form/js/dropdown.js index 4cf6d8bb7042b..3685dfdd9d032 100644 --- a/projects/plugins/jetpack/modules/contact-form/js/dropdown.js +++ b/projects/plugins/jetpack/modules/contact-form/js/dropdown.js @@ -18,6 +18,8 @@ jQuery( function ( $ ) { 'ui-selectmenu-button': 'contact-form-dropdown__button', 'ui-selectmenu-menu': 'contact-form-dropdown__menu', }, - } ); + } ) + .attr( 'aria-hidden', true ) + .prop( 'tabindex', -1 ); } } ); diff --git a/projects/plugins/jetpack/modules/related-posts/jetpack-related-posts.php b/projects/plugins/jetpack/modules/related-posts/jetpack-related-posts.php index af5dadb1ac274..3a4a359db1333 100644 --- a/projects/plugins/jetpack/modules/related-posts/jetpack-related-posts.php +++ b/projects/plugins/jetpack/modules/related-posts/jetpack-related-posts.php @@ -286,7 +286,7 @@ public function get_server_rendered_html() { 'isServerRendered' => true, ); - return $this->render_block( $block_rp_settings ); + return $this->render_block( $block_rp_settings, '' ); } /** diff --git a/projects/plugins/jetpack/modules/subscriptions/subscribe-modal/class-jetpack-subscribe-modal.php b/projects/plugins/jetpack/modules/subscriptions/subscribe-modal/class-jetpack-subscribe-modal.php index 46730b2d75a57..0b26edc2099c1 100644 --- a/projects/plugins/jetpack/modules/subscriptions/subscribe-modal/class-jetpack-subscribe-modal.php +++ b/projects/plugins/jetpack/modules/subscriptions/subscribe-modal/class-jetpack-subscribe-modal.php @@ -28,6 +28,17 @@ public static function init() { return self::$instance; } + const BLOCK_TEMPLATE_PART_SLUG = 'jetpack-subscribe-modal'; + + /** + * Returns the block template part ID. + * + * @return string + */ + public static function get_block_template_part_id() { + return get_stylesheet() . '//' . self::BLOCK_TEMPLATE_PART_SLUG; + } + /** * Jetpack_Subscribe_Modal class constructor. */ @@ -61,7 +72,7 @@ public function add_subscribe_modal_to_frontend() { if ( $this->is_front_end_single_post() ) { ?>
- +
get_custom_template(); - - if ( empty( $block_template ) && $template_type === 'wp_template_part' && $id === $custom_template->id ) { - $block_template = $custom_template; + if ( empty( $block_template ) && $template_type === 'wp_template_part' ) { + if ( $id === self::get_block_template_part_id() ) { + return $this->get_template(); + } } return $block_template; @@ -98,7 +109,15 @@ public function get_block_template_filter( $block_template, $id, $template_type */ public function get_block_templates_filter( $query_result, $query, $template_type ) { if ( empty( $query ) && $template_type === 'wp_template_part' ) { - $query_result[] = $this->get_custom_template(); + if ( is_array( $query_result ) ) { + // find the custom template and return early if we have a custom version in the results. + foreach ( $query_result as $template ) { + if ( $template->id === self::get_block_template_part_id() ) { + return $query_result; + } + } + } + $query_result[] = $this->get_template(); } return $query_result; @@ -109,20 +128,20 @@ public function get_block_templates_filter( $query_result, $query, $template_typ * * @return WP_Block_Template */ - public function get_custom_template() { + public function get_template() { $template = new WP_Block_Template(); $template->theme = get_stylesheet(); - $template->slug = 'jetpack-subscribe-modal'; - $template->id = $template->theme . '//' . $template->slug; - $template->area = 'footer'; + $template->slug = self::BLOCK_TEMPLATE_PART_SLUG; + $template->id = self::get_block_template_part_id(); + $template->area = 'uncategorized'; $template->content = $this->get_subscribe_template_content(); $template->source = 'plugin'; $template->type = 'wp_template_part'; - $template->title = 'Subscribe Modal Template 2'; + $template->title = __( 'Jetpack Subscribe modal', 'jetpack' ); $template->status = 'publish'; $template->has_theme_file = false; $template->is_custom = true; - $template->description = 'Subscribe Modal Templateasdf'; + $template->description = __( 'A subscribe form that pops up when someone visits your site', 'jetpack' ); return $template; } diff --git a/projects/plugins/jetpack/package.json b/projects/plugins/jetpack/package.json index 1d8619b28fa79..7b0f6387771e0 100644 --- a/projects/plugins/jetpack/package.json +++ b/projects/plugins/jetpack/package.json @@ -116,12 +116,12 @@ "@automattic/jetpack-base-styles": "workspace:*", "@automattic/jetpack-webpack-config": "workspace:*", "@automattic/remove-asset-webpack-plugin": "workspace:*", - "@babel/core": "7.21.5", + "@babel/core": "7.22.9", "@babel/plugin-proposal-nullish-coalescing-operator": "7.18.6", - "@babel/plugin-transform-react-jsx": "7.21.5", - "@babel/plugin-transform-runtime": "7.21.4", - "@babel/preset-env": "7.21.5", - "@babel/runtime": "7.21.5", + "@babel/plugin-transform-react-jsx": "7.22.5", + "@babel/plugin-transform-runtime": "7.22.9", + "@babel/preset-env": "7.22.9", + "@babel/runtime": "7.22.6", "@svgr/webpack": "7.0.0", "@testing-library/dom": "8.19.1", "@testing-library/react": "13.4.0", diff --git a/projects/plugins/migration/changelog/remove-unused-js-deps b/projects/plugins/migration/changelog/remove-unused-js-deps new file mode 100644 index 0000000000000..b132df835992a --- /dev/null +++ b/projects/plugins/migration/changelog/remove-unused-js-deps @@ -0,0 +1,5 @@ +Significance: patch +Type: removed +Comment: Remove unused JS deps. No change to the project itself. + + diff --git a/projects/plugins/migration/changelog/renovate-babel-monorepo b/projects/plugins/migration/changelog/renovate-babel-monorepo new file mode 100644 index 0000000000000..c47cb18e82997 --- /dev/null +++ b/projects/plugins/migration/changelog/renovate-babel-monorepo @@ -0,0 +1,4 @@ +Significance: patch +Type: changed + +Updated package dependencies. diff --git a/projects/plugins/migration/package.json b/projects/plugins/migration/package.json index cbba0d6b654a7..73bbf461801a5 100644 --- a/projects/plugins/migration/package.json +++ b/projects/plugins/migration/package.json @@ -42,10 +42,9 @@ }, "devDependencies": { "@automattic/jetpack-webpack-config": "workspace:*", - "@babel/core": "7.21.5", - "@babel/preset-env": "7.21.5", - "@babel/register": "7.21.0", - "@babel/runtime": "7.21.5", + "@babel/core": "7.22.9", + "@babel/preset-env": "7.22.9", + "@babel/runtime": "7.22.6", "@wordpress/browserslist-config": "5.20.0", "concurrently": "7.6.0", "sass": "1.43.3", diff --git a/projects/plugins/protect/changelog/remove-unused-js-deps b/projects/plugins/protect/changelog/remove-unused-js-deps new file mode 100644 index 0000000000000..b132df835992a --- /dev/null +++ b/projects/plugins/protect/changelog/remove-unused-js-deps @@ -0,0 +1,5 @@ +Significance: patch +Type: removed +Comment: Remove unused JS deps. No change to the project itself. + + diff --git a/projects/plugins/protect/changelog/renovate-babel-monorepo#3 b/projects/plugins/protect/changelog/renovate-babel-monorepo#3 new file mode 100644 index 0000000000000..c47cb18e82997 --- /dev/null +++ b/projects/plugins/protect/changelog/renovate-babel-monorepo#3 @@ -0,0 +1,4 @@ +Significance: patch +Type: changed + +Updated package dependencies. diff --git a/projects/plugins/protect/package.json b/projects/plugins/protect/package.json index 05187473ca16f..e9f1cd8156a4e 100644 --- a/projects/plugins/protect/package.json +++ b/projects/plugins/protect/package.json @@ -48,10 +48,9 @@ }, "devDependencies": { "@automattic/jetpack-webpack-config": "workspace:*", - "@babel/core": "7.21.5", - "@babel/preset-env": "7.21.5", - "@babel/register": "7.21.0", - "@babel/runtime": "7.21.5", + "@babel/core": "7.22.9", + "@babel/preset-env": "7.22.9", + "@babel/runtime": "7.22.6", "@wordpress/browserslist-config": "5.20.0", "concurrently": "7.6.0", "sass": "1.43.3", diff --git a/projects/plugins/social/changelog/remove-unused-js-deps b/projects/plugins/social/changelog/remove-unused-js-deps new file mode 100644 index 0000000000000..b132df835992a --- /dev/null +++ b/projects/plugins/social/changelog/remove-unused-js-deps @@ -0,0 +1,5 @@ +Significance: patch +Type: removed +Comment: Remove unused JS deps. No change to the project itself. + + diff --git a/projects/plugins/social/changelog/renovate-babel-monorepo b/projects/plugins/social/changelog/renovate-babel-monorepo new file mode 100644 index 0000000000000..c47cb18e82997 --- /dev/null +++ b/projects/plugins/social/changelog/renovate-babel-monorepo @@ -0,0 +1,4 @@ +Significance: patch +Type: changed + +Updated package dependencies. diff --git a/projects/plugins/social/package.json b/projects/plugins/social/package.json index 526145a1e5a77..491c62ac4787f 100644 --- a/projects/plugins/social/package.json +++ b/projects/plugins/social/package.json @@ -46,14 +46,13 @@ "@automattic/calypso-color-schemes": "3.0.0", "@automattic/color-studio": "2.5.0", "@automattic/jetpack-webpack-config": "workspace:*", - "@babel/core": "7.21.5", - "@babel/preset-env": "7.21.5", - "@babel/register": "7.21.0", - "@babel/runtime": "7.21.5", - "@types/react": "18.2.14", - "@types/react-dom": "18.2.6", + "@babel/core": "7.22.9", + "@babel/preset-env": "7.22.9", + "@babel/runtime": "7.22.6", "@testing-library/dom": "8.19.1", "@testing-library/react": "13.4.0", + "@types/react": "18.2.14", + "@types/react-dom": "18.2.6", "@wordpress/browserslist-config": "5.20.0", "autoprefixer": "10.4.14", "babel-jest": "29.4.3", diff --git a/projects/plugins/starter-plugin/changelog/remove-unused-js-deps b/projects/plugins/starter-plugin/changelog/remove-unused-js-deps new file mode 100644 index 0000000000000..b132df835992a --- /dev/null +++ b/projects/plugins/starter-plugin/changelog/remove-unused-js-deps @@ -0,0 +1,5 @@ +Significance: patch +Type: removed +Comment: Remove unused JS deps. No change to the project itself. + + diff --git a/projects/plugins/starter-plugin/changelog/renovate-babel-monorepo b/projects/plugins/starter-plugin/changelog/renovate-babel-monorepo new file mode 100644 index 0000000000000..c47cb18e82997 --- /dev/null +++ b/projects/plugins/starter-plugin/changelog/renovate-babel-monorepo @@ -0,0 +1,4 @@ +Significance: patch +Type: changed + +Updated package dependencies. diff --git a/projects/plugins/starter-plugin/package.json b/projects/plugins/starter-plugin/package.json index ec05a942512f3..81c209020eb17 100644 --- a/projects/plugins/starter-plugin/package.json +++ b/projects/plugins/starter-plugin/package.json @@ -38,10 +38,9 @@ }, "devDependencies": { "@automattic/jetpack-webpack-config": "workspace:*", - "@babel/core": "7.21.5", - "@babel/preset-env": "7.21.5", - "@babel/register": "7.21.0", - "@babel/runtime": "7.21.5", + "@babel/core": "7.22.9", + "@babel/preset-env": "7.22.9", + "@babel/runtime": "7.22.6", "@testing-library/dom": "8.19.1", "@testing-library/react": "13.4.0", "@wordpress/browserslist-config": "5.20.0", diff --git a/projects/plugins/videopress/changelog/remove-unused-js-deps b/projects/plugins/videopress/changelog/remove-unused-js-deps new file mode 100644 index 0000000000000..b132df835992a --- /dev/null +++ b/projects/plugins/videopress/changelog/remove-unused-js-deps @@ -0,0 +1,5 @@ +Significance: patch +Type: removed +Comment: Remove unused JS deps. No change to the project itself. + + diff --git a/projects/plugins/videopress/changelog/renovate-babel-monorepo#3 b/projects/plugins/videopress/changelog/renovate-babel-monorepo#3 new file mode 100644 index 0000000000000..c47cb18e82997 --- /dev/null +++ b/projects/plugins/videopress/changelog/renovate-babel-monorepo#3 @@ -0,0 +1,4 @@ +Significance: patch +Type: changed + +Updated package dependencies. diff --git a/projects/plugins/videopress/package.json b/projects/plugins/videopress/package.json index c4ea982971478..d92dbb3f1f008 100644 --- a/projects/plugins/videopress/package.json +++ b/projects/plugins/videopress/package.json @@ -28,10 +28,9 @@ }, "devDependencies": { "@automattic/jetpack-webpack-config": "workspace:*", - "@babel/core": "7.21.5", - "@babel/preset-env": "7.21.5", - "@babel/register": "7.21.0", - "@babel/runtime": "7.21.5", + "@babel/core": "7.22.9", + "@babel/preset-env": "7.22.9", + "@babel/runtime": "7.22.6", "@wordpress/browserslist-config": "5.20.0", "concurrently": "7.6.0", "sass": "1.43.3", diff --git a/tools/js-tools/package.json b/tools/js-tools/package.json index c65ef30ab807f..f049441b28034 100644 --- a/tools/js-tools/package.json +++ b/tools/js-tools/package.json @@ -12,10 +12,10 @@ "devDependencies": { "@automattic/eslint-changed": "workspace:*", "@automattic/eslint-config-target-es": "workspace:*", - "@babel/core": "7.21.5", - "@babel/eslint-parser": "7.21.3", - "@babel/preset-react": "7.18.6", - "@babel/preset-typescript": "7.21.5", + "@babel/core": "7.22.9", + "@babel/eslint-parser": "7.22.9", + "@babel/preset-react": "7.22.5", + "@babel/preset-typescript": "7.22.5", "@octokit/auth-token": "4.0.0", "@octokit/rest": "19.0.13", "@rushstack/eslint-patch": "1.3.2",