From 23aba47143ed55459ce513da3593f20626b01e9c Mon Sep 17 00:00:00 2001 From: Dmitry Matiouchenko Date: Tue, 16 Jul 2024 17:20:17 -0700 Subject: [PATCH] chore: use latest theme && enable indexing on deploy --- .github/workflows/algolia-indexing.yml | 51 + .github/workflows/deploy.yml | 60 +- package.json | 2 +- yarn.lock | 3587 ++++++++++++++++++++++-- 4 files changed, 3487 insertions(+), 213 deletions(-) create mode 100644 .github/workflows/algolia-indexing.yml diff --git a/.github/workflows/algolia-indexing.yml b/.github/workflows/algolia-indexing.yml new file mode 100644 index 00000000..173d58c7 --- /dev/null +++ b/.github/workflows/algolia-indexing.yml @@ -0,0 +1,51 @@ +--- +name: Search Indexing +on: + workflow_dispatch: + inputs: + mode: + description: 'Type of indexing. "index" to push to Algolia, "console" for dry run.' + required: true + default: "index" + type: choice + options: + - console + - index + +jobs: + build-and-index: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: Setup Node v18 for Yarn v4 + uses: actions/setup-node@v3 + with: + node-version: "18.19.0" # Current LTS version + + - name: Enable Corepack for Yarn + run: corepack enable + + - name: Install Dependencies + run: yarn install + env: + YARN_ENABLE_IMMUTABLE_INSTALLS: false + + - name: Build site + run: yarn build + + env: + NODE_OPTIONS: "--max_old_space_size=8192" + PREFIX_PATHS: true # equivalent to --prefix-paths flag for 'gatsby build' + REPO_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + REPO_OWNER: ${{ github.repository_owner }} + REPO_NAME: ${{ github.event.repository.name }} + REPO_BRANCH: ${{ github.ref_name }} + GATSBY_ALGOLIA_APPLICATION_ID: ${{ secrets.AIO_ALGOLIA_APPLICATION_ID }} + GATSBY_ALGOLIA_SEARCH_API_KEY: ${{ secrets.AIO_ALGOLIA_SEARCH_API_KEY }} + ALGOLIA_WRITE_API_KEY: ${{ secrets.AIO_ALGOLIA_WRITE_API_KEY }} + ALGOLIA_INDEXATION_MODE: ${{ github.event.inputs.mode || 'index' }} + GATSBY_ALGOLIA_INDEX_NAME: ${{ secrets.ALGOLIA_INDEX_NAME || github.event.repository.name }} + GATSBY_FEDS_PRIVACY_ID: ${{ secrets.AIO_FEDS_PRIVACY_ID }} + GATSBY_SITE_DOMAIN_URL: https://developer.adobe.com diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index d1995e60..396b3a06 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -4,17 +4,25 @@ on: workflow_dispatch: inputs: env: - description: 'Deploy to (dev|prod|dev prod)' + description: "Deploy to (dev|prod|dev prod)" required: true - default: 'dev' + default: "dev" clean: - description: 'Clean cache (yes|no)' + description: "Clean cache (yes|no)" required: true - default: 'no' + default: "no" excludeSubfolder: - description: 'Exclude a subfolder from deletion' + description: "Exclude a subfolder from deletion" required: false - default: '' + default: "" + index-mode: + description: 'Type of indexing. "index" to push to Algolia, "console" for dry run.' + required: true + default: "index" + type: choice + options: + - console + - index jobs: set-state: runs-on: ubuntu-latest @@ -39,7 +47,7 @@ jobs: result-encoding: string - name: Get branch name shell: bash - run: echo "##[set-output name=branch;]${GITHUB_REF#refs/heads/}" + run: echo "branch=${GITHUB_REF#refs/heads/}" >> "$GITHUB_OUTPUT" id: get_branch echo-state: @@ -81,7 +89,7 @@ jobs: - name: Setup Node v16 for Yarn v3 uses: actions/setup-node@v3 with: - node-version: '16.15.0' # Current LTS version + node-version: "16.15.0" # Current LTS version - name: Enable Corepack for Yarn v3 run: corepack enable @@ -123,7 +131,7 @@ jobs: PATH_PREFIX: ${{ needs.set-state.outputs.path_prefix }} GATSBY_ADOBE_LAUNCH_SRC: ${{ secrets.AIO_ADOBE_LAUNCH_DEV_SRC }} GATSBY_ADDITIONAL_ADOBE_ANALYTICS_ACCOUNTS: ${{ secrets.AIO_REPORT_SUITE_DEV}} - GATSBY_ADOBE_ANALYTICS_ENV: 'dev' + GATSBY_ADOBE_ANALYTICS_ENV: "dev" REPO_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} REPO_OWNER: ${{ github.event.repository.owner.login }} REPO_NAME: ${{ github.event.repository.name }} @@ -140,25 +148,24 @@ jobs: GATSBY_ALGOLIA_API_KEY: ${{ secrets.AIO_ALGOLIA_API_KEY }} GATSBY_ALGOLIA_INDEX_ALL_SRC: ${{ secrets.AIO_ALGOLIA_INDEX_ALL_SRC }} GATSBY_ALGOLIA_SEARCH_INDEX: ${{ secrets.AIO_ALGOLIA_SEARCH_INDEX }} + GATSBY_ALGOLIA_INDEX_ENV_PREFIX: ${{ secrets.AIO_ALGOLIA_INDEX_ENV_PREFIX }} GATSBY_FEDS_PRIVACY_ID: ${{ secrets.AIO_FEDS_PRIVACY_ID }} + GATSBY_SITE_DOMAIN_URL: https://developer-stage.adobe.com - name: Deploy uses: AdobeDocs/static-website-deploy@master with: - enabled-static-website: 'true' - source: 'public' + enabled-static-website: "true" + source: "public" target: ${{ needs.set-state.outputs.path_prefix }} connection-string: ${{ secrets.AIO_AZURE_DEV_CONNECTION_STRING }} - remove-existing-files: 'true' + remove-existing-files: "true" exclude-subfolder: ${{ needs.set-state.outputs.exclude_subfolder }} - - name: Delay purge - run: sleep 60s - shell: bash - name: Purge Fastly Cache uses: AdobeDocs/gatsby-fastly-purge-action@master with: fastly-token: ${{ secrets.AIO_FASTLY_TOKEN }} - fastly-url: '${{ secrets.AIO_FASTLY_DEV_URL}}${{ needs.set-state.outputs.path_prefix }}' + fastly-url: "${{ secrets.AIO_FASTLY_DEV_URL}}${{ needs.set-state.outputs.path_prefix }}" pre-build-production: needs: [set-state] @@ -186,7 +193,7 @@ jobs: - name: Setup Node v16 for Yarn v3 uses: actions/setup-node@v3 with: - node-version: '16.15.0' # Current LTS version + node-version: "16.15.0" # Current LTS version - name: Enable Corepack for Yarn v3 run: corepack enable @@ -228,7 +235,7 @@ jobs: PATH_PREFIX: ${{ needs.set-state.outputs.path_prefix }} GATSBY_ADOBE_LAUNCH_SRC: ${{ secrets.AIO_ADOBE_LAUNCH_PROD_SRC }} GATSBY_ADDITIONAL_ADOBE_ANALYTICS_ACCOUNTS: ${{ secrets.AIO_REPORT_SUITE_PROD }} - GATSBY_ADOBE_ANALYTICS_ENV: 'production' + GATSBY_ADOBE_ANALYTICS_ENV: "production" REPO_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} REPO_OWNER: ${{ github.event.repository.owner.login }} REPO_NAME: ${{ github.event.repository.name }} @@ -244,25 +251,24 @@ jobs: GATSBY_ALGOLIA_APP_ID: ${{ secrets.AIO_ALGOLIA_APP_ID }} GATSBY_ALGOLIA_API_KEY: ${{ secrets.AIO_ALGOLIA_API_KEY }} ALGOLIA_WRITE_API_KEY: ${{ secrets.AIO_ALGOLIA_WRITE_API_KEY }} - ALGOLIA_INDEXATION_MODE: ${{ secrets.AIO_ALGOLIA_INDEXATION_MODE }} - ALGOLIA_INDEX_NAME: ${{ secrets.ALGOLIA_INDEX_NAME || github.event.repository.name }} + ALGOLIA_INDEXATION_MODE: ${{ github.event.inputs.index-mode || 'index' }} + GATSBY_ALGOLIA_INDEX_NAME: ${{ secrets.ALGOLIA_INDEX_NAME || github.event.repository.name }} GATSBY_ALGOLIA_INDEX_ALL_SRC: ${{ secrets.AIO_ALGOLIA_INDEX_ALL_SRC }} GATSBY_ALGOLIA_SEARCH_INDEX: ${{ secrets.AIO_ALGOLIA_SEARCH_INDEX }} + GATSBY_ALGOLIA_INDEX_ENV_PREFIX: ${{ secrets.AIO_ALGOLIA_INDEX_ENV_PREFIX }} GATSBY_FEDS_PRIVACY_ID: ${{ secrets.AIO_FEDS_PRIVACY_ID }} + GATSBY_SITE_DOMAIN_URL: https://developer.adobe.com - name: Deploy uses: AdobeDocs/static-website-deploy@master with: - enabled-static-website: 'true' - source: 'public' + enabled-static-website: "true" + source: "public" target: ${{ needs.set-state.outputs.path_prefix }} connection-string: ${{ secrets.AIO_AZURE_PROD_CONNECTION_STRING }} - remove-existing-files: 'true' + remove-existing-files: "true" exclude-subfolder: ${{ needs.set-state.outputs.exclude_subfolder }} - - name: Delay purge - run: sleep 60s - shell: bash - name: Purge Fastly Cache uses: AdobeDocs/gatsby-fastly-purge-action@master with: fastly-token: ${{ secrets.AIO_FASTLY_TOKEN }} - fastly-url: '${{ secrets.AIO_FASTLY_PROD_URL }}${{ needs.set-state.outputs.path_prefix }}' + fastly-url: "${{ secrets.AIO_FASTLY_PROD_URL }}${{ needs.set-state.outputs.path_prefix }}" diff --git a/package.json b/package.json index 9ab631f7..091d68e8 100644 --- a/package.json +++ b/package.json @@ -12,7 +12,7 @@ "url": "https://github.com/icaraps" }, "dependencies": { - "@adobe/gatsby-theme-aio": "^4.10.4", + "@adobe/gatsby-theme-aio": "^4.14.4", "gatsby": "4.22.0", "react": "^17.0.2", "react-dom": "^17.0.2" diff --git a/yarn.lock b/yarn.lock index 4657845f..344eaf63 100644 --- a/yarn.lock +++ b/yarn.lock @@ -40,13 +40,14 @@ __metadata: languageName: node linkType: hard -"@adobe/gatsby-theme-aio@npm:^4.10.4": - version: 4.11.10 - resolution: "@adobe/gatsby-theme-aio@npm:4.11.10" +"@adobe/gatsby-theme-aio@npm:^4.14.4": + version: 4.14.4 + resolution: "@adobe/gatsby-theme-aio@npm:4.14.4" dependencies: "@adobe/focus-ring-polyfill": ^0.1.5 "@adobe/gatsby-source-github-file-contributors": ^0.3.1 "@adobe/prism-adobe": ^1.0.3 + "@adobe/react-spectrum": ^3.35.1 "@emotion/react": ^11.10.4 "@loadable/component": ^5.15.2 "@mdx-js/mdx": 1.6.22 @@ -115,7 +116,7 @@ __metadata: penpal: ^6.2.2 postcss: ^8.4.16 preact: ^10.11.0 - preact-render-to-string: ^5.2.4 + preact-render-to-string: ^6.5.5 prism-react-renderer: 1.3.5 prop-types: ^15.8.1 react-helmet: ^6.1.0 @@ -138,7 +139,7 @@ __metadata: gatsby: ^4.22.0 react: ^17.0.2 react-dom: ^17.0.2 - checksum: a18fc9b2ee86fdbb8f7f1d92f25f8190f3eb307581d32bd865d7ffa7d77c2bc60db23ff5a1e740238678332d7a4ecbffaeab606a2ab5502162223e02ca95eb3f + checksum: 846ee1128ccfee37bb36313ee594349369bba472f93ca7f6b6142b7ede79842f808f3458659abbbe7972171166a14674aa1860b8ca7539c1300a804f3794b54d languageName: node linkType: hard @@ -149,6 +150,96 @@ __metadata: languageName: node linkType: hard +"@adobe/react-spectrum-ui@npm:1.2.0": + version: 1.2.0 + resolution: "@adobe/react-spectrum-ui@npm:1.2.0" + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: 18ad87c76e2019f22fa9f18df22fc06cb99e27d46fc82ed6974a4cab1d04c6a223ded51fae95d0890069cb7c9a10add468e5e9c62b9b33ac9b5ab9de25ff12e5 + languageName: node + linkType: hard + +"@adobe/react-spectrum-workflow@npm:2.3.4": + version: 2.3.4 + resolution: "@adobe/react-spectrum-workflow@npm:2.3.4" + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: 1c008fec02f19160a6a0589f9647d29b9652322b087ba521ba7e890747a23c70268c2e58799977823a65a8c44d832162743e0ecb3b082614bc70ba59a6eac2fc + languageName: node + linkType: hard + +"@adobe/react-spectrum@npm:^3.35.1": + version: 3.35.1 + resolution: "@adobe/react-spectrum@npm:3.35.1" + dependencies: + "@internationalized/string": ^3.2.3 + "@react-aria/i18n": ^3.11.1 + "@react-aria/ssr": ^3.9.4 + "@react-aria/utils": ^3.24.1 + "@react-aria/visually-hidden": ^3.8.12 + "@react-spectrum/actionbar": ^3.4.5 + "@react-spectrum/actiongroup": ^3.10.5 + "@react-spectrum/avatar": ^3.0.12 + "@react-spectrum/badge": ^3.1.13 + "@react-spectrum/breadcrumbs": ^3.9.7 + "@react-spectrum/button": ^3.16.4 + "@react-spectrum/buttongroup": ^3.6.13 + "@react-spectrum/calendar": ^3.4.9 + "@react-spectrum/checkbox": ^3.9.6 + "@react-spectrum/combobox": ^3.12.5 + "@react-spectrum/contextualhelp": ^3.6.11 + "@react-spectrum/datepicker": ^3.9.6 + "@react-spectrum/dialog": ^3.8.11 + "@react-spectrum/divider": ^3.5.13 + "@react-spectrum/dnd": ^3.3.10 + "@react-spectrum/dropzone": ^3.0.1 + "@react-spectrum/filetrigger": ^3.0.1 + "@react-spectrum/form": ^3.7.6 + "@react-spectrum/icon": ^3.7.13 + "@react-spectrum/illustratedmessage": ^3.5.1 + "@react-spectrum/image": ^3.5.1 + "@react-spectrum/inlinealert": ^3.2.5 + "@react-spectrum/labeledvalue": ^3.1.14 + "@react-spectrum/layout": ^3.6.5 + "@react-spectrum/link": ^3.6.7 + "@react-spectrum/list": ^3.7.10 + "@react-spectrum/listbox": ^3.12.9 + "@react-spectrum/menu": ^3.19.1 + "@react-spectrum/meter": ^3.5.1 + "@react-spectrum/numberfield": ^3.9.3 + "@react-spectrum/overlays": ^5.6.1 + "@react-spectrum/picker": ^3.14.5 + "@react-spectrum/progress": ^3.7.7 + "@react-spectrum/provider": ^3.9.7 + "@react-spectrum/radio": ^3.7.6 + "@react-spectrum/searchfield": ^3.8.6 + "@react-spectrum/slider": ^3.6.9 + "@react-spectrum/statuslight": ^3.5.13 + "@react-spectrum/switch": ^3.5.5 + "@react-spectrum/table": ^3.12.10 + "@react-spectrum/tabs": ^3.8.10 + "@react-spectrum/tag": ^3.2.6 + "@react-spectrum/text": ^3.5.5 + "@react-spectrum/textfield": ^3.12.1 + "@react-spectrum/theme-dark": ^3.5.10 + "@react-spectrum/theme-default": ^3.5.10 + "@react-spectrum/theme-light": ^3.4.10 + "@react-spectrum/tooltip": ^3.6.7 + "@react-spectrum/view": ^3.6.10 + "@react-spectrum/well": ^3.4.13 + "@react-stately/collections": ^3.10.7 + "@react-stately/data": ^3.11.4 + "@react-types/shared": ^3.23.1 + client-only: ^0.0.1 + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: 856e4b720e44c0ad6027b02da01fdb22bd4532b222904dc05d4633f11a78bb959c9883808b746a4841d58c45884afb4fcd966077456cc9a156b685ad85477661 + languageName: node + linkType: hard + "@algolia/cache-browser-local-storage@npm:4.23.2": version: 4.23.2 resolution: "@algolia/cache-browser-local-storage@npm:4.23.2" @@ -1900,6 +1991,15 @@ __metadata: languageName: node linkType: hard +"@babel/runtime@npm:^7.5.5, @babel/runtime@npm:^7.8.7": + version: 7.24.8 + resolution: "@babel/runtime@npm:7.24.8" + dependencies: + regenerator-runtime: ^0.14.0 + checksum: 6b1e4230580f67a807ad054720812bbefbb024cc2adc1159d050acbb764c4c81c7ac5f7a042c48f578987c5edc2453c71039268df059058e9501fa6023d764b0 + languageName: node + linkType: hard + "@babel/template@npm:^7.12.7, @babel/template@npm:^7.16.7, @babel/template@npm:^7.22.15, @babel/template@npm:^7.24.0": version: 7.24.0 resolution: "@babel/template@npm:7.24.0" @@ -2147,6 +2247,55 @@ __metadata: languageName: node linkType: hard +"@formatjs/ecma402-abstract@npm:2.0.0": + version: 2.0.0 + resolution: "@formatjs/ecma402-abstract@npm:2.0.0" + dependencies: + "@formatjs/intl-localematcher": 0.5.4 + tslib: ^2.4.0 + checksum: 0bba3b4f1a966c72d3f53173d650294fe313825b6451396c1040fb92bb86b2f771729888a1dadbc0a0074ef809229033fe8ff17c86dcb07a8ad42253b0c3a269 + languageName: node + linkType: hard + +"@formatjs/fast-memoize@npm:2.2.0": + version: 2.2.0 + resolution: "@formatjs/fast-memoize@npm:2.2.0" + dependencies: + tslib: ^2.4.0 + checksum: 8697fe72a7ece252d600a7d08105f2a2f758e2dd96f54ac0a4c508b1205a559fc08835635e1f8e5ca9dcc3ee61ce1fca4a0e7047b402f29fc96051e293a280ff + languageName: node + linkType: hard + +"@formatjs/icu-messageformat-parser@npm:2.7.8": + version: 2.7.8 + resolution: "@formatjs/icu-messageformat-parser@npm:2.7.8" + dependencies: + "@formatjs/ecma402-abstract": 2.0.0 + "@formatjs/icu-skeleton-parser": 1.8.2 + tslib: ^2.4.0 + checksum: 404d6732653632eae3b10cfa70dc57c4fb0fe500c6ef9e687e938e4cb29e18b4e5d46633c88a2c06864328eb2f4713fbb6be404c6033682370d568971e2dda0d + languageName: node + linkType: hard + +"@formatjs/icu-skeleton-parser@npm:1.8.2": + version: 1.8.2 + resolution: "@formatjs/icu-skeleton-parser@npm:1.8.2" + dependencies: + "@formatjs/ecma402-abstract": 2.0.0 + tslib: ^2.4.0 + checksum: 8735322fa93ddd471822ba77400411660cb6221c87955cdcea159e8f9b72188106b4d4bf57d737d248810ae1974e1df4974914a6fb6045e91bf5ea22cc7fd30f + languageName: node + linkType: hard + +"@formatjs/intl-localematcher@npm:0.5.4": + version: 0.5.4 + resolution: "@formatjs/intl-localematcher@npm:0.5.4" + dependencies: + tslib: ^2.4.0 + checksum: a0af57874fcd163add5f7a0cb1c008e9b09feb1d24cbce1263379ae0393cddd6681197a7f2f512f351a97666fc8675ed52cc17d1834266ee8fc65e9edf3435f6 + languageName: node + linkType: hard + "@gatsbyjs/parcel-namer-relative-to-cwd@npm:1.7.0": version: 1.7.0 resolution: "@gatsbyjs/parcel-namer-relative-to-cwd@npm:1.7.0" @@ -2650,6 +2799,43 @@ __metadata: languageName: node linkType: hard +"@internationalized/date@npm:^3.5.4": + version: 3.5.4 + resolution: "@internationalized/date@npm:3.5.4" + dependencies: + "@swc/helpers": ^0.5.0 + checksum: df73fb4f11e5db918f5a76f94edcaadd34b67bd4160e8ee4e2a5f518e01cdfa7196fbcabd26bfa9d8376e4822a4a1c73d68fb08249cadfaaeba5bb1d41cff032 + languageName: node + linkType: hard + +"@internationalized/message@npm:^3.1.4": + version: 3.1.4 + resolution: "@internationalized/message@npm:3.1.4" + dependencies: + "@swc/helpers": ^0.5.0 + intl-messageformat: ^10.1.0 + checksum: 37990cf4fd666afe8d165f3c9042e88c2d95b4a03d6e67595a49d57aff938d19f91826c7c6e5cfa2863c3d8d555365e797d5979da575a835b533fd2e31876bef + languageName: node + linkType: hard + +"@internationalized/number@npm:^3.5.3": + version: 3.5.3 + resolution: "@internationalized/number@npm:3.5.3" + dependencies: + "@swc/helpers": ^0.5.0 + checksum: f905cb5302d5a84660fbe0264930fadf286c7a5860373c289863bc2b9d003690552743da2b3155d65e3e9fd0e49b83673caf49c306b9bab39d6e871b6777c588 + languageName: node + linkType: hard + +"@internationalized/string@npm:^3.2.3": + version: 3.2.3 + resolution: "@internationalized/string@npm:3.2.3" + dependencies: + "@swc/helpers": ^0.5.0 + checksum: aad1dd1de52fa48f17e41ad0a502bab621a08aadb8ccfc02512211d05f7111920d094b49811394a930542a98fe22522c2b5818f6d64eb38aca9638b7b4f11ccd + languageName: node + linkType: hard + "@isaacs/cliui@npm:^8.0.2": version: 8.0.2 resolution: "@isaacs/cliui@npm:8.0.2" @@ -3840,236 +4026,3064 @@ __metadata: languageName: node linkType: hard -"@parcel/watcher-android-arm64@npm:2.4.1": - version: 2.4.1 - resolution: "@parcel/watcher-android-arm64@npm:2.4.1" - conditions: os=android & cpu=arm64 +"@parcel/watcher-android-arm64@npm:2.4.1": + version: 2.4.1 + resolution: "@parcel/watcher-android-arm64@npm:2.4.1" + conditions: os=android & cpu=arm64 + languageName: node + linkType: hard + +"@parcel/watcher-darwin-arm64@npm:2.4.1": + version: 2.4.1 + resolution: "@parcel/watcher-darwin-arm64@npm:2.4.1" + conditions: os=darwin & cpu=arm64 + languageName: node + linkType: hard + +"@parcel/watcher-darwin-x64@npm:2.4.1": + version: 2.4.1 + resolution: "@parcel/watcher-darwin-x64@npm:2.4.1" + conditions: os=darwin & cpu=x64 + languageName: node + linkType: hard + +"@parcel/watcher-freebsd-x64@npm:2.4.1": + version: 2.4.1 + resolution: "@parcel/watcher-freebsd-x64@npm:2.4.1" + conditions: os=freebsd & cpu=x64 + languageName: node + linkType: hard + +"@parcel/watcher-linux-arm-glibc@npm:2.4.1": + version: 2.4.1 + resolution: "@parcel/watcher-linux-arm-glibc@npm:2.4.1" + conditions: os=linux & cpu=arm & libc=glibc + languageName: node + linkType: hard + +"@parcel/watcher-linux-arm64-glibc@npm:2.4.1": + version: 2.4.1 + resolution: "@parcel/watcher-linux-arm64-glibc@npm:2.4.1" + conditions: os=linux & cpu=arm64 & libc=glibc + languageName: node + linkType: hard + +"@parcel/watcher-linux-arm64-musl@npm:2.4.1": + version: 2.4.1 + resolution: "@parcel/watcher-linux-arm64-musl@npm:2.4.1" + conditions: os=linux & cpu=arm64 & libc=musl + languageName: node + linkType: hard + +"@parcel/watcher-linux-x64-glibc@npm:2.4.1": + version: 2.4.1 + resolution: "@parcel/watcher-linux-x64-glibc@npm:2.4.1" + conditions: os=linux & cpu=x64 & libc=glibc + languageName: node + linkType: hard + +"@parcel/watcher-linux-x64-musl@npm:2.4.1": + version: 2.4.1 + resolution: "@parcel/watcher-linux-x64-musl@npm:2.4.1" + conditions: os=linux & cpu=x64 & libc=musl + languageName: node + linkType: hard + +"@parcel/watcher-win32-arm64@npm:2.4.1": + version: 2.4.1 + resolution: "@parcel/watcher-win32-arm64@npm:2.4.1" + conditions: os=win32 & cpu=arm64 + languageName: node + linkType: hard + +"@parcel/watcher-win32-ia32@npm:2.4.1": + version: 2.4.1 + resolution: "@parcel/watcher-win32-ia32@npm:2.4.1" + conditions: os=win32 & cpu=ia32 + languageName: node + linkType: hard + +"@parcel/watcher-win32-x64@npm:2.4.1": + version: 2.4.1 + resolution: "@parcel/watcher-win32-x64@npm:2.4.1" + conditions: os=win32 & cpu=x64 + languageName: node + linkType: hard + +"@parcel/watcher@npm:^2.0.0": + version: 2.4.1 + resolution: "@parcel/watcher@npm:2.4.1" + dependencies: + "@parcel/watcher-android-arm64": 2.4.1 + "@parcel/watcher-darwin-arm64": 2.4.1 + "@parcel/watcher-darwin-x64": 2.4.1 + "@parcel/watcher-freebsd-x64": 2.4.1 + "@parcel/watcher-linux-arm-glibc": 2.4.1 + "@parcel/watcher-linux-arm64-glibc": 2.4.1 + "@parcel/watcher-linux-arm64-musl": 2.4.1 + "@parcel/watcher-linux-x64-glibc": 2.4.1 + "@parcel/watcher-linux-x64-musl": 2.4.1 + "@parcel/watcher-win32-arm64": 2.4.1 + "@parcel/watcher-win32-ia32": 2.4.1 + "@parcel/watcher-win32-x64": 2.4.1 + detect-libc: ^1.0.3 + is-glob: ^4.0.3 + micromatch: ^4.0.5 + node-addon-api: ^7.0.0 + node-gyp: latest + dependenciesMeta: + "@parcel/watcher-android-arm64": + optional: true + "@parcel/watcher-darwin-arm64": + optional: true + "@parcel/watcher-darwin-x64": + optional: true + "@parcel/watcher-freebsd-x64": + optional: true + "@parcel/watcher-linux-arm-glibc": + optional: true + "@parcel/watcher-linux-arm64-glibc": + optional: true + "@parcel/watcher-linux-arm64-musl": + optional: true + "@parcel/watcher-linux-x64-glibc": + optional: true + "@parcel/watcher-linux-x64-musl": + optional: true + "@parcel/watcher-win32-arm64": + optional: true + "@parcel/watcher-win32-ia32": + optional: true + "@parcel/watcher-win32-x64": + optional: true + checksum: 4da70551da27e565c726b0bbd5ba5afcb2bca36dfd8619a649f0eaa41f693ddd1d630c36e53bc083895d71a3e28bc4199013e557cd13c7af6ccccab28ceecbff + languageName: node + linkType: hard + +"@parcel/workers@npm:2.6.2": + version: 2.6.2 + resolution: "@parcel/workers@npm:2.6.2" + dependencies: + "@parcel/diagnostic": 2.6.2 + "@parcel/logger": 2.6.2 + "@parcel/types": 2.6.2 + "@parcel/utils": 2.6.2 + chrome-trace-event: ^1.0.2 + nullthrows: ^1.1.1 + peerDependencies: + "@parcel/core": ^2.6.2 + checksum: 92b65cd3fde225dcd377f1f529caeb0d8ee56a9aeef3785716b1ad210132e5dc1b6bd9b7c4c6920094e0030c6aad9cc42d5dbf7b4fb0fb4668eedfd332e0b242 + languageName: node + linkType: hard + +"@pkgjs/parseargs@npm:^0.11.0": + version: 0.11.0 + resolution: "@pkgjs/parseargs@npm:0.11.0" + checksum: 6ad6a00fc4f2f2cfc6bff76fb1d88b8ee20bc0601e18ebb01b6d4be583733a860239a521a7fbca73b612e66705078809483549d2b18f370eb346c5155c8e4a0f + languageName: node + linkType: hard + +"@pmmmwh/react-refresh-webpack-plugin@npm:^0.5.7": + version: 0.5.11 + resolution: "@pmmmwh/react-refresh-webpack-plugin@npm:0.5.11" + dependencies: + ansi-html-community: ^0.0.8 + common-path-prefix: ^3.0.0 + core-js-pure: ^3.23.3 + error-stack-parser: ^2.0.6 + find-up: ^5.0.0 + html-entities: ^2.1.0 + loader-utils: ^2.0.4 + schema-utils: ^3.0.0 + source-map: ^0.7.3 + peerDependencies: + "@types/webpack": 4.x || 5.x + react-refresh: ">=0.10.0 <1.0.0" + sockjs-client: ^1.4.0 + type-fest: ">=0.17.0 <5.0.0" + webpack: ">=4.43.0 <6.0.0" + webpack-dev-server: 3.x || 4.x + webpack-hot-middleware: 2.x + webpack-plugin-serve: 0.x || 1.x + peerDependenciesMeta: + "@types/webpack": + optional: true + sockjs-client: + optional: true + type-fest: + optional: true + webpack-dev-server: + optional: true + webpack-hot-middleware: + optional: true + webpack-plugin-serve: + optional: true + checksum: a82eced9519f4dcac424acae719f819ab4150bfcf2874ac7daaf25a4f1c409e3d8b9d693fea0c686c24d520a5473756df32da90d8b89739670f8f8084c600bb4 + languageName: node + linkType: hard + +"@prefresh/babel-plugin@npm:^0.4.3": + version: 0.4.4 + resolution: "@prefresh/babel-plugin@npm:0.4.4" + checksum: 1cd7e9b27936fd8947ecd7e4da70abd05935f44840af3d054ad87638d38ea61f304c45ff7610a4d56bde72e260ddee869cc45806738738edebe7d5a0fe96059a + languageName: node + linkType: hard + +"@prefresh/core@npm:^1.3.3": + version: 1.5.2 + resolution: "@prefresh/core@npm:1.5.2" + peerDependencies: + preact: ^10.0.0 + checksum: f8959d005990d295ed73d15775c1900fb503f238993304dad3cb5a931fc5b0539eb62776efa01eb7e0c712ee032cb85a913cd13c45c069923c7b20dbd270e378 + languageName: node + linkType: hard + +"@prefresh/utils@npm:^1.1.2": + version: 1.2.0 + resolution: "@prefresh/utils@npm:1.2.0" + checksum: 003bb710a6d5ca5e4886a29eb7245332d4f605a90de4eb7b77df35884a842c29143f827f6aa088e69cc2ea07f70d89148d4a730f56549640425177e24d14a60e + languageName: node + linkType: hard + +"@prefresh/webpack@npm:^3.3.4": + version: 3.3.4 + resolution: "@prefresh/webpack@npm:3.3.4" + dependencies: + "@prefresh/core": ^1.3.3 + "@prefresh/utils": ^1.1.2 + peerDependencies: + "@prefresh/babel-plugin": ^0.4.0 + preact: ^10.4.0 + webpack: ^4.0.0 || ^5.0.0 + checksum: 49d2184856f7c3335d339b3cff52c85b9524c6b215c120f701bfc7053781adea8db8908f158a756a9234af09acedff101fd087f4adcda367b38ca6403a9e5442 + languageName: node + linkType: hard + +"@react-aria/actiongroup@npm:^3.7.5": + version: 3.7.5 + resolution: "@react-aria/actiongroup@npm:3.7.5" + dependencies: + "@react-aria/focus": ^3.17.1 + "@react-aria/i18n": ^3.11.1 + "@react-aria/interactions": ^3.21.3 + "@react-aria/utils": ^3.24.1 + "@react-stately/list": ^3.10.5 + "@react-types/actiongroup": ^3.4.9 + "@react-types/shared": ^3.23.1 + "@swc/helpers": ^0.5.0 + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: 12ea704b87d03c181ba16e0e6e6cbff75d47a433b944358c37e229fc34881f0134d66ae06968ba2cb150df1646ac0d0f3fc28d36499ab306d147cfa893c7649a + languageName: node + linkType: hard + +"@react-aria/breadcrumbs@npm:^3.5.13": + version: 3.5.13 + resolution: "@react-aria/breadcrumbs@npm:3.5.13" + dependencies: + "@react-aria/i18n": ^3.11.1 + "@react-aria/link": ^3.7.1 + "@react-aria/utils": ^3.24.1 + "@react-types/breadcrumbs": ^3.7.5 + "@react-types/shared": ^3.23.1 + "@swc/helpers": ^0.5.0 + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: 8c285dac2838500f7b77e8fde5d4b137b89154cebc2977e49556da23c49fcddbb5b433a7d19f2c2d1c695c570753411a3ea4eae3da2cf9a9c8f7cef9a7513ed1 + languageName: node + linkType: hard + +"@react-aria/button@npm:^3.9.5": + version: 3.9.5 + resolution: "@react-aria/button@npm:3.9.5" + dependencies: + "@react-aria/focus": ^3.17.1 + "@react-aria/interactions": ^3.21.3 + "@react-aria/utils": ^3.24.1 + "@react-stately/toggle": ^3.7.4 + "@react-types/button": ^3.9.4 + "@react-types/shared": ^3.23.1 + "@swc/helpers": ^0.5.0 + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: b2954a637d6718cf25be00ffe82369c20c1a5306c3d4fe09775a8ad56f9c7fc3a1312db8421bf840beab4e299ad121147d70a8cf99f58865f86d7977856aaee2 + languageName: node + linkType: hard + +"@react-aria/calendar@npm:^3.5.8": + version: 3.5.8 + resolution: "@react-aria/calendar@npm:3.5.8" + dependencies: + "@internationalized/date": ^3.5.4 + "@react-aria/i18n": ^3.11.1 + "@react-aria/interactions": ^3.21.3 + "@react-aria/live-announcer": ^3.3.4 + "@react-aria/utils": ^3.24.1 + "@react-stately/calendar": ^3.5.1 + "@react-types/button": ^3.9.4 + "@react-types/calendar": ^3.4.6 + "@react-types/shared": ^3.23.1 + "@swc/helpers": ^0.5.0 + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: 0458f676468468b1610db0001654de5b62fe9d8487b9bcca6e72758a116189391d43ffda7fd7ee6692502be9ec8ec63e9e0cef7574d5ff7124ef402c924bd887 + languageName: node + linkType: hard + +"@react-aria/checkbox@npm:^3.14.3": + version: 3.14.3 + resolution: "@react-aria/checkbox@npm:3.14.3" + dependencies: + "@react-aria/form": ^3.0.5 + "@react-aria/interactions": ^3.21.3 + "@react-aria/label": ^3.7.8 + "@react-aria/toggle": ^3.10.4 + "@react-aria/utils": ^3.24.1 + "@react-stately/checkbox": ^3.6.5 + "@react-stately/form": ^3.0.3 + "@react-stately/toggle": ^3.7.4 + "@react-types/checkbox": ^3.8.1 + "@react-types/shared": ^3.23.1 + "@swc/helpers": ^0.5.0 + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: 7e58ed1eb31dc4671165072d9788627653844c8f91949b36411c03a8eea3dc78630eedae0735aa90fc172a45dc5899181806b389bc77210144a069d26a0f4c0b + languageName: node + linkType: hard + +"@react-aria/color@npm:3.0.0-beta.33": + version: 3.0.0-beta.33 + resolution: "@react-aria/color@npm:3.0.0-beta.33" + dependencies: + "@react-aria/i18n": ^3.11.1 + "@react-aria/interactions": ^3.21.3 + "@react-aria/numberfield": ^3.11.3 + "@react-aria/slider": ^3.7.8 + "@react-aria/spinbutton": ^3.6.5 + "@react-aria/textfield": ^3.14.5 + "@react-aria/utils": ^3.24.1 + "@react-aria/visually-hidden": ^3.8.12 + "@react-stately/color": ^3.6.1 + "@react-stately/form": ^3.0.3 + "@react-types/color": 3.0.0-beta.25 + "@react-types/shared": ^3.23.1 + "@swc/helpers": ^0.5.0 + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: d5c0c74273c54267ffa8122f35e0234a518f770ffd8c750b9f7a8cdfc2d29b0a87740abefb2a126572b890d6f2471a1cdf267cda697436bbd45e1645ceca5787 + languageName: node + linkType: hard + +"@react-aria/combobox@npm:^3.9.1": + version: 3.9.1 + resolution: "@react-aria/combobox@npm:3.9.1" + dependencies: + "@react-aria/i18n": ^3.11.1 + "@react-aria/listbox": ^3.12.1 + "@react-aria/live-announcer": ^3.3.4 + "@react-aria/menu": ^3.14.1 + "@react-aria/overlays": ^3.22.1 + "@react-aria/selection": ^3.18.1 + "@react-aria/textfield": ^3.14.5 + "@react-aria/utils": ^3.24.1 + "@react-stately/collections": ^3.10.7 + "@react-stately/combobox": ^3.8.4 + "@react-stately/form": ^3.0.3 + "@react-types/button": ^3.9.4 + "@react-types/combobox": ^3.11.1 + "@react-types/shared": ^3.23.1 + "@swc/helpers": ^0.5.0 + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: 466311fa574f9ca89e07a084fde8d308faf999596e4cc898ca6c1b9de4952a7c263f5f93f3904b3182e93d8c8cd5bb998fed55a7af5e3921e424ee9fed524795 + languageName: node + linkType: hard + +"@react-aria/datepicker@npm:^3.10.1": + version: 3.10.1 + resolution: "@react-aria/datepicker@npm:3.10.1" + dependencies: + "@internationalized/date": ^3.5.4 + "@internationalized/number": ^3.5.3 + "@internationalized/string": ^3.2.3 + "@react-aria/focus": ^3.17.1 + "@react-aria/form": ^3.0.5 + "@react-aria/i18n": ^3.11.1 + "@react-aria/interactions": ^3.21.3 + "@react-aria/label": ^3.7.8 + "@react-aria/spinbutton": ^3.6.5 + "@react-aria/utils": ^3.24.1 + "@react-stately/datepicker": ^3.9.4 + "@react-stately/form": ^3.0.3 + "@react-types/button": ^3.9.4 + "@react-types/calendar": ^3.4.6 + "@react-types/datepicker": ^3.7.4 + "@react-types/dialog": ^3.5.10 + "@react-types/shared": ^3.23.1 + "@swc/helpers": ^0.5.0 + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: 127bb202c57b96d02df27992acd96a6a4414ca2077ed07b42e756705e033fde9c693b6ca08f30f5e9f0aa0a4109ec4e52f00c0f1533f58b3512d2cd71d9ebce1 + languageName: node + linkType: hard + +"@react-aria/dialog@npm:^3.5.14": + version: 3.5.14 + resolution: "@react-aria/dialog@npm:3.5.14" + dependencies: + "@react-aria/focus": ^3.17.1 + "@react-aria/overlays": ^3.22.1 + "@react-aria/utils": ^3.24.1 + "@react-types/dialog": ^3.5.10 + "@react-types/shared": ^3.23.1 + "@swc/helpers": ^0.5.0 + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: 5b4db6b35b45cd0ce3298136c12ae4b81f658bed5604caa2d5dc3281c531a108c15a5873eb69c0a3a6a59b1e3cad4dada1bb9590807a866affa5ebd19d11f5ce + languageName: node + linkType: hard + +"@react-aria/dnd@npm:^3.6.1": + version: 3.6.1 + resolution: "@react-aria/dnd@npm:3.6.1" + dependencies: + "@internationalized/string": ^3.2.3 + "@react-aria/i18n": ^3.11.1 + "@react-aria/interactions": ^3.21.3 + "@react-aria/live-announcer": ^3.3.4 + "@react-aria/overlays": ^3.22.1 + "@react-aria/utils": ^3.24.1 + "@react-stately/dnd": ^3.3.1 + "@react-types/button": ^3.9.4 + "@react-types/shared": ^3.23.1 + "@swc/helpers": ^0.5.0 + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: ebb56a3560ca27f729de2277fa61f3c0ac30e15df10a4c0f51b6dd476d923b4cb3adf3d25381802efdeea8589407bbad171116440b4dc9f0ce9e6ae6ebbeb97f + languageName: node + linkType: hard + +"@react-aria/focus@npm:^3.17.1": + version: 3.17.1 + resolution: "@react-aria/focus@npm:3.17.1" + dependencies: + "@react-aria/interactions": ^3.21.3 + "@react-aria/utils": ^3.24.1 + "@react-types/shared": ^3.23.1 + "@swc/helpers": ^0.5.0 + clsx: ^2.0.0 + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: 2855d29d3d88d5d3a5c2c4bba480dd8fc81cc48647191d5cd7380365ef353ab1760bd48669011b9b6b7dcff81fd833715af36d5a5900c79a8461a6e1370bb9e7 + languageName: node + linkType: hard + +"@react-aria/form@npm:^3.0.5": + version: 3.0.5 + resolution: "@react-aria/form@npm:3.0.5" + dependencies: + "@react-aria/interactions": ^3.21.3 + "@react-aria/utils": ^3.24.1 + "@react-stately/form": ^3.0.3 + "@react-types/shared": ^3.23.1 + "@swc/helpers": ^0.5.0 + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: 7e86489a34bdf5de6b1a01860a7e2ca95ac7f8bdda4da8b8573558bf7dacd1ef5613eff5889f16a5fc1695d362b249cbcda5b4a775a616cc923eb1d951d88737 + languageName: node + linkType: hard + +"@react-aria/grid@npm:^3.9.1": + version: 3.9.1 + resolution: "@react-aria/grid@npm:3.9.1" + dependencies: + "@react-aria/focus": ^3.17.1 + "@react-aria/i18n": ^3.11.1 + "@react-aria/interactions": ^3.21.3 + "@react-aria/live-announcer": ^3.3.4 + "@react-aria/selection": ^3.18.1 + "@react-aria/utils": ^3.24.1 + "@react-stately/collections": ^3.10.7 + "@react-stately/grid": ^3.8.7 + "@react-stately/selection": ^3.15.1 + "@react-stately/virtualizer": ^3.7.1 + "@react-types/checkbox": ^3.8.1 + "@react-types/grid": ^3.2.6 + "@react-types/shared": ^3.23.1 + "@swc/helpers": ^0.5.0 + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: 4f9f8274d98e26e1634c845f0769db4470d6417febf278bf6b22af40bacf2a6c465220ba64f578fb1ecbef88dbde40ec047f2973b3c071b30cad4c760d043dbb + languageName: node + linkType: hard + +"@react-aria/gridlist@npm:^3.8.1": + version: 3.8.1 + resolution: "@react-aria/gridlist@npm:3.8.1" + dependencies: + "@react-aria/focus": ^3.17.1 + "@react-aria/grid": ^3.9.1 + "@react-aria/i18n": ^3.11.1 + "@react-aria/interactions": ^3.21.3 + "@react-aria/selection": ^3.18.1 + "@react-aria/utils": ^3.24.1 + "@react-stately/collections": ^3.10.7 + "@react-stately/list": ^3.10.5 + "@react-stately/tree": ^3.8.1 + "@react-types/shared": ^3.23.1 + "@swc/helpers": ^0.5.0 + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: 8ec69fdb6bb25160c5ff84363d96cd28bd1d3e2809f0599f67e1ab9257376b99afa7e718a7dbe18b02450b19918024e9e7cbac6f399d33df74727653c89ddccf + languageName: node + linkType: hard + +"@react-aria/i18n@npm:^3.11.1": + version: 3.11.1 + resolution: "@react-aria/i18n@npm:3.11.1" + dependencies: + "@internationalized/date": ^3.5.4 + "@internationalized/message": ^3.1.4 + "@internationalized/number": ^3.5.3 + "@internationalized/string": ^3.2.3 + "@react-aria/ssr": ^3.9.4 + "@react-aria/utils": ^3.24.1 + "@react-types/shared": ^3.23.1 + "@swc/helpers": ^0.5.0 + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: 5c115f6e0b227f973671d8fe65f4d23de4bf4e805915749218758202e0ed6701ead1641ab25124eb67e5e653bed09312d3343cfe230f5045f1a5779f7205662d + languageName: node + linkType: hard + +"@react-aria/interactions@npm:^3.21.3": + version: 3.21.3 + resolution: "@react-aria/interactions@npm:3.21.3" + dependencies: + "@react-aria/ssr": ^3.9.4 + "@react-aria/utils": ^3.24.1 + "@react-types/shared": ^3.23.1 + "@swc/helpers": ^0.5.0 + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: 0ee5346601420efc05e485d51c563a2c3c4bb2b5c4004ce9599224043fb725e5dbcf8e937fe56540e252f846498c8ebe889ff0adf54ab807e6dee01abb54c7e9 + languageName: node + linkType: hard + +"@react-aria/label@npm:^3.7.8": + version: 3.7.8 + resolution: "@react-aria/label@npm:3.7.8" + dependencies: + "@react-aria/utils": ^3.24.1 + "@react-types/shared": ^3.23.1 + "@swc/helpers": ^0.5.0 + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: 51eb60b8eb5a0aebeaca44a88fa4dc140daeac31bf3255e47132141314637b2430bcdae3d7105b1e52af8ef1f284e1b1c48159af52bb406c0aa064a3d5571291 + languageName: node + linkType: hard + +"@react-aria/link@npm:^3.7.1": + version: 3.7.1 + resolution: "@react-aria/link@npm:3.7.1" + dependencies: + "@react-aria/focus": ^3.17.1 + "@react-aria/interactions": ^3.21.3 + "@react-aria/utils": ^3.24.1 + "@react-types/link": ^3.5.5 + "@react-types/shared": ^3.23.1 + "@swc/helpers": ^0.5.0 + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: dd1c59e7687364f9a0a304969fcf36d284e380afc65046c0787b2243cd77e8242c690761320086f7be16c09dbfe4fd85c15b85b6498438f48322bad35f5737ec + languageName: node + linkType: hard + +"@react-aria/listbox@npm:^3.12.1": + version: 3.12.1 + resolution: "@react-aria/listbox@npm:3.12.1" + dependencies: + "@react-aria/interactions": ^3.21.3 + "@react-aria/label": ^3.7.8 + "@react-aria/selection": ^3.18.1 + "@react-aria/utils": ^3.24.1 + "@react-stately/collections": ^3.10.7 + "@react-stately/list": ^3.10.5 + "@react-types/listbox": ^3.4.9 + "@react-types/shared": ^3.23.1 + "@swc/helpers": ^0.5.0 + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: 11f7f68d534b6520c0c186291d6cf09fa199beaa0be405002f94512063de9e44ed4b33bc58c0e7e95ab3c93f815edff72d3f678557ca33c037e9267d2d57ef27 + languageName: node + linkType: hard + +"@react-aria/live-announcer@npm:^3.3.4": + version: 3.3.4 + resolution: "@react-aria/live-announcer@npm:3.3.4" + dependencies: + "@swc/helpers": ^0.5.0 + checksum: f216c6049ea77bcecec17cfbb1453e59b2b6034aa03edc6e9df74ab162a1f4197e7b07fb71b086a3b074981ef3171706f7fec4b9877901b7243c16321696a64c + languageName: node + linkType: hard + +"@react-aria/menu@npm:^3.14.1": + version: 3.14.1 + resolution: "@react-aria/menu@npm:3.14.1" + dependencies: + "@react-aria/focus": ^3.17.1 + "@react-aria/i18n": ^3.11.1 + "@react-aria/interactions": ^3.21.3 + "@react-aria/overlays": ^3.22.1 + "@react-aria/selection": ^3.18.1 + "@react-aria/utils": ^3.24.1 + "@react-stately/collections": ^3.10.7 + "@react-stately/menu": ^3.7.1 + "@react-stately/tree": ^3.8.1 + "@react-types/button": ^3.9.4 + "@react-types/menu": ^3.9.9 + "@react-types/shared": ^3.23.1 + "@swc/helpers": ^0.5.0 + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: 16749e0df95f3b91cf507078a8b88d28dd9c5f3d7fe28a951e5e1b4be9eefbd9434f02ad351c841798df8bd546c2de993952ad3a09cbd8302a0da04508f0eb39 + languageName: node + linkType: hard + +"@react-aria/meter@npm:^3.4.13": + version: 3.4.13 + resolution: "@react-aria/meter@npm:3.4.13" + dependencies: + "@react-aria/progress": ^3.4.13 + "@react-types/meter": ^3.4.1 + "@react-types/shared": ^3.23.1 + "@swc/helpers": ^0.5.0 + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: 42a031da8538bd791a4d2b5805136847fa6d60f043ff75cc134d8dd24cf2a19137d50fbfc717518c2aee2e18397a3be591daee0ae010c580c0a92cdfce10afbc + languageName: node + linkType: hard + +"@react-aria/numberfield@npm:^3.11.3": + version: 3.11.3 + resolution: "@react-aria/numberfield@npm:3.11.3" + dependencies: + "@react-aria/i18n": ^3.11.1 + "@react-aria/interactions": ^3.21.3 + "@react-aria/spinbutton": ^3.6.5 + "@react-aria/textfield": ^3.14.5 + "@react-aria/utils": ^3.24.1 + "@react-stately/form": ^3.0.3 + "@react-stately/numberfield": ^3.9.3 + "@react-types/button": ^3.9.4 + "@react-types/numberfield": ^3.8.3 + "@react-types/shared": ^3.23.1 + "@swc/helpers": ^0.5.0 + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: 63b0c1c1238e4a3b63058fb60174493e9f6ed370694a1c2ea2b04d3920367dfe16637834b3ccb65e30ebe2219786b9e585e26960e31166a4f8193715c3e75dde + languageName: node + linkType: hard + +"@react-aria/overlays@npm:^3.22.1": + version: 3.22.1 + resolution: "@react-aria/overlays@npm:3.22.1" + dependencies: + "@react-aria/focus": ^3.17.1 + "@react-aria/i18n": ^3.11.1 + "@react-aria/interactions": ^3.21.3 + "@react-aria/ssr": ^3.9.4 + "@react-aria/utils": ^3.24.1 + "@react-aria/visually-hidden": ^3.8.12 + "@react-stately/overlays": ^3.6.7 + "@react-types/button": ^3.9.4 + "@react-types/overlays": ^3.8.7 + "@react-types/shared": ^3.23.1 + "@swc/helpers": ^0.5.0 + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: 14a81edee5d2d2af05d21f209c712e4838753aaec7ad7bea4d362a2c354c70cb7f5b2e70cf549ce644f5849af1be7721550cfa577e973d4241605f55ab916115 + languageName: node + linkType: hard + +"@react-aria/progress@npm:^3.4.13": + version: 3.4.13 + resolution: "@react-aria/progress@npm:3.4.13" + dependencies: + "@react-aria/i18n": ^3.11.1 + "@react-aria/label": ^3.7.8 + "@react-aria/utils": ^3.24.1 + "@react-types/progress": ^3.5.4 + "@react-types/shared": ^3.23.1 + "@swc/helpers": ^0.5.0 + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: db76f5ea818038b5f055ffec6e5fc5fb615af7b8a881d583698067523e80e154e0ef25d41d5551ade5126d6599e77a79b92791e029ccfae032e080ce420541d7 + languageName: node + linkType: hard + +"@react-aria/radio@npm:^3.10.4": + version: 3.10.4 + resolution: "@react-aria/radio@npm:3.10.4" + dependencies: + "@react-aria/focus": ^3.17.1 + "@react-aria/form": ^3.0.5 + "@react-aria/i18n": ^3.11.1 + "@react-aria/interactions": ^3.21.3 + "@react-aria/label": ^3.7.8 + "@react-aria/utils": ^3.24.1 + "@react-stately/radio": ^3.10.4 + "@react-types/radio": ^3.8.1 + "@react-types/shared": ^3.23.1 + "@swc/helpers": ^0.5.0 + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: 7c51bc40b3c547def84af5546b7c854b97f4836325177d04bb5f4364939dcda9c5d14e2f099bd86f9e38ad925142894dbe93dc6fe1cdf3acf58c697f4fe6c516 + languageName: node + linkType: hard + +"@react-aria/searchfield@npm:^3.7.5": + version: 3.7.5 + resolution: "@react-aria/searchfield@npm:3.7.5" + dependencies: + "@react-aria/i18n": ^3.11.1 + "@react-aria/textfield": ^3.14.5 + "@react-aria/utils": ^3.24.1 + "@react-stately/searchfield": ^3.5.3 + "@react-types/button": ^3.9.4 + "@react-types/searchfield": ^3.5.5 + "@react-types/shared": ^3.23.1 + "@swc/helpers": ^0.5.0 + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: 699751f6399e499052d889f2178bd4cb1ff1baef66ef4926efd255bf9c7f9279d13156eb808591e3c142ca67d878c957298a0e24d45ed218dc9dc7553c45c62d + languageName: node + linkType: hard + +"@react-aria/select@npm:^3.14.5": + version: 3.14.5 + resolution: "@react-aria/select@npm:3.14.5" + dependencies: + "@react-aria/form": ^3.0.5 + "@react-aria/i18n": ^3.11.1 + "@react-aria/interactions": ^3.21.3 + "@react-aria/label": ^3.7.8 + "@react-aria/listbox": ^3.12.1 + "@react-aria/menu": ^3.14.1 + "@react-aria/selection": ^3.18.1 + "@react-aria/utils": ^3.24.1 + "@react-aria/visually-hidden": ^3.8.12 + "@react-stately/select": ^3.6.4 + "@react-types/button": ^3.9.4 + "@react-types/select": ^3.9.4 + "@react-types/shared": ^3.23.1 + "@swc/helpers": ^0.5.0 + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: 97154245b6ea6d14c527f1aaf3243ea06501d12f270925a666a231844cce488be51f3c089c5282d5578ccd507e3aebcdcec8cde40da5bb2da937199e01672d7e + languageName: node + linkType: hard + +"@react-aria/selection@npm:^3.18.1": + version: 3.18.1 + resolution: "@react-aria/selection@npm:3.18.1" + dependencies: + "@react-aria/focus": ^3.17.1 + "@react-aria/i18n": ^3.11.1 + "@react-aria/interactions": ^3.21.3 + "@react-aria/utils": ^3.24.1 + "@react-stately/selection": ^3.15.1 + "@react-types/shared": ^3.23.1 + "@swc/helpers": ^0.5.0 + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: 7ed29bd7ebd3a517ec1a049ad36390e0f2ccd41fbea3d826195e895e690b62fe440df96a040cbc8dcaf27eef5cb623116fc05bc995c935b45dd96ca175fd5acd + languageName: node + linkType: hard + +"@react-aria/separator@npm:^3.3.13": + version: 3.3.13 + resolution: "@react-aria/separator@npm:3.3.13" + dependencies: + "@react-aria/utils": ^3.24.1 + "@react-types/shared": ^3.23.1 + "@swc/helpers": ^0.5.0 + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: 85d6ec8a9835834ffdfa4686ae78ead9d124b79a56e57a289da66b4f822371ae85192f0638386b059bff112d7321b7923ac9886db1dede8d921ae10ebf2c1e39 + languageName: node + linkType: hard + +"@react-aria/slider@npm:^3.7.8": + version: 3.7.8 + resolution: "@react-aria/slider@npm:3.7.8" + dependencies: + "@react-aria/focus": ^3.17.1 + "@react-aria/i18n": ^3.11.1 + "@react-aria/interactions": ^3.21.3 + "@react-aria/label": ^3.7.8 + "@react-aria/utils": ^3.24.1 + "@react-stately/slider": ^3.5.4 + "@react-types/shared": ^3.23.1 + "@react-types/slider": ^3.7.3 + "@swc/helpers": ^0.5.0 + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: 107931f11d827e821c230d651a86c885cd7d63bab7fe6a621881036ca99f580c667daf60d143de8dc9f22595c39eb9d2c1ae468fd9f840ebb44b53c611446436 + languageName: node + linkType: hard + +"@react-aria/spinbutton@npm:^3.6.5": + version: 3.6.5 + resolution: "@react-aria/spinbutton@npm:3.6.5" + dependencies: + "@react-aria/i18n": ^3.11.1 + "@react-aria/live-announcer": ^3.3.4 + "@react-aria/utils": ^3.24.1 + "@react-types/button": ^3.9.4 + "@react-types/shared": ^3.23.1 + "@swc/helpers": ^0.5.0 + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: 256c848189d6be9d5e83641e608464cf3007116a7918ec39689950371377b61186bd9f84994434058b837539d7ccde6ab3b005ddb3cb44912066d62ecfc8c1f2 + languageName: node + linkType: hard + +"@react-aria/ssr@npm:^3.9.4": + version: 3.9.4 + resolution: "@react-aria/ssr@npm:3.9.4" + dependencies: + "@swc/helpers": ^0.5.0 + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: 503669ee9105d6dcf9ef1fb5f3fbfccad28e1ebae0ce707e9272da2ec5b1bcd0f3a725ab340b619177def9e238482274c901600687340d58a622ad14bbd4298b + languageName: node + linkType: hard + +"@react-aria/switch@npm:^3.6.4": + version: 3.6.4 + resolution: "@react-aria/switch@npm:3.6.4" + dependencies: + "@react-aria/toggle": ^3.10.4 + "@react-stately/toggle": ^3.7.4 + "@react-types/switch": ^3.5.3 + "@swc/helpers": ^0.5.0 + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: 392542a116ba244b8822bfcb1d28e844ba48758df1540fceb4405a833eef191ac11f24a8c5751c0b30b7a67f895c5d9a070265c27d5d56af14084a06bd45d988 + languageName: node + linkType: hard + +"@react-aria/table@npm:^3.14.1": + version: 3.14.1 + resolution: "@react-aria/table@npm:3.14.1" + dependencies: + "@react-aria/focus": ^3.17.1 + "@react-aria/grid": ^3.9.1 + "@react-aria/i18n": ^3.11.1 + "@react-aria/interactions": ^3.21.3 + "@react-aria/live-announcer": ^3.3.4 + "@react-aria/utils": ^3.24.1 + "@react-aria/visually-hidden": ^3.8.12 + "@react-stately/collections": ^3.10.7 + "@react-stately/flags": ^3.0.3 + "@react-stately/table": ^3.11.8 + "@react-stately/virtualizer": ^3.7.1 + "@react-types/checkbox": ^3.8.1 + "@react-types/grid": ^3.2.6 + "@react-types/shared": ^3.23.1 + "@react-types/table": ^3.9.5 + "@swc/helpers": ^0.5.0 + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: 98c0b1d80b498649fb6ef98a19830274ce5b84b6a6ae66b04e9cdd4dc0c6f51cde6d65c03e13e9d92e332edfec8018234ed5c48d5118491cbeb95679dc37f114 + languageName: node + linkType: hard + +"@react-aria/tabs@npm:^3.9.1": + version: 3.9.1 + resolution: "@react-aria/tabs@npm:3.9.1" + dependencies: + "@react-aria/focus": ^3.17.1 + "@react-aria/i18n": ^3.11.1 + "@react-aria/selection": ^3.18.1 + "@react-aria/utils": ^3.24.1 + "@react-stately/tabs": ^3.6.6 + "@react-types/shared": ^3.23.1 + "@react-types/tabs": ^3.3.7 + "@swc/helpers": ^0.5.0 + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: 26233ca9b2db281665e2951607221ce29401b920d6daca50ed49ad71c8d801f8c658f8a53faeb9e18f3d22af0998d52f7b7ffc20dccb829786ab7557648f5ff0 + languageName: node + linkType: hard + +"@react-aria/tag@npm:^3.4.1": + version: 3.4.1 + resolution: "@react-aria/tag@npm:3.4.1" + dependencies: + "@react-aria/gridlist": ^3.8.1 + "@react-aria/i18n": ^3.11.1 + "@react-aria/interactions": ^3.21.3 + "@react-aria/label": ^3.7.8 + "@react-aria/selection": ^3.18.1 + "@react-aria/utils": ^3.24.1 + "@react-stately/list": ^3.10.5 + "@react-types/button": ^3.9.4 + "@react-types/shared": ^3.23.1 + "@swc/helpers": ^0.5.0 + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: 2167853ddffb5faf84faabe27d6968d16b5e50b89a5ada3e082a54d06bccf0ad1ad9ce0376c5064933ae663dfc9e97e73cb91c73c02f00854291761ea7c00aa2 + languageName: node + linkType: hard + +"@react-aria/textfield@npm:^3.14.5": + version: 3.14.5 + resolution: "@react-aria/textfield@npm:3.14.5" + dependencies: + "@react-aria/focus": ^3.17.1 + "@react-aria/form": ^3.0.5 + "@react-aria/label": ^3.7.8 + "@react-aria/utils": ^3.24.1 + "@react-stately/form": ^3.0.3 + "@react-stately/utils": ^3.10.1 + "@react-types/shared": ^3.23.1 + "@react-types/textfield": ^3.9.3 + "@swc/helpers": ^0.5.0 + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: a0f4dce62543c7a7c8dd62ca161cb6e065d0c35a0e0853d9e644eba40e81a64b1bbd85f25350d609a8af587b96aaeded77d71cfb8b07f4d18ac9c3799fc2e2c8 + languageName: node + linkType: hard + +"@react-aria/toggle@npm:^3.10.4": + version: 3.10.4 + resolution: "@react-aria/toggle@npm:3.10.4" + dependencies: + "@react-aria/focus": ^3.17.1 + "@react-aria/interactions": ^3.21.3 + "@react-aria/utils": ^3.24.1 + "@react-stately/toggle": ^3.7.4 + "@react-types/checkbox": ^3.8.1 + "@swc/helpers": ^0.5.0 + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: 4131d28c3761c70fe3cae35abc6c371c65bcab2d1b1712b82c94c438f8b38b33c39fd3198acf78bb8fb8bbcbcfa60381595ae03b526a44d36aac407369b72098 + languageName: node + linkType: hard + +"@react-aria/toolbar@npm:3.0.0-beta.5": + version: 3.0.0-beta.5 + resolution: "@react-aria/toolbar@npm:3.0.0-beta.5" + dependencies: + "@react-aria/focus": ^3.17.1 + "@react-aria/i18n": ^3.11.1 + "@react-aria/utils": ^3.24.1 + "@react-types/shared": ^3.23.1 + "@swc/helpers": ^0.5.0 + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: e95a58e81fb5f8a627f44b8bf6c0df1955f42fc4156f538f22c28ba69367222589c694914287d6d3fb7028b5c8b6da50867bfee8460596122ce1729d47d1c6b2 + languageName: node + linkType: hard + +"@react-aria/tooltip@npm:^3.7.4": + version: 3.7.4 + resolution: "@react-aria/tooltip@npm:3.7.4" + dependencies: + "@react-aria/focus": ^3.17.1 + "@react-aria/interactions": ^3.21.3 + "@react-aria/utils": ^3.24.1 + "@react-stately/tooltip": ^3.4.9 + "@react-types/shared": ^3.23.1 + "@react-types/tooltip": ^3.4.9 + "@swc/helpers": ^0.5.0 + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: 60b8e519b1561e6113da76f6b02cd6cb37d880dd6876a78a8323f62c23b594042073e8c0f3f181a04a1eaea99b82f2e33d891f3c21882a34c607dc8f36567ed3 + languageName: node + linkType: hard + +"@react-aria/tree@npm:3.0.0-alpha.1": + version: 3.0.0-alpha.1 + resolution: "@react-aria/tree@npm:3.0.0-alpha.1" + dependencies: + "@react-aria/gridlist": ^3.8.1 + "@react-aria/i18n": ^3.11.1 + "@react-aria/selection": ^3.18.1 + "@react-aria/utils": ^3.24.1 + "@react-stately/tree": ^3.8.1 + "@react-types/button": ^3.9.4 + "@react-types/shared": ^3.23.1 + "@swc/helpers": ^0.5.0 + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: 5fb7b910e454addc4f88861946bee3f6d135c7898960b6aae802b7fe57ea0277ab132bace3441c083e0945368c06acf8bbfb497823c33a160c1dbcadc2d52429 + languageName: node + linkType: hard + +"@react-aria/utils@npm:^3.24.1": + version: 3.24.1 + resolution: "@react-aria/utils@npm:3.24.1" + dependencies: + "@react-aria/ssr": ^3.9.4 + "@react-stately/utils": ^3.10.1 + "@react-types/shared": ^3.23.1 + "@swc/helpers": ^0.5.0 + clsx: ^2.0.0 + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: 3ea920b878769a739b5a3c085207d0b2c5a914fdd1968063b0c55ae68aa5fd68d53f9810498bc5c3c61945245929e54532983912f136f6bda40141f9a5e4f0be + languageName: node + linkType: hard + +"@react-aria/virtualizer@npm:^3.10.1": + version: 3.10.1 + resolution: "@react-aria/virtualizer@npm:3.10.1" + dependencies: + "@react-aria/i18n": ^3.11.1 + "@react-aria/interactions": ^3.21.3 + "@react-aria/utils": ^3.24.1 + "@react-stately/virtualizer": ^3.7.1 + "@react-types/shared": ^3.23.1 + "@swc/helpers": ^0.5.0 + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: 6080eef35521c331dbeb9c82dfb20aad91893aeb2a67d70b95c4083815b1f40047cd00f163e5cebf7a8cbf1c27af22e85c62970e8d42b3b38ccd566aaaa09190 + languageName: node + linkType: hard + +"@react-aria/visually-hidden@npm:^3.8.12": + version: 3.8.12 + resolution: "@react-aria/visually-hidden@npm:3.8.12" + dependencies: + "@react-aria/interactions": ^3.21.3 + "@react-aria/utils": ^3.24.1 + "@react-types/shared": ^3.23.1 + "@swc/helpers": ^0.5.0 + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: 062aaa85b59cfa9a6f7818cb4a53485ede1912c260cddf13d9ac30e6c488692a15456a15641cbc4831a6dd14e0325588e93e56a7255ca638dc12b4b7af21fae3 + languageName: node + linkType: hard + +"@react-spectrum/actionbar@npm:^3.4.5": + version: 3.4.5 + resolution: "@react-spectrum/actionbar@npm:3.4.5" + dependencies: + "@react-aria/focus": ^3.17.1 + "@react-aria/i18n": ^3.11.1 + "@react-aria/interactions": ^3.21.3 + "@react-aria/live-announcer": ^3.3.4 + "@react-aria/utils": ^3.24.1 + "@react-spectrum/actiongroup": ^3.10.5 + "@react-spectrum/button": ^3.16.4 + "@react-spectrum/overlays": ^5.6.1 + "@react-spectrum/text": ^3.5.5 + "@react-spectrum/utils": ^3.11.7 + "@react-stately/collections": ^3.10.7 + "@react-types/actionbar": ^3.1.7 + "@react-types/shared": ^3.23.1 + "@spectrum-icons/ui": ^3.6.7 + "@swc/helpers": ^0.5.0 + peerDependencies: + "@react-spectrum/provider": ^3.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: 4a26d6be29b9da83b4d417127c71e9de0581e123c154ed12fb4e187ea6c0dccbfa5bc5da900f07a561ea0bb5e51fe53da50cb41b7a5f33675c75509a5027c599 + languageName: node + linkType: hard + +"@react-spectrum/actiongroup@npm:^3.10.5": + version: 3.10.5 + resolution: "@react-spectrum/actiongroup@npm:3.10.5" + dependencies: + "@react-aria/actiongroup": ^3.7.5 + "@react-aria/focus": ^3.17.1 + "@react-aria/interactions": ^3.21.3 + "@react-aria/utils": ^3.24.1 + "@react-spectrum/button": ^3.16.4 + "@react-spectrum/menu": ^3.19.1 + "@react-spectrum/text": ^3.5.5 + "@react-spectrum/tooltip": ^3.6.7 + "@react-spectrum/utils": ^3.11.7 + "@react-stately/collections": ^3.10.7 + "@react-stately/list": ^3.10.5 + "@react-types/actiongroup": ^3.4.9 + "@react-types/shared": ^3.23.1 + "@spectrum-icons/ui": ^3.6.7 + "@spectrum-icons/workflow": ^4.2.12 + "@swc/helpers": ^0.5.0 + peerDependencies: + "@react-spectrum/provider": ^3.2.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: 54a55557a1a58cbaaa36d4e3599483f424e4b4ca4933852ce99db998cd6cb8336ab8ad87ac438d9c336a6555e708986e5481f5ca7393452b7b790bcbcac33780 + languageName: node + linkType: hard + +"@react-spectrum/avatar@npm:^3.0.12": + version: 3.0.12 + resolution: "@react-spectrum/avatar@npm:3.0.12" + dependencies: + "@react-aria/utils": ^3.24.1 + "@react-spectrum/utils": ^3.11.7 + "@react-types/avatar": ^3.0.7 + "@react-types/shared": ^3.23.1 + "@swc/helpers": ^0.5.0 + peerDependencies: + "@react-spectrum/provider": ^3.2.1 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: 34173ee6d14b3e35afbf419e41e29a9163d8c574acb0c4b2daeb3dcf59bf8b16a6e985b9d0741fa450ae878ca3bc42339b23e9b57c1a4ef7cb18678925e21b17 + languageName: node + linkType: hard + +"@react-spectrum/badge@npm:^3.1.13": + version: 3.1.13 + resolution: "@react-spectrum/badge@npm:3.1.13" + dependencies: + "@react-aria/utils": ^3.24.1 + "@react-spectrum/text": ^3.5.5 + "@react-spectrum/utils": ^3.11.7 + "@react-types/badge": ^3.1.9 + "@react-types/shared": ^3.23.1 + "@swc/helpers": ^0.5.0 + peerDependencies: + "@react-spectrum/provider": ^3.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: 74c2244836ae3900335faeee4a163ed24995ace11974cf95297e3d74799ef9f872b55dd524a676f01812ad4c12e0af59f73ae4165933e0a02b31b14fad8ec9d7 + languageName: node + linkType: hard + +"@react-spectrum/breadcrumbs@npm:^3.9.7": + version: 3.9.7 + resolution: "@react-spectrum/breadcrumbs@npm:3.9.7" + dependencies: + "@react-aria/breadcrumbs": ^3.5.13 + "@react-aria/focus": ^3.17.1 + "@react-aria/i18n": ^3.11.1 + "@react-aria/interactions": ^3.21.3 + "@react-aria/utils": ^3.24.1 + "@react-spectrum/button": ^3.16.4 + "@react-spectrum/menu": ^3.19.1 + "@react-spectrum/utils": ^3.11.7 + "@react-stately/collections": ^3.10.7 + "@react-types/breadcrumbs": ^3.7.5 + "@react-types/shared": ^3.23.1 + "@spectrum-icons/ui": ^3.6.7 + "@swc/helpers": ^0.5.0 + peerDependencies: + "@react-spectrum/provider": ^3.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: 1b2a68b3cdc0aa5d094b62cdb07308ebd08bd853f575848a627d49973407ecf5bafa60d339974c7ab4b1567cc156ec7fcaedc55e4e916a34368751cc700abc9a + languageName: node + linkType: hard + +"@react-spectrum/button@npm:^3.16.4": + version: 3.16.4 + resolution: "@react-spectrum/button@npm:3.16.4" + dependencies: + "@react-aria/button": ^3.9.5 + "@react-aria/focus": ^3.17.1 + "@react-aria/i18n": ^3.11.1 + "@react-aria/interactions": ^3.21.3 + "@react-aria/utils": ^3.24.1 + "@react-spectrum/progress": ^3.7.7 + "@react-spectrum/text": ^3.5.5 + "@react-spectrum/utils": ^3.11.7 + "@react-stately/toggle": ^3.7.4 + "@react-types/button": ^3.9.4 + "@react-types/shared": ^3.23.1 + "@spectrum-icons/ui": ^3.6.7 + "@swc/helpers": ^0.5.0 + peerDependencies: + "@react-spectrum/provider": ^3.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: 8ff444ed6ebcfa609789c4322a3c1322bd1c2125eff6182c05232f1d0f68fd75e3437cd70d980119441bc60946a0dd5f5487ad868ed6489cea475230cbf166e4 + languageName: node + linkType: hard + +"@react-spectrum/buttongroup@npm:^3.6.13": + version: 3.6.13 + resolution: "@react-spectrum/buttongroup@npm:3.6.13" + dependencies: + "@react-aria/utils": ^3.24.1 + "@react-spectrum/utils": ^3.11.7 + "@react-types/buttongroup": ^3.3.9 + "@react-types/shared": ^3.23.1 + "@swc/helpers": ^0.5.0 + peerDependencies: + "@react-spectrum/provider": ^3.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: ede45a73232a65b3b86b2a176a96fd9d134c05d61cf13e0622f658fe4a4bb8d1f726f92dffe973e7a3c96ff1092b3660467f54d207a125110d4a271cadc853e6 + languageName: node + linkType: hard + +"@react-spectrum/calendar@npm:^3.4.9": + version: 3.4.9 + resolution: "@react-spectrum/calendar@npm:3.4.9" + dependencies: + "@internationalized/date": ^3.5.4 + "@react-aria/calendar": ^3.5.8 + "@react-aria/focus": ^3.17.1 + "@react-aria/i18n": ^3.11.1 + "@react-aria/interactions": ^3.21.3 + "@react-aria/utils": ^3.24.1 + "@react-aria/visually-hidden": ^3.8.12 + "@react-spectrum/button": ^3.16.4 + "@react-spectrum/label": ^3.16.6 + "@react-spectrum/utils": ^3.11.7 + "@react-stately/calendar": ^3.5.1 + "@react-types/button": ^3.9.4 + "@react-types/calendar": ^3.4.6 + "@react-types/shared": ^3.23.1 + "@spectrum-icons/ui": ^3.6.7 + "@swc/helpers": ^0.5.0 + peerDependencies: + "@react-spectrum/provider": ^3.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: f63cd5d3817521ac7ebba09834bfd5aba6a36144e8d78007fd61c5b9ba9acece9c02fb6fb748b13be778e4f745a84e9a97030c61c88cd38f09c643309b732734 + languageName: node + linkType: hard + +"@react-spectrum/checkbox@npm:^3.9.6": + version: 3.9.6 + resolution: "@react-spectrum/checkbox@npm:3.9.6" + dependencies: + "@react-aria/checkbox": ^3.14.3 + "@react-aria/focus": ^3.17.1 + "@react-aria/interactions": ^3.21.3 + "@react-spectrum/form": ^3.7.6 + "@react-spectrum/label": ^3.16.6 + "@react-spectrum/utils": ^3.11.7 + "@react-stately/checkbox": ^3.6.5 + "@react-stately/toggle": ^3.7.4 + "@react-types/checkbox": ^3.8.1 + "@react-types/shared": ^3.23.1 + "@spectrum-icons/ui": ^3.6.7 + "@swc/helpers": ^0.5.0 + react-aria-components: ^1.2.1 + peerDependencies: + "@react-spectrum/provider": ^3.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: 864651dc2d192593bfa7e261e7ba022ebfe07ac6cb299c583cfd2eef3e53de3945022c6c1062a366dcc0e37e3f9af802834c2acc4239ab1f01afb3e8db1852e1 + languageName: node + linkType: hard + +"@react-spectrum/combobox@npm:^3.12.5": + version: 3.12.5 + resolution: "@react-spectrum/combobox@npm:3.12.5" + dependencies: + "@react-aria/button": ^3.9.5 + "@react-aria/combobox": ^3.9.1 + "@react-aria/dialog": ^3.5.14 + "@react-aria/focus": ^3.17.1 + "@react-aria/form": ^3.0.5 + "@react-aria/i18n": ^3.11.1 + "@react-aria/interactions": ^3.21.3 + "@react-aria/label": ^3.7.8 + "@react-aria/overlays": ^3.22.1 + "@react-aria/utils": ^3.24.1 + "@react-spectrum/button": ^3.16.4 + "@react-spectrum/form": ^3.7.6 + "@react-spectrum/label": ^3.16.6 + "@react-spectrum/listbox": ^3.12.9 + "@react-spectrum/overlays": ^5.6.1 + "@react-spectrum/progress": ^3.7.7 + "@react-spectrum/textfield": ^3.12.1 + "@react-spectrum/utils": ^3.11.7 + "@react-stately/collections": ^3.10.7 + "@react-stately/combobox": ^3.8.4 + "@react-types/button": ^3.9.4 + "@react-types/combobox": ^3.11.1 + "@react-types/shared": ^3.23.1 + "@spectrum-icons/ui": ^3.6.7 + "@swc/helpers": ^0.5.0 + peerDependencies: + "@react-spectrum/provider": ^3.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: 05ce74e0d8bbc3191f7d0d8b04a29f929ac5a64345ea31a631cb57070cb7eea5fcf2ea77c99f50aeedd246b0271959450ea02e9ab1c7caaeb175892052270bd2 + languageName: node + linkType: hard + +"@react-spectrum/contextualhelp@npm:^3.6.11": + version: 3.6.11 + resolution: "@react-spectrum/contextualhelp@npm:3.6.11" + dependencies: + "@react-aria/i18n": ^3.11.1 + "@react-aria/utils": ^3.24.1 + "@react-spectrum/button": ^3.16.4 + "@react-spectrum/dialog": ^3.8.11 + "@react-spectrum/utils": ^3.11.7 + "@react-types/contextualhelp": ^3.2.10 + "@react-types/shared": ^3.23.1 + "@spectrum-icons/workflow": ^4.2.12 + "@swc/helpers": ^0.5.0 + peerDependencies: + "@react-spectrum/provider": ^3.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: b6fca1f1b8a47ea31da3af335b05b62ac24d4128e4efa8d78db06995e8f2728a391d612a53efd844dc7fda9f5c04dc31aef26080f35045368dbf5e0474c02c8f + languageName: node + linkType: hard + +"@react-spectrum/datepicker@npm:^3.9.6": + version: 3.9.6 + resolution: "@react-spectrum/datepicker@npm:3.9.6" + dependencies: + "@internationalized/date": ^3.5.4 + "@react-aria/datepicker": ^3.10.1 + "@react-aria/focus": ^3.17.1 + "@react-aria/i18n": ^3.11.1 + "@react-aria/interactions": ^3.21.3 + "@react-aria/utils": ^3.24.1 + "@react-spectrum/button": ^3.16.4 + "@react-spectrum/calendar": ^3.4.9 + "@react-spectrum/dialog": ^3.8.11 + "@react-spectrum/form": ^3.7.6 + "@react-spectrum/label": ^3.16.6 + "@react-spectrum/layout": ^3.6.5 + "@react-spectrum/utils": ^3.11.7 + "@react-spectrum/view": ^3.6.10 + "@react-stately/datepicker": ^3.9.4 + "@react-types/datepicker": ^3.7.4 + "@react-types/shared": ^3.23.1 + "@spectrum-icons/ui": ^3.6.7 + "@spectrum-icons/workflow": ^4.2.12 + "@swc/helpers": ^0.5.0 + peerDependencies: + "@react-spectrum/provider": ^3.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: 3414b1da9dc17134b3bcb5220fbad7fc195957c29fe8e437a25393a32dd75273c767383c131f8f5568ff67e45509410d32793a43922dcd7fe2897d2c11a19f27 + languageName: node + linkType: hard + +"@react-spectrum/dialog@npm:^3.8.11": + version: 3.8.11 + resolution: "@react-spectrum/dialog@npm:3.8.11" + dependencies: + "@react-aria/dialog": ^3.5.14 + "@react-aria/i18n": ^3.11.1 + "@react-aria/interactions": ^3.21.3 + "@react-aria/overlays": ^3.22.1 + "@react-aria/utils": ^3.24.1 + "@react-spectrum/button": ^3.16.4 + "@react-spectrum/buttongroup": ^3.6.13 + "@react-spectrum/divider": ^3.5.13 + "@react-spectrum/layout": ^3.6.5 + "@react-spectrum/overlays": ^5.6.1 + "@react-spectrum/text": ^3.5.5 + "@react-spectrum/utils": ^3.11.7 + "@react-spectrum/view": ^3.6.10 + "@react-stately/overlays": ^3.6.7 + "@react-types/button": ^3.9.4 + "@react-types/dialog": ^3.5.10 + "@react-types/shared": ^3.23.1 + "@spectrum-icons/ui": ^3.6.7 + "@swc/helpers": ^0.5.0 + peerDependencies: + "@react-spectrum/provider": ^3.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: dbf3aef980c0f49a155ded720ea183db3b33e50652c787a547557a63bcd484035f9c5360e214d00daa9e071bb3b0ca2458e8fa969c77bae30810000bbff045ca + languageName: node + linkType: hard + +"@react-spectrum/divider@npm:^3.5.13": + version: 3.5.13 + resolution: "@react-spectrum/divider@npm:3.5.13" + dependencies: + "@react-aria/separator": ^3.3.13 + "@react-spectrum/utils": ^3.11.7 + "@react-types/divider": ^3.3.9 + "@react-types/shared": ^3.23.1 + "@swc/helpers": ^0.5.0 + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: e17307202b8659c8d3fcdeab6603d2d7c9a08bf62b5dd5a31abbd2d6191abf871536029db508d99b2005ca35d1e3fd1adf0e9322530ac38726181ade8a3a7da2 + languageName: node + linkType: hard + +"@react-spectrum/dnd@npm:^3.3.10": + version: 3.3.10 + resolution: "@react-spectrum/dnd@npm:3.3.10" + dependencies: + "@react-aria/dnd": ^3.6.1 + "@react-stately/dnd": ^3.3.1 + "@react-types/shared": ^3.23.1 + "@swc/helpers": ^0.5.0 + peerDependencies: + "@react-spectrum/provider": ^3.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: 0611fe46ff738aeb8dca48c8caf8b62e43380bd59036c6e40616cb92b651991e68a27ecf80aed7c68726c666befca9a8142cb50759d232ac18f3f282c4c50bd5 + languageName: node + linkType: hard + +"@react-spectrum/dropzone@npm:^3.0.1": + version: 3.0.1 + resolution: "@react-spectrum/dropzone@npm:3.0.1" + dependencies: + "@react-aria/i18n": ^3.11.1 + "@react-aria/utils": ^3.24.1 + "@react-spectrum/utils": ^3.11.7 + "@react-types/shared": ^3.23.1 + "@swc/helpers": ^0.5.0 + react-aria-components: ^1.2.1 + peerDependencies: + "@react-spectrum/provider": ^3.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: 8495bb643849214af9b1c9057903eb5b40827f45252bb16e5653f5495649ccff0278c46791d131a070b66cec1e1426a8bf619a73058b967a9e92da4a3725f0a0 + languageName: node + linkType: hard + +"@react-spectrum/filetrigger@npm:^3.0.1": + version: 3.0.1 + resolution: "@react-spectrum/filetrigger@npm:3.0.1" + dependencies: + "@swc/helpers": ^0.5.0 + react-aria-components: ^1.2.1 + peerDependencies: + "@react-spectrum/provider": ^3.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: 5929b7ee4ca359ebf682c5fd8a88b99c83fd26345f34272f14a491e0fb035f2618a1a39d4af6f4676363a1a1e580b88aabc94a53453ff03cd001c05ad93850a0 + languageName: node + linkType: hard + +"@react-spectrum/form@npm:^3.7.6": + version: 3.7.6 + resolution: "@react-spectrum/form@npm:3.7.6" + dependencies: + "@react-aria/utils": ^3.24.1 + "@react-spectrum/utils": ^3.11.7 + "@react-stately/form": ^3.0.3 + "@react-types/form": ^3.7.4 + "@react-types/shared": ^3.23.1 + "@swc/helpers": ^0.5.0 + peerDependencies: + "@react-spectrum/provider": ^3.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: 1d54ff9055371e8794b814905e679e585697073768788bb26e30cf176670a8c3749f716a8b85976340ac7f9a179cae6e53ddd98e8757d443bcf3d618187ee28b + languageName: node + linkType: hard + +"@react-spectrum/icon@npm:^3.7.13": + version: 3.7.13 + resolution: "@react-spectrum/icon@npm:3.7.13" + dependencies: + "@react-aria/utils": ^3.24.1 + "@react-spectrum/utils": ^3.11.7 + "@react-types/shared": ^3.23.1 + "@swc/helpers": ^0.5.0 + peerDependencies: + "@react-spectrum/provider": ^3.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: c02fa25a1755e6b0bd648b26175d36964afc135d192770a85830e875e16fbe947f9a59cd305945f0a1b8e14044f79b29825d30422ec2e9dfbcd66573d1d7a2ca + languageName: node + linkType: hard + +"@react-spectrum/illustratedmessage@npm:^3.5.1": + version: 3.5.1 + resolution: "@react-spectrum/illustratedmessage@npm:3.5.1" + dependencies: + "@react-aria/utils": ^3.24.1 + "@react-spectrum/layout": ^3.6.5 + "@react-spectrum/utils": ^3.11.7 + "@react-types/illustratedmessage": ^3.3.9 + "@react-types/shared": ^3.23.1 + "@swc/helpers": ^0.5.0 + peerDependencies: + "@react-spectrum/provider": ^3.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: 0b84a490d4b1e0f133dbd8be61fef077b3b3803e0b37a334320445435627b463489dbe240a2d9de880bb0cdb41aebee968af34db828f0980d254429a27b39872 + languageName: node + linkType: hard + +"@react-spectrum/image@npm:^3.5.1": + version: 3.5.1 + resolution: "@react-spectrum/image@npm:3.5.1" + dependencies: + "@react-aria/utils": ^3.24.1 + "@react-spectrum/utils": ^3.11.7 + "@react-types/image": ^3.4.1 + "@react-types/shared": ^3.23.1 + "@swc/helpers": ^0.5.0 + peerDependencies: + "@react-spectrum/provider": ^3.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: 5d75e99cc6e9797222ec2bafa82577b281dd708fb76337b0fe6f9114bcc9ab9f67e6b6ec6c0c548adfaa1afac98c086b918da7f77b1cbbcd4d8f05314afc18f4 + languageName: node + linkType: hard + +"@react-spectrum/inlinealert@npm:^3.2.5": + version: 3.2.5 + resolution: "@react-spectrum/inlinealert@npm:3.2.5" + dependencies: + "@react-aria/focus": ^3.17.1 + "@react-aria/i18n": ^3.11.1 + "@react-aria/utils": ^3.24.1 + "@react-spectrum/layout": ^3.6.5 + "@react-spectrum/utils": ^3.11.7 + "@react-types/shared": ^3.23.1 + "@spectrum-icons/ui": ^3.6.7 + "@swc/helpers": ^0.5.0 + peerDependencies: + "@react-spectrum/provider": ^3.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: d5fade37a9cc8bef90ec4bf39890745b8b00034333b426a6a5d391b066ce78ffd642ed797526f8549cca32601f90ecc1d0f708291f6a26cdd69c8a1ec04a310d + languageName: node + linkType: hard + +"@react-spectrum/label@npm:^3.16.6": + version: 3.16.6 + resolution: "@react-spectrum/label@npm:3.16.6" + dependencies: + "@react-aria/i18n": ^3.11.1 + "@react-aria/utils": ^3.24.1 + "@react-spectrum/form": ^3.7.6 + "@react-spectrum/layout": ^3.6.5 + "@react-spectrum/utils": ^3.11.7 + "@react-types/label": ^3.9.3 + "@react-types/shared": ^3.23.1 + "@spectrum-icons/ui": ^3.6.7 + "@swc/helpers": ^0.5.0 + peerDependencies: + "@react-spectrum/provider": ^3.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: f95069e05cc752ab3ec4639d0607c0492142e348b6537c967bec74a2ba7f8232707fbf1a3849da9d5f35f48d2d924a35dbfb69207b4facdc34dba6d12f3c970d + languageName: node + linkType: hard + +"@react-spectrum/labeledvalue@npm:^3.1.14": + version: 3.1.14 + resolution: "@react-spectrum/labeledvalue@npm:3.1.14" + dependencies: + "@internationalized/date": ^3.5.4 + "@react-aria/i18n": ^3.11.1 + "@react-aria/utils": ^3.24.1 + "@react-spectrum/label": ^3.16.6 + "@react-spectrum/utils": ^3.11.7 + "@react-types/shared": ^3.23.1 + "@swc/helpers": ^0.5.0 + peerDependencies: + "@react-spectrum/provider": ^3.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: 0c889d99ee55a53c44aabfbadff385d58fb47b242770cb02a2f2c771f2ce0a68c8079e4f8d6cafb3807c60756216781bc0f32d7bb9c3ac47af607c21ce7a731c + languageName: node + linkType: hard + +"@react-spectrum/layout@npm:^3.6.5": + version: 3.6.5 + resolution: "@react-spectrum/layout@npm:3.6.5" + dependencies: + "@react-aria/utils": ^3.24.1 + "@react-spectrum/utils": ^3.11.7 + "@react-types/layout": ^3.3.15 + "@react-types/shared": ^3.23.1 + "@swc/helpers": ^0.5.0 + peerDependencies: + "@react-spectrum/provider": ^3.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: 785c5e6ce966ac65bb3a89665fdf8099c0b31044aad0138ff3248478d7028a343c166516e888ab73e8ec722940bf9fefd7c34ae3220012bd2895607525357d55 + languageName: node + linkType: hard + +"@react-spectrum/link@npm:^3.6.7": + version: 3.6.7 + resolution: "@react-spectrum/link@npm:3.6.7" + dependencies: + "@react-aria/focus": ^3.17.1 + "@react-aria/interactions": ^3.21.3 + "@react-aria/link": ^3.7.1 + "@react-aria/utils": ^3.24.1 + "@react-spectrum/utils": ^3.11.7 + "@react-types/link": ^3.5.5 + "@swc/helpers": ^0.5.0 + peerDependencies: + "@react-spectrum/provider": ^3.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: abc8dd63254821f8947858c7a7ede942bac32ef752eda6705e9aa267d02c7b319996d0d8c90640af174504be96c72e72359fde400b4870b8a75f15cdade24500 + languageName: node + linkType: hard + +"@react-spectrum/list@npm:^3.7.10": + version: 3.7.10 + resolution: "@react-spectrum/list@npm:3.7.10" + dependencies: + "@react-aria/button": ^3.9.5 + "@react-aria/focus": ^3.17.1 + "@react-aria/gridlist": ^3.8.1 + "@react-aria/i18n": ^3.11.1 + "@react-aria/interactions": ^3.21.3 + "@react-aria/utils": ^3.24.1 + "@react-aria/virtualizer": ^3.10.1 + "@react-aria/visually-hidden": ^3.8.12 + "@react-spectrum/checkbox": ^3.9.6 + "@react-spectrum/dnd": ^3.3.10 + "@react-spectrum/layout": ^3.6.5 + "@react-spectrum/progress": ^3.7.7 + "@react-spectrum/text": ^3.5.5 + "@react-spectrum/utils": ^3.11.7 + "@react-stately/collections": ^3.10.7 + "@react-stately/layout": ^3.13.9 + "@react-stately/list": ^3.10.5 + "@react-types/grid": ^3.2.6 + "@react-types/shared": ^3.23.1 + "@spectrum-icons/ui": ^3.6.7 + "@swc/helpers": ^0.5.0 + react-transition-group: ^4.4.5 + peerDependencies: + "@react-spectrum/provider": ^3.2.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: 45568e8d7d59325aedbcc253503ee0d6a2547de952a24759474223c26bb1dd88317a2bd541b7b37579c0fde8c81f8fc394030b5d71eaabf5c5006f96426d888e + languageName: node + linkType: hard + +"@react-spectrum/listbox@npm:^3.12.9": + version: 3.12.9 + resolution: "@react-spectrum/listbox@npm:3.12.9" + dependencies: + "@react-aria/focus": ^3.17.1 + "@react-aria/i18n": ^3.11.1 + "@react-aria/interactions": ^3.21.3 + "@react-aria/listbox": ^3.12.1 + "@react-aria/utils": ^3.24.1 + "@react-aria/virtualizer": ^3.10.1 + "@react-spectrum/layout": ^3.6.5 + "@react-spectrum/progress": ^3.7.7 + "@react-spectrum/text": ^3.5.5 + "@react-spectrum/utils": ^3.11.7 + "@react-stately/collections": ^3.10.7 + "@react-stately/layout": ^3.13.9 + "@react-stately/list": ^3.10.5 + "@react-stately/virtualizer": ^3.7.1 + "@react-types/listbox": ^3.4.9 + "@react-types/shared": ^3.23.1 + "@spectrum-icons/ui": ^3.6.7 + "@swc/helpers": ^0.5.0 + peerDependencies: + "@react-spectrum/provider": ^3.2.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: 661651b5f26ae33c09c8c6faad6cdef1d2de523bddeb2d57ff3a261ba563aabc4d1842ee40310034a6751f7c5c58e3579c3be261d0176a2c53cec13b806ad8f1 + languageName: node + linkType: hard + +"@react-spectrum/menu@npm:^3.19.1": + version: 3.19.1 + resolution: "@react-spectrum/menu@npm:3.19.1" + dependencies: + "@react-aria/focus": ^3.17.1 + "@react-aria/i18n": ^3.11.1 + "@react-aria/interactions": ^3.21.3 + "@react-aria/menu": ^3.14.1 + "@react-aria/overlays": ^3.22.1 + "@react-aria/separator": ^3.3.13 + "@react-aria/utils": ^3.24.1 + "@react-spectrum/button": ^3.16.4 + "@react-spectrum/layout": ^3.6.5 + "@react-spectrum/overlays": ^5.6.1 + "@react-spectrum/text": ^3.5.5 + "@react-spectrum/utils": ^3.11.7 + "@react-stately/collections": ^3.10.7 + "@react-stately/menu": ^3.7.1 + "@react-stately/overlays": ^3.6.7 + "@react-stately/tree": ^3.8.1 + "@react-types/menu": ^3.9.9 + "@react-types/overlays": ^3.8.7 + "@react-types/shared": ^3.23.1 + "@spectrum-icons/ui": ^3.6.7 + "@spectrum-icons/workflow": ^4.2.12 + "@swc/helpers": ^0.5.0 + peerDependencies: + "@react-spectrum/provider": ^3.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: 988b02b449f9cb4d733828d65a190f355c3383e6c2f6bd03a245e0335541d678ee58f51fbf7ec97b8c882e941118ac9fb035762619b6dd9547f6962818abfca1 + languageName: node + linkType: hard + +"@react-spectrum/meter@npm:^3.5.1": + version: 3.5.1 + resolution: "@react-spectrum/meter@npm:3.5.1" + dependencies: + "@react-aria/meter": ^3.4.13 + "@react-spectrum/progress": ^3.7.7 + "@react-spectrum/utils": ^3.11.7 + "@react-types/meter": ^3.4.1 + "@react-types/shared": ^3.23.1 + "@swc/helpers": ^0.5.0 + peerDependencies: + "@react-spectrum/provider": ^3.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: 0f5bf7e81c6b0a410b201ad8d3a00dba3550ad565d30cb7ebc904ced9d79792224e5037e5dfb9e33ab8ebd91519d33b298d74d0d8f3fe9d430652c48d635e22b + languageName: node + linkType: hard + +"@react-spectrum/numberfield@npm:^3.9.3": + version: 3.9.3 + resolution: "@react-spectrum/numberfield@npm:3.9.3" + dependencies: + "@react-aria/button": ^3.9.5 + "@react-aria/focus": ^3.17.1 + "@react-aria/i18n": ^3.11.1 + "@react-aria/interactions": ^3.21.3 + "@react-aria/numberfield": ^3.11.3 + "@react-aria/utils": ^3.24.1 + "@react-spectrum/form": ^3.7.6 + "@react-spectrum/label": ^3.16.6 + "@react-spectrum/textfield": ^3.12.1 + "@react-spectrum/utils": ^3.11.7 + "@react-stately/numberfield": ^3.9.3 + "@react-types/button": ^3.9.4 + "@react-types/numberfield": ^3.8.3 + "@react-types/shared": ^3.23.1 + "@spectrum-icons/ui": ^3.6.7 + "@spectrum-icons/workflow": ^4.2.12 + "@swc/helpers": ^0.5.0 + peerDependencies: + "@react-spectrum/provider": ^3.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: 5a076bdea11e0a2c2fa943c9bd63708b1323185f9062559c7d709953fe813b33d29d245629ff1edec1d1067b953d3c64b88886a5d5181e05e02e0c83eba6ebe8 + languageName: node + linkType: hard + +"@react-spectrum/overlays@npm:^5.6.1": + version: 5.6.1 + resolution: "@react-spectrum/overlays@npm:5.6.1" + dependencies: + "@react-aria/interactions": ^3.21.3 + "@react-aria/overlays": ^3.22.1 + "@react-aria/utils": ^3.24.1 + "@react-spectrum/utils": ^3.11.7 + "@react-stately/overlays": ^3.6.7 + "@react-types/overlays": ^3.8.7 + "@react-types/shared": ^3.23.1 + "@swc/helpers": ^0.5.0 + react-transition-group: ^4.4.5 + peerDependencies: + "@react-spectrum/provider": ^3.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: df7936cdbfbc57cc585a02dfd242bf1b4bbb1b7cfa6175e0f07570f87cf316f10e0b84018ef831c7d877b9d706eae12989cd99d7b460fd0df7a5fd41938aec93 + languageName: node + linkType: hard + +"@react-spectrum/picker@npm:^3.14.5": + version: 3.14.5 + resolution: "@react-spectrum/picker@npm:3.14.5" + dependencies: + "@react-aria/i18n": ^3.11.1 + "@react-aria/interactions": ^3.21.3 + "@react-aria/select": ^3.14.5 + "@react-aria/utils": ^3.24.1 + "@react-spectrum/button": ^3.16.4 + "@react-spectrum/form": ^3.7.6 + "@react-spectrum/label": ^3.16.6 + "@react-spectrum/listbox": ^3.12.9 + "@react-spectrum/overlays": ^5.6.1 + "@react-spectrum/progress": ^3.7.7 + "@react-spectrum/text": ^3.5.5 + "@react-spectrum/utils": ^3.11.7 + "@react-stately/collections": ^3.10.7 + "@react-stately/select": ^3.6.4 + "@react-types/select": ^3.9.4 + "@react-types/shared": ^3.23.1 + "@spectrum-icons/ui": ^3.6.7 + "@swc/helpers": ^0.5.0 + peerDependencies: + "@react-spectrum/provider": ^3.1.4 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: 90390ce2ba2ce46fbf7abe4035f68e0553ad113be135050f6c642361371045e9f1dc802bc85100c43ce1582954656efbeec4614ee44ddfd0016c0ab0a5aa7f06 + languageName: node + linkType: hard + +"@react-spectrum/progress@npm:^3.7.7": + version: 3.7.7 + resolution: "@react-spectrum/progress@npm:3.7.7" + dependencies: + "@react-aria/progress": ^3.4.13 + "@react-aria/utils": ^3.24.1 + "@react-spectrum/utils": ^3.11.7 + "@react-types/progress": ^3.5.4 + "@react-types/shared": ^3.23.1 + "@swc/helpers": ^0.5.0 + peerDependencies: + "@react-spectrum/provider": ^3.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: 7473b49aecc39373effe0de0c48aaa2a0ab84d3f1770153f58a93eea4690030ba70de993ef77590d63f6f82960e9a42f3b71079e170c54cfae2120a0087696c6 + languageName: node + linkType: hard + +"@react-spectrum/provider@npm:^3.9.7": + version: 3.9.7 + resolution: "@react-spectrum/provider@npm:3.9.7" + dependencies: + "@react-aria/i18n": ^3.11.1 + "@react-aria/overlays": ^3.22.1 + "@react-aria/utils": ^3.24.1 + "@react-spectrum/utils": ^3.11.7 + "@react-types/provider": ^3.8.1 + "@react-types/shared": ^3.23.1 + "@swc/helpers": ^0.5.0 + clsx: ^2.0.0 + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: 206345debfb24565fcc293fa9afb77171d716585a6d8fe4465d1f60ebd53522f62c2b5c965495efe19c9fcacf813218370ba08cad3b397bf848fd2fdbaf0a3cc + languageName: node + linkType: hard + +"@react-spectrum/radio@npm:^3.7.6": + version: 3.7.6 + resolution: "@react-spectrum/radio@npm:3.7.6" + dependencies: + "@react-aria/focus": ^3.17.1 + "@react-aria/interactions": ^3.21.3 + "@react-aria/radio": ^3.10.4 + "@react-spectrum/form": ^3.7.6 + "@react-spectrum/label": ^3.16.6 + "@react-spectrum/utils": ^3.11.7 + "@react-stately/radio": ^3.10.4 + "@react-types/radio": ^3.8.1 + "@react-types/shared": ^3.23.1 + "@swc/helpers": ^0.5.0 + peerDependencies: + "@react-spectrum/provider": ^3.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: 3c61a351885573b04c24ab294bebf4871142350e1727a58db727f9162562ea287371195eeb41224fdf1ea64eef89e50730261ecfc1285b3e1b22e8c846ed1753 + languageName: node + linkType: hard + +"@react-spectrum/searchfield@npm:^3.8.6": + version: 3.8.6 + resolution: "@react-spectrum/searchfield@npm:3.8.6" + dependencies: + "@react-aria/searchfield": ^3.7.5 + "@react-spectrum/button": ^3.16.4 + "@react-spectrum/form": ^3.7.6 + "@react-spectrum/textfield": ^3.12.1 + "@react-spectrum/utils": ^3.11.7 + "@react-stately/searchfield": ^3.5.3 + "@react-types/searchfield": ^3.5.5 + "@react-types/textfield": ^3.9.3 + "@spectrum-icons/ui": ^3.6.7 + "@swc/helpers": ^0.5.0 + peerDependencies: + "@react-spectrum/provider": ^3.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: 952b2f691d430d7e44bff46bce9822cc0681999d70133c04fff8a34900869a3b59474cfc5682f0cfa95eb2d225279e501e299fe53bea8325887dc2ecbddcd14c + languageName: node + linkType: hard + +"@react-spectrum/slider@npm:^3.6.9": + version: 3.6.9 + resolution: "@react-spectrum/slider@npm:3.6.9" + dependencies: + "@react-aria/focus": ^3.17.1 + "@react-aria/i18n": ^3.11.1 + "@react-aria/interactions": ^3.21.3 + "@react-aria/slider": ^3.7.8 + "@react-aria/utils": ^3.24.1 + "@react-aria/visually-hidden": ^3.8.12 + "@react-spectrum/utils": ^3.11.7 + "@react-stately/slider": ^3.5.4 + "@react-types/shared": ^3.23.1 + "@react-types/slider": ^3.7.3 + "@swc/helpers": ^0.5.0 + peerDependencies: + "@react-spectrum/provider": ^3.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: 078dbf7e4ccd1c3c007fafc569f6aa2d3f21cf297924ddb81f573aadcc8fb2e89b40c461b925473591d784c79bb378d20df8670feae1887fed19978d9defd337 + languageName: node + linkType: hard + +"@react-spectrum/statuslight@npm:^3.5.13": + version: 3.5.13 + resolution: "@react-spectrum/statuslight@npm:3.5.13" + dependencies: + "@react-aria/utils": ^3.24.1 + "@react-spectrum/utils": ^3.11.7 + "@react-types/shared": ^3.23.1 + "@react-types/statuslight": ^3.3.9 + "@swc/helpers": ^0.5.0 + peerDependencies: + "@react-spectrum/provider": ^3.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: 875cb8255c69329b57496a58b3cbc9814d5c9985e2c679ebb1055bd12ed58093af6ca34e747dfdbda146ae027938c1f4ec3ccd2de8a43df4259efeae21fbcbea + languageName: node + linkType: hard + +"@react-spectrum/switch@npm:^3.5.5": + version: 3.5.5 + resolution: "@react-spectrum/switch@npm:3.5.5" + dependencies: + "@react-aria/focus": ^3.17.1 + "@react-aria/interactions": ^3.21.3 + "@react-aria/switch": ^3.6.4 + "@react-spectrum/utils": ^3.11.7 + "@react-stately/toggle": ^3.7.4 + "@react-types/shared": ^3.23.1 + "@react-types/switch": ^3.5.3 + "@swc/helpers": ^0.5.0 + peerDependencies: + "@react-spectrum/provider": ^3.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: 3546df01a7764d5e25ba68a6aa5e5af34c7d84a88ae092ba07345cba7a6e913e759d1ddccda5744381a49fdb801ac7041bb7c2da8f460af47a0fed30f4c30c71 + languageName: node + linkType: hard + +"@react-spectrum/table@npm:^3.12.10": + version: 3.12.10 + resolution: "@react-spectrum/table@npm:3.12.10" + dependencies: + "@react-aria/button": ^3.9.5 + "@react-aria/focus": ^3.17.1 + "@react-aria/i18n": ^3.11.1 + "@react-aria/interactions": ^3.21.3 + "@react-aria/overlays": ^3.22.1 + "@react-aria/table": ^3.14.1 + "@react-aria/utils": ^3.24.1 + "@react-aria/virtualizer": ^3.10.1 + "@react-aria/visually-hidden": ^3.8.12 + "@react-spectrum/checkbox": ^3.9.6 + "@react-spectrum/dnd": ^3.3.10 + "@react-spectrum/layout": ^3.6.5 + "@react-spectrum/menu": ^3.19.1 + "@react-spectrum/progress": ^3.7.7 + "@react-spectrum/tooltip": ^3.6.7 + "@react-spectrum/utils": ^3.11.7 + "@react-stately/flags": ^3.0.3 + "@react-stately/layout": ^3.13.9 + "@react-stately/table": ^3.11.8 + "@react-stately/virtualizer": ^3.7.1 + "@react-types/grid": ^3.2.6 + "@react-types/shared": ^3.23.1 + "@react-types/table": ^3.9.5 + "@spectrum-icons/ui": ^3.6.7 + "@swc/helpers": ^0.5.0 + peerDependencies: + "@react-spectrum/provider": ^3.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: 8fd2af5dbc9488417448d7fcc79d1aaa25de4228e083a6228f2897202fb09970f13703bf68c042600b42fd992e7babd0798ba81d379b301cdf4ebb542593480e + languageName: node + linkType: hard + +"@react-spectrum/tabs@npm:^3.8.10": + version: 3.8.10 + resolution: "@react-spectrum/tabs@npm:3.8.10" + dependencies: + "@react-aria/focus": ^3.17.1 + "@react-aria/i18n": ^3.11.1 + "@react-aria/interactions": ^3.21.3 + "@react-aria/tabs": ^3.9.1 + "@react-aria/utils": ^3.24.1 + "@react-spectrum/picker": ^3.14.5 + "@react-spectrum/text": ^3.5.5 + "@react-spectrum/utils": ^3.11.7 + "@react-stately/collections": ^3.10.7 + "@react-stately/list": ^3.10.5 + "@react-stately/tabs": ^3.6.6 + "@react-types/select": ^3.9.4 + "@react-types/shared": ^3.23.1 + "@react-types/tabs": ^3.3.7 + "@swc/helpers": ^0.5.0 + peerDependencies: + "@react-spectrum/provider": ^3.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: 1362aa0e6ce8c4319d5c4315561c937d508e2e1b10fd652fd5f8563f0e22a5d35bd24dc7aa1246baf5c18b0596b2163d89e991fa53707ce426295aab38c9bf4a + languageName: node + linkType: hard + +"@react-spectrum/tag@npm:^3.2.6": + version: 3.2.6 + resolution: "@react-spectrum/tag@npm:3.2.6" + dependencies: + "@react-aria/focus": ^3.17.1 + "@react-aria/i18n": ^3.11.1 + "@react-aria/interactions": ^3.21.3 + "@react-aria/selection": ^3.18.1 + "@react-aria/tag": ^3.4.1 + "@react-aria/utils": ^3.24.1 + "@react-spectrum/button": ^3.16.4 + "@react-spectrum/form": ^3.7.6 + "@react-spectrum/label": ^3.16.6 + "@react-spectrum/text": ^3.5.5 + "@react-spectrum/utils": ^3.11.7 + "@react-stately/collections": ^3.10.7 + "@react-stately/list": ^3.10.5 + "@react-types/shared": ^3.23.1 + "@swc/helpers": ^0.5.0 + peerDependencies: + "@react-spectrum/provider": ^3.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: edca8657168cc4219df9d10c18ef3ff928318c5b9cd2332f6155eee49f3c06cdfac89ebb0097d79cc0d78051b4c3745696df3e5130e71ee3945d36623f5ebab4 + languageName: node + linkType: hard + +"@react-spectrum/text@npm:^3.5.5": + version: 3.5.5 + resolution: "@react-spectrum/text@npm:3.5.5" + dependencies: + "@react-aria/utils": ^3.24.1 + "@react-spectrum/utils": ^3.11.7 + "@react-types/shared": ^3.23.1 + "@react-types/text": ^3.3.9 + "@swc/helpers": ^0.5.0 + react-aria-components: ^1.2.1 + peerDependencies: + "@react-spectrum/provider": ^3.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: 1878b1f9807ff565f64e268fb9450e69ca4ac20613853890df649784fbd21d9773482047a2fa94ebafac00ca49d0f81a119128b0a1fa745b775dee43d4cb2c61 + languageName: node + linkType: hard + +"@react-spectrum/textfield@npm:^3.12.1": + version: 3.12.1 + resolution: "@react-spectrum/textfield@npm:3.12.1" + dependencies: + "@react-aria/focus": ^3.17.1 + "@react-aria/interactions": ^3.21.3 + "@react-aria/textfield": ^3.14.5 + "@react-aria/utils": ^3.24.1 + "@react-spectrum/form": ^3.7.6 + "@react-spectrum/label": ^3.16.6 + "@react-spectrum/utils": ^3.11.7 + "@react-stately/utils": ^3.10.1 + "@react-types/shared": ^3.23.1 + "@react-types/textfield": ^3.9.3 + "@spectrum-icons/ui": ^3.6.7 + "@swc/helpers": ^0.5.0 + peerDependencies: + "@react-spectrum/provider": ^3.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: e152f32ead141e1bf3f4e02781bc73825d72a8382f1821abbd484f310dc35872219447e7bb529e5ce5659bded00a8f53b7843baec7f031af359dd0f532a7a320 + languageName: node + linkType: hard + +"@react-spectrum/theme-dark@npm:^3.5.10": + version: 3.5.10 + resolution: "@react-spectrum/theme-dark@npm:3.5.10" + dependencies: + "@react-types/provider": ^3.8.1 + "@swc/helpers": ^0.5.0 + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: 88bb544fc79d167db8445c53d392a221cf1934d6846d15beb15eb67b4315c0556c13219c18211d3ad8ee493b6fe3ef6ace302f0b69c2a5f090d051c95826f928 + languageName: node + linkType: hard + +"@react-spectrum/theme-default@npm:^3.5.10": + version: 3.5.10 + resolution: "@react-spectrum/theme-default@npm:3.5.10" + dependencies: + "@react-types/provider": ^3.8.1 + "@swc/helpers": ^0.5.0 + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: 67eb6000515627c4a9b35ffd64835091a45f723ac9dc2b0ee88a0883be178653f5a480ba1a4b79a006328adf73ee110b2baa06d76cdfb866cbaa9e127d056ba3 + languageName: node + linkType: hard + +"@react-spectrum/theme-light@npm:^3.4.10": + version: 3.4.10 + resolution: "@react-spectrum/theme-light@npm:3.4.10" + dependencies: + "@react-types/provider": ^3.8.1 + "@swc/helpers": ^0.5.0 + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: 593bd355e64b4a7429d59dce1a15bf52f2923eb355d95ecbaa95b583be19964ea47fe9057fd3b53e51608235487efcbd82b70d4544264994b7fb66e759742c4a + languageName: node + linkType: hard + +"@react-spectrum/tooltip@npm:^3.6.7": + version: 3.6.7 + resolution: "@react-spectrum/tooltip@npm:3.6.7" + dependencies: + "@react-aria/focus": ^3.17.1 + "@react-aria/overlays": ^3.22.1 + "@react-aria/tooltip": ^3.7.4 + "@react-aria/utils": ^3.24.1 + "@react-spectrum/overlays": ^5.6.1 + "@react-spectrum/utils": ^3.11.7 + "@react-stately/tooltip": ^3.4.9 + "@react-types/overlays": ^3.8.7 + "@react-types/shared": ^3.23.1 + "@react-types/tooltip": ^3.4.9 + "@spectrum-icons/ui": ^3.6.7 + "@swc/helpers": ^0.5.0 + peerDependencies: + "@react-spectrum/provider": ^3.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: bc2b0b1783c1b0bec9e0a01339f8a33559a503ee98f915e8b7d02119a58e5f6ca856e52759a1bd4730471c171277dd75465d525127c8487389b1ca430270851b + languageName: node + linkType: hard + +"@react-spectrum/utils@npm:^3.11.7": + version: 3.11.7 + resolution: "@react-spectrum/utils@npm:3.11.7" + dependencies: + "@react-aria/i18n": ^3.11.1 + "@react-aria/ssr": ^3.9.4 + "@react-aria/utils": ^3.24.1 + "@react-types/shared": ^3.23.1 + "@swc/helpers": ^0.5.0 + clsx: ^2.0.0 + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: 74998214d8babdd48f21e207a65f03a4c743dc75ac3ef301b8ebfde17cb87acbcf8b066f5182a2444385ba65cd5de38a233c39e289a355ef90bf2f77d1ec1bba + languageName: node + linkType: hard + +"@react-spectrum/view@npm:^3.6.10": + version: 3.6.10 + resolution: "@react-spectrum/view@npm:3.6.10" + dependencies: + "@react-aria/utils": ^3.24.1 + "@react-spectrum/utils": ^3.11.7 + "@react-types/shared": ^3.23.1 + "@react-types/view": ^3.4.9 + "@swc/helpers": ^0.5.0 + peerDependencies: + "@react-spectrum/provider": ^3.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: 8662d00cec8cb35d9a620d6656df07dc5d4940ef6a87c96a5dde2077538f102ad946ce1acdcfd7658fc28d18945000a6c89eb9364e003e3d8447b25c9b05d110 + languageName: node + linkType: hard + +"@react-spectrum/well@npm:^3.4.13": + version: 3.4.13 + resolution: "@react-spectrum/well@npm:3.4.13" + dependencies: + "@react-aria/utils": ^3.24.1 + "@react-spectrum/utils": ^3.11.7 + "@react-types/shared": ^3.23.1 + "@react-types/well": ^3.3.9 + "@swc/helpers": ^0.5.0 + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: ccec539514540c2dcd684f9ef3e9119dcc04d0aa37bf016ffda4894cae17f4dc2fe1015d0648203fb24baa4a3187b869b4df5346edb7f942b7345e13b9a1ad20 + languageName: node + linkType: hard + +"@react-stately/calendar@npm:^3.5.1": + version: 3.5.1 + resolution: "@react-stately/calendar@npm:3.5.1" + dependencies: + "@internationalized/date": ^3.5.4 + "@react-stately/utils": ^3.10.1 + "@react-types/calendar": ^3.4.6 + "@react-types/shared": ^3.23.1 + "@swc/helpers": ^0.5.0 + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: cc89fd2cff80977c71e67ac035b39cc6521f2be1474f21485e9a3919be18b7780f8a3d495cac1f3f50aa5fb2560874a5048ba9749e90f184e113f7e9e215b6ee + languageName: node + linkType: hard + +"@react-stately/checkbox@npm:^3.6.5": + version: 3.6.5 + resolution: "@react-stately/checkbox@npm:3.6.5" + dependencies: + "@react-stately/form": ^3.0.3 + "@react-stately/utils": ^3.10.1 + "@react-types/checkbox": ^3.8.1 + "@react-types/shared": ^3.23.1 + "@swc/helpers": ^0.5.0 + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: 8181533763370159f2b2d8f8902b9afe0ffbbcbd39dd89208282b9d2d17acff4cac962df1fc0796a5f282d6dff805e3204e31fd9436268a3eea9da4821f90279 + languageName: node + linkType: hard + +"@react-stately/collections@npm:^3.10.7": + version: 3.10.7 + resolution: "@react-stately/collections@npm:3.10.7" + dependencies: + "@react-types/shared": ^3.23.1 + "@swc/helpers": ^0.5.0 + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: 9540f1282c860cb8803c30f556667f8dfb76fcc30a2d033d6d2c2a9db174b10d7d6eb467badd6d70513161c3e7cf2eb9af30c01fa734acc5826607db8c47de13 + languageName: node + linkType: hard + +"@react-stately/color@npm:^3.6.1": + version: 3.6.1 + resolution: "@react-stately/color@npm:3.6.1" + dependencies: + "@internationalized/number": ^3.5.3 + "@internationalized/string": ^3.2.3 + "@react-aria/i18n": ^3.11.1 + "@react-stately/form": ^3.0.3 + "@react-stately/numberfield": ^3.9.3 + "@react-stately/slider": ^3.5.4 + "@react-stately/utils": ^3.10.1 + "@react-types/color": 3.0.0-beta.25 + "@react-types/shared": ^3.23.1 + "@swc/helpers": ^0.5.0 + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: a972e5e0457003bf28b89f8c8500da11bf090316c5f06d531eef51e116f1ab4a35785b173579d6edf27fd4ac09db6396ce67a71713b90d26954a233638e4ca41 + languageName: node + linkType: hard + +"@react-stately/combobox@npm:^3.8.4": + version: 3.8.4 + resolution: "@react-stately/combobox@npm:3.8.4" + dependencies: + "@react-stately/collections": ^3.10.7 + "@react-stately/form": ^3.0.3 + "@react-stately/list": ^3.10.5 + "@react-stately/overlays": ^3.6.7 + "@react-stately/select": ^3.6.4 + "@react-stately/utils": ^3.10.1 + "@react-types/combobox": ^3.11.1 + "@react-types/shared": ^3.23.1 + "@swc/helpers": ^0.5.0 + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: c39deb7ba129655624bc8a25ce18281f81e85334c154fb465b0c6b17a61376779dc0bbe427b38e998fb6ca360aedb89cc1b759fa0da695f2bd8ba7bcef8fdf38 + languageName: node + linkType: hard + +"@react-stately/data@npm:^3.11.4": + version: 3.11.4 + resolution: "@react-stately/data@npm:3.11.4" + dependencies: + "@react-types/shared": ^3.23.1 + "@swc/helpers": ^0.5.0 + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: eb4235c6d3876f5f4d0eedec7da9f0e1242cd27ef1a04288f430047d6201caff7ad1fdbbfb275d39bc5bd0b88766c75dc23feb84676495a23e90c6be7ec6db75 + languageName: node + linkType: hard + +"@react-stately/datepicker@npm:^3.9.4": + version: 3.9.4 + resolution: "@react-stately/datepicker@npm:3.9.4" + dependencies: + "@internationalized/date": ^3.5.4 + "@internationalized/string": ^3.2.3 + "@react-stately/form": ^3.0.3 + "@react-stately/overlays": ^3.6.7 + "@react-stately/utils": ^3.10.1 + "@react-types/datepicker": ^3.7.4 + "@react-types/shared": ^3.23.1 + "@swc/helpers": ^0.5.0 + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: 7faaadd551e8be87d45a5114bd510d3232c96e6303380c168b5cb542964a4e228ba8e056c19d9189750375874e6e5c422a4ef8f7f133e0937f5279a76bc3400b + languageName: node + linkType: hard + +"@react-stately/dnd@npm:^3.3.1": + version: 3.3.1 + resolution: "@react-stately/dnd@npm:3.3.1" + dependencies: + "@react-stately/selection": ^3.15.1 + "@react-types/shared": ^3.23.1 + "@swc/helpers": ^0.5.0 + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: 029d063409d1f7fb8e43f4548d9a0b007d8791b1a988e4abfe9f9464f885bc0d22757115192c19013b6cc79cfbc516b1b32856f68655bee45090f213b98505fe + languageName: node + linkType: hard + +"@react-stately/flags@npm:^3.0.3": + version: 3.0.3 + resolution: "@react-stately/flags@npm:3.0.3" + dependencies: + "@swc/helpers": ^0.5.0 + checksum: 8b88ccde3224efdafc947c9ee416fa45d0cf71f3d992790a6c0ba8227ca668e6d53e63fb3b2c2a3bcc80be92595c38b2473ba5b42bd81099ba24ebcf23635e8e + languageName: node + linkType: hard + +"@react-stately/form@npm:^3.0.3": + version: 3.0.3 + resolution: "@react-stately/form@npm:3.0.3" + dependencies: + "@react-types/shared": ^3.23.1 + "@swc/helpers": ^0.5.0 + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: 667a34eb0d8edb66ebb93df00c70283954cd12568f0d017f7d40a5005cb7ab840a82b7e66d8edde1f26b268ccb674e26fbb102cbbd05deca7c21d924bc77eb96 + languageName: node + linkType: hard + +"@react-stately/grid@npm:^3.8.7": + version: 3.8.7 + resolution: "@react-stately/grid@npm:3.8.7" + dependencies: + "@react-stately/collections": ^3.10.7 + "@react-stately/selection": ^3.15.1 + "@react-types/grid": ^3.2.6 + "@react-types/shared": ^3.23.1 + "@swc/helpers": ^0.5.0 + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: 2d63aa8837f7aafb1f59cf83efa5cc74e4fdd14cc87eaef048a96612034492ad7b311c2ca5c826d1ea3172dee0aed70d2e0c3ab5bff2b9e422331cfc8e129668 + languageName: node + linkType: hard + +"@react-stately/layout@npm:^3.13.9": + version: 3.13.9 + resolution: "@react-stately/layout@npm:3.13.9" + dependencies: + "@react-stately/collections": ^3.10.7 + "@react-stately/table": ^3.11.8 + "@react-stately/virtualizer": ^3.7.1 + "@react-types/grid": ^3.2.6 + "@react-types/shared": ^3.23.1 + "@react-types/table": ^3.9.5 + "@swc/helpers": ^0.5.0 + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: 08f23b82057a3f6307408cc719a2b193b3063b9e09ebde76c1e5ea341faf9d15f52205aad956532b0a8b9348a2c95a6fea381f3a82da4ee4b336db44bebb2162 + languageName: node + linkType: hard + +"@react-stately/list@npm:^3.10.5": + version: 3.10.5 + resolution: "@react-stately/list@npm:3.10.5" + dependencies: + "@react-stately/collections": ^3.10.7 + "@react-stately/selection": ^3.15.1 + "@react-stately/utils": ^3.10.1 + "@react-types/shared": ^3.23.1 + "@swc/helpers": ^0.5.0 + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: e4dda7edf6f3a6c1fb4c39f4df933498ba11de41be75c579fe989b9a038828235b00e35b02b4571f06eb1a1045d5c945ecaac1f04bf44f854f9ec5fa48932a6f + languageName: node + linkType: hard + +"@react-stately/menu@npm:^3.7.1": + version: 3.7.1 + resolution: "@react-stately/menu@npm:3.7.1" + dependencies: + "@react-stately/overlays": ^3.6.7 + "@react-types/menu": ^3.9.9 + "@react-types/shared": ^3.23.1 + "@swc/helpers": ^0.5.0 + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: 24d5f6746ed45564003d9f68951a7079693ea1bcdeb62ccccd97fd052ba1afa129e32c9bca0020983b10bb4f96f9c5d3186fb98cced40dc346a6b12f3839dde6 + languageName: node + linkType: hard + +"@react-stately/numberfield@npm:^3.9.3": + version: 3.9.3 + resolution: "@react-stately/numberfield@npm:3.9.3" + dependencies: + "@internationalized/number": ^3.5.3 + "@react-stately/form": ^3.0.3 + "@react-stately/utils": ^3.10.1 + "@react-types/numberfield": ^3.8.3 + "@swc/helpers": ^0.5.0 + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: 84b043a60fb6010656797f072fa20208dcb51847ccee803ea6a317de7db3af07faaea05fccebb5b0cda533b7af7d62eb40ea565f0578ef21871735d9c18d7805 + languageName: node + linkType: hard + +"@react-stately/overlays@npm:^3.6.7": + version: 3.6.7 + resolution: "@react-stately/overlays@npm:3.6.7" + dependencies: + "@react-stately/utils": ^3.10.1 + "@react-types/overlays": ^3.8.7 + "@swc/helpers": ^0.5.0 + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: 37b309931e26354eb11ff97ed634dc66d93181b72a07843295a4cc2cb756611599fea46fb65d7a1e26292a1fdda5ed4d74835c812349160771619af4d999b551 + languageName: node + linkType: hard + +"@react-stately/radio@npm:^3.10.4": + version: 3.10.4 + resolution: "@react-stately/radio@npm:3.10.4" + dependencies: + "@react-stately/form": ^3.0.3 + "@react-stately/utils": ^3.10.1 + "@react-types/radio": ^3.8.1 + "@react-types/shared": ^3.23.1 + "@swc/helpers": ^0.5.0 + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: 73283d79a4d35351361b19438bd8ba59f3afa5fac3a4ebac4ff00c42ce38bea61f05ff5e161107dbaec6dd270e530430b1462c97e4a987b4b6eabfb289331bc5 + languageName: node + linkType: hard + +"@react-stately/searchfield@npm:^3.5.3": + version: 3.5.3 + resolution: "@react-stately/searchfield@npm:3.5.3" + dependencies: + "@react-stately/utils": ^3.10.1 + "@react-types/searchfield": ^3.5.5 + "@swc/helpers": ^0.5.0 + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: 231d471c94896f0d28780855ae025f924c4128e900f6ce44565808101a556398047ce357145bb9137fa4e233e0e73d3f9686fde94b3386ce5b7eac7b8ec69b46 + languageName: node + linkType: hard + +"@react-stately/select@npm:^3.6.4": + version: 3.6.4 + resolution: "@react-stately/select@npm:3.6.4" + dependencies: + "@react-stately/form": ^3.0.3 + "@react-stately/list": ^3.10.5 + "@react-stately/overlays": ^3.6.7 + "@react-types/select": ^3.9.4 + "@react-types/shared": ^3.23.1 + "@swc/helpers": ^0.5.0 + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: cde5683a759b00411a7c7eb9bfe5133ee8f9c90b247bd280678e729a8a7783e866962d709708ea672813584fbeaaf9423263ae60d4e2ca1e6474b0ea6811d1e0 + languageName: node + linkType: hard + +"@react-stately/selection@npm:^3.15.1": + version: 3.15.1 + resolution: "@react-stately/selection@npm:3.15.1" + dependencies: + "@react-stately/collections": ^3.10.7 + "@react-stately/utils": ^3.10.1 + "@react-types/shared": ^3.23.1 + "@swc/helpers": ^0.5.0 + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: ed9f673604670110c2875b8b1637865529904fe532e959d7a572e20626c596a20e6f49bb0a93d9ed2abe2cc30ab467cef8357c622fc29217785b9a558e75585c + languageName: node + linkType: hard + +"@react-stately/slider@npm:^3.5.4": + version: 3.5.4 + resolution: "@react-stately/slider@npm:3.5.4" + dependencies: + "@react-stately/utils": ^3.10.1 + "@react-types/shared": ^3.23.1 + "@react-types/slider": ^3.7.3 + "@swc/helpers": ^0.5.0 + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: 1ca62b352902349773df23f39b6782d4497987c9c21ac7065d0ef4c94814414ffc4ee62f097333f8a9ed3de4f6d6899aa7b81556b60be63f2865cabc24209d66 + languageName: node + linkType: hard + +"@react-stately/table@npm:^3.11.8": + version: 3.11.8 + resolution: "@react-stately/table@npm:3.11.8" + dependencies: + "@react-stately/collections": ^3.10.7 + "@react-stately/flags": ^3.0.3 + "@react-stately/grid": ^3.8.7 + "@react-stately/selection": ^3.15.1 + "@react-stately/utils": ^3.10.1 + "@react-types/grid": ^3.2.6 + "@react-types/shared": ^3.23.1 + "@react-types/table": ^3.9.5 + "@swc/helpers": ^0.5.0 + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: 751d212e19a17f01e1244df63b41e4ab4db56baf7eb73632f89adc21698f7ef2563bd331d34f12154630e8fe583064f89100a2cd4181bb525cafcf16b69f7b80 + languageName: node + linkType: hard + +"@react-stately/tabs@npm:^3.6.6": + version: 3.6.6 + resolution: "@react-stately/tabs@npm:3.6.6" + dependencies: + "@react-stately/list": ^3.10.5 + "@react-types/shared": ^3.23.1 + "@react-types/tabs": ^3.3.7 + "@swc/helpers": ^0.5.0 + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: d4e842c46be72114ff7c997f435741f93c52a784354354d7b7df4d031b463eabf5c63625a3dee02eec3d7078f2302c4b3403018b15385bb813301ce63c3454f9 + languageName: node + linkType: hard + +"@react-stately/toggle@npm:^3.7.4": + version: 3.7.4 + resolution: "@react-stately/toggle@npm:3.7.4" + dependencies: + "@react-stately/utils": ^3.10.1 + "@react-types/checkbox": ^3.8.1 + "@swc/helpers": ^0.5.0 + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: 2c75b712ab87577ad8de6a981bddebfd364c11e692f0584e6d0c5970c0f87c42a7737372b303eeadd043d4f7013984aed029cf221ec1ac20939409ca4ace5541 + languageName: node + linkType: hard + +"@react-stately/tooltip@npm:^3.4.9": + version: 3.4.9 + resolution: "@react-stately/tooltip@npm:3.4.9" + dependencies: + "@react-stately/overlays": ^3.6.7 + "@react-types/tooltip": ^3.4.9 + "@swc/helpers": ^0.5.0 + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: 24eaaafaec308d3f11800d4868800652bb162e6c7d1e15f97896e18743218a9e222b908e9985c366a84baffd93fe31fa5349f3b0c2f685dd6a12c77e1c45685f + languageName: node + linkType: hard + +"@react-stately/tree@npm:^3.8.1": + version: 3.8.1 + resolution: "@react-stately/tree@npm:3.8.1" + dependencies: + "@react-stately/collections": ^3.10.7 + "@react-stately/selection": ^3.15.1 + "@react-stately/utils": ^3.10.1 + "@react-types/shared": ^3.23.1 + "@swc/helpers": ^0.5.0 + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: f6cec7c6422636c819b2ecdb4c53d1ad428698b41bad88d8c4e1d9cdbe0fa6696812cb77449396710987fb3ed14069a8de5c056ac2259f6fb82e443a003e6aa8 + languageName: node + linkType: hard + +"@react-stately/utils@npm:^3.10.1": + version: 3.10.1 + resolution: "@react-stately/utils@npm:3.10.1" + dependencies: + "@swc/helpers": ^0.5.0 + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: b5252fcab7a6c5fe413030613a5891e2893070b6d65e318b3233e5d96af7f122045329a9b3754f47ceab5a652d51e2fb95e256a7060e595638f2b045741f2258 + languageName: node + linkType: hard + +"@react-stately/virtualizer@npm:^3.7.1": + version: 3.7.1 + resolution: "@react-stately/virtualizer@npm:3.7.1" + dependencies: + "@react-aria/utils": ^3.24.1 + "@react-types/shared": ^3.23.1 + "@swc/helpers": ^0.5.0 + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: 6510c43e90478b017d990648472ec9329a78399683cb9ec8d3c84f73b293a373eaf501bee77655dfab59cab96a7bf91b4ec7f6906d57da14ad5839f37cb1a6da + languageName: node + linkType: hard + +"@react-types/actionbar@npm:^3.1.7": + version: 3.1.7 + resolution: "@react-types/actionbar@npm:3.1.7" + dependencies: + "@react-types/shared": ^3.23.1 + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: 4bc6abb3f6e1c9148d1e2b707cea1457e8d439c977e550efd67d17ec8de76adcabffe1e9cf2767ddb5cf355e5666352d157e3266680f583fc9a9a16d023596b5 + languageName: node + linkType: hard + +"@react-types/actiongroup@npm:^3.4.9": + version: 3.4.9 + resolution: "@react-types/actiongroup@npm:3.4.9" + dependencies: + "@react-types/shared": ^3.23.1 + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: 6400eab6a6c6ca11b9f15e8c63203b8422ddb44a769ea72c6c390b58196da2fd8f98f6dedd19f32be2ff6e778d13b47ac372eca2ca68fde02ef4d919c7edadd6 + languageName: node + linkType: hard + +"@react-types/avatar@npm:^3.0.7": + version: 3.0.7 + resolution: "@react-types/avatar@npm:3.0.7" + dependencies: + "@react-types/shared": ^3.23.1 + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: 9bb47620bad752f130a5e6ae26a4e23a4bc82a8f838d6510cf445d504cadf605babd1db3c4dcc194441eddbfa4af43e960d4d33dcc074e3bdb14e8187f33e499 + languageName: node + linkType: hard + +"@react-types/badge@npm:^3.1.9": + version: 3.1.9 + resolution: "@react-types/badge@npm:3.1.9" + dependencies: + "@react-types/shared": ^3.23.1 + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: ba173cb4d47b13aa1b8aad36f4f03a5071941376a5fb0371399500daefd4d235891e67a8ceefafc933d58a9226cf5ee5ad8877732bdea5d0f3bda56968767a6c + languageName: node + linkType: hard + +"@react-types/breadcrumbs@npm:^3.7.5": + version: 3.7.5 + resolution: "@react-types/breadcrumbs@npm:3.7.5" + dependencies: + "@react-types/link": ^3.5.5 + "@react-types/shared": ^3.23.1 + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: 5765e877aff02ecacbfe7516b29fef506569002fb1e48a00ad9e6706eb79921fc162e3cf73197338e5389507d62e731776923bfac8b98886e3eec7806b1f8157 + languageName: node + linkType: hard + +"@react-types/button@npm:^3.9.4": + version: 3.9.4 + resolution: "@react-types/button@npm:3.9.4" + dependencies: + "@react-types/shared": ^3.23.1 + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: 2c16247709be5d7acdc631439ff3647dc7ce20c037bdc8b3aee2662c17d177cc9d6060898672f08b48d05ea118d86c41df5588a8088053ae30ec38f3055851d8 + languageName: node + linkType: hard + +"@react-types/buttongroup@npm:^3.3.9": + version: 3.3.9 + resolution: "@react-types/buttongroup@npm:3.3.9" + dependencies: + "@react-types/shared": ^3.23.1 + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: 498e5777b620ce6ce49c939ebf23d1653dd3c02b57cdf5b0c3b7deae346d8badd5310aaa9924bf580839c21ff9cab23ad2146c8a5ed5ce957f8c8ef4764caa2d + languageName: node + linkType: hard + +"@react-types/calendar@npm:^3.4.6": + version: 3.4.6 + resolution: "@react-types/calendar@npm:3.4.6" + dependencies: + "@internationalized/date": ^3.5.4 + "@react-types/shared": ^3.23.1 + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: 2755ac9af08e79c23c18094ccd62f63e71537cad85e24ddaffda5b66f0392f3e427e5bbbbc4005c54198ede5f6a3febaf5e8056b19cf35bb8e3fe39c0cb6ffcb + languageName: node + linkType: hard + +"@react-types/checkbox@npm:^3.8.1": + version: 3.8.1 + resolution: "@react-types/checkbox@npm:3.8.1" + dependencies: + "@react-types/shared": ^3.23.1 + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: 3d87a8363e794e2586f3569f376d489e9a11e288cc3c56bd610b61141691154a7b54243bc8cd5eec0ac0450ccf3e9d66fd5e610f50436ec014ec5417ff64ea2e + languageName: node + linkType: hard + +"@react-types/color@npm:3.0.0-beta.25": + version: 3.0.0-beta.25 + resolution: "@react-types/color@npm:3.0.0-beta.25" + dependencies: + "@react-types/shared": ^3.23.1 + "@react-types/slider": ^3.7.3 + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: db51b4fc6d5ce47043e150a259591fdc79916f54884bd0c11c76bebf7774f83dde01d3daa6b522a51621eea2f6442668f2d5f5e7bbc4fb3fcadbee104ad21482 + languageName: node + linkType: hard + +"@react-types/combobox@npm:^3.11.1": + version: 3.11.1 + resolution: "@react-types/combobox@npm:3.11.1" + dependencies: + "@react-types/shared": ^3.23.1 + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: 6bbaa9f412cd2a84ff9085c9d5d4fc5a9fefc51ec9ae66ded6d1f439ca8834c0587a2b45bb6c27bd28a0ad9b7d88c2757c66d74e0e9bbd92c4d59ec116819483 + languageName: node + linkType: hard + +"@react-types/contextualhelp@npm:^3.2.10": + version: 3.2.10 + resolution: "@react-types/contextualhelp@npm:3.2.10" + dependencies: + "@react-types/overlays": ^3.8.7 + "@react-types/shared": ^3.23.1 + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: 91c2d342f8fe7ad6513227a160477789fcbbef9baec77fd13c5e572066f7c4522f426fdf631107ecd25238c82f37b7774a49a15d80c32d156b6939d3219fc96a + languageName: node + linkType: hard + +"@react-types/datepicker@npm:^3.7.4": + version: 3.7.4 + resolution: "@react-types/datepicker@npm:3.7.4" + dependencies: + "@internationalized/date": ^3.5.4 + "@react-types/calendar": ^3.4.6 + "@react-types/overlays": ^3.8.7 + "@react-types/shared": ^3.23.1 + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: 80b03e8e02e41d4d9030df426c7678e4f8d66aab28bbf4330d723f48f78fc5a58859ccb7fa3e6f9777537fbddca80029f3f26c56c95fbb85eda341a685f84a0b + languageName: node + linkType: hard + +"@react-types/dialog@npm:^3.5.10": + version: 3.5.10 + resolution: "@react-types/dialog@npm:3.5.10" + dependencies: + "@react-types/overlays": ^3.8.7 + "@react-types/shared": ^3.23.1 + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: 7d411fc66c97b51840a7c395034308efc78061715131660b7ff9a4a69c7316d3645d8c5497b6518c94abd7f779389968129b8325b0cab6e77374ff70d94a70a3 + languageName: node + linkType: hard + +"@react-types/divider@npm:^3.3.9": + version: 3.3.9 + resolution: "@react-types/divider@npm:3.3.9" + dependencies: + "@react-types/shared": ^3.23.1 + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: 4677a7eee6d93c1614bedc164817e106e7e836e20a8375329ed18217b3844f9dde8acc5f84c1bf2fccf4d196e2843695a4f9e91eb9b67a27e5a54b7df943829f + languageName: node + linkType: hard + +"@react-types/form@npm:^3.7.4": + version: 3.7.4 + resolution: "@react-types/form@npm:3.7.4" + dependencies: + "@react-types/shared": ^3.23.1 + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: d39e370df895aed7ed59474ab6f072624b0240ff102f6d8eb7463fd21cbe98d61ea4f74dafbb6bb481a394c7fe35f0e3b2024c41eabed223c70ac96a869ee19c + languageName: node + linkType: hard + +"@react-types/grid@npm:^3.2.6": + version: 3.2.6 + resolution: "@react-types/grid@npm:3.2.6" + dependencies: + "@react-types/shared": ^3.23.1 + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: 1d25a5727a8ed47c3f1c19fb0442ca8690605eeb62be9efc45c53b924cc2c8ec4290688f7b3e9f2abb8c828d22f8d5de9598ff48dd7d555dbf05bb92363958af + languageName: node + linkType: hard + +"@react-types/illustratedmessage@npm:^3.3.9": + version: 3.3.9 + resolution: "@react-types/illustratedmessage@npm:3.3.9" + dependencies: + "@react-types/shared": ^3.23.1 + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: 1a8b63c18367ef9c2599a1d9daf562a3951c8110a732c5211b363634da35a2c265cb538af204bf6e74b879d12778ae4bef1e5d7b7c60e002a63d37806899c80d + languageName: node + linkType: hard + +"@react-types/image@npm:^3.4.1": + version: 3.4.1 + resolution: "@react-types/image@npm:3.4.1" + dependencies: + "@react-types/shared": ^3.23.1 + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: e4b8cae92cbbe7d2aac2778c0af6228c999475ab61256a7514ab224dac13795431b938b5df7fd30b3edbfffdc4d73ca11b8e64cd46b88706c74f418ca736a864 + languageName: node + linkType: hard + +"@react-types/label@npm:^3.9.3": + version: 3.9.3 + resolution: "@react-types/label@npm:3.9.3" + dependencies: + "@react-types/shared": ^3.23.1 + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: 03ffb11826660e4a3c54381421763e28be040afea703294181d0a6a30148f7bb141d29f0f208e1c82e77ab477adf006b7410fca0aeb091b0e7882e550cfa2794 + languageName: node + linkType: hard + +"@react-types/layout@npm:^3.3.15": + version: 3.3.15 + resolution: "@react-types/layout@npm:3.3.15" + dependencies: + "@react-types/shared": ^3.23.1 + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: 50b8cb6d70ff52cf934d6432db20f127228e6dd03218db60c831b69aac7f68a2e68ca15352a56e8dd468fc79134abb46571aa8f8bcb5f3f3e779c408dd193e79 + languageName: node + linkType: hard + +"@react-types/link@npm:^3.5.5": + version: 3.5.5 + resolution: "@react-types/link@npm:3.5.5" + dependencies: + "@react-types/shared": ^3.23.1 + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: 7b1dbb528650ead2f3501741f97789f7a335b6e1b4dd8fe767c8aad6471061dfe25e6b1da63dec353779497c5dfcbb735f65c3dd54a049536fafdd414f1e764c + languageName: node + linkType: hard + +"@react-types/listbox@npm:^3.4.9": + version: 3.4.9 + resolution: "@react-types/listbox@npm:3.4.9" + dependencies: + "@react-types/shared": ^3.23.1 + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: 125f2b7b9b5f0caa24abcbd4892ec73a6984c29f17572bbac194a6e45430580f84efa16764fe56ec30022b9fd241c57a74d03f168d556f12690c5dd9fd72f5d6 + languageName: node + linkType: hard + +"@react-types/menu@npm:^3.9.9": + version: 3.9.9 + resolution: "@react-types/menu@npm:3.9.9" + dependencies: + "@react-types/overlays": ^3.8.7 + "@react-types/shared": ^3.23.1 + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: 67765462a185c779794470d166a74321cc7a1f40c4a8c5c5fd48693acb8c2f937d2564b9cd578e5dea62061b47964eb4444c06edc4a19e57cc9e226ce48acf24 languageName: node linkType: hard -"@parcel/watcher-darwin-arm64@npm:2.4.1": - version: 2.4.1 - resolution: "@parcel/watcher-darwin-arm64@npm:2.4.1" - conditions: os=darwin & cpu=arm64 +"@react-types/meter@npm:^3.4.1": + version: 3.4.1 + resolution: "@react-types/meter@npm:3.4.1" + dependencies: + "@react-types/progress": ^3.5.4 + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: 0367b0027a38a2985226539bb58e72c53c15514a48fdd0dda106a99a18604b4ed8ce4c40ce12601f968bde617f0e800ecb60868bdb4c06cb145f6939db087e90 languageName: node linkType: hard -"@parcel/watcher-darwin-x64@npm:2.4.1": - version: 2.4.1 - resolution: "@parcel/watcher-darwin-x64@npm:2.4.1" - conditions: os=darwin & cpu=x64 +"@react-types/numberfield@npm:^3.8.3": + version: 3.8.3 + resolution: "@react-types/numberfield@npm:3.8.3" + dependencies: + "@react-types/shared": ^3.23.1 + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: dc0d723391be06d51e08ece2b0e4cafc007db097cc1888992a9ba1fffcffac93ddc99716504b958cf430e681e174b889038a7c02682711b3d09194ec0bf56d45 languageName: node linkType: hard -"@parcel/watcher-freebsd-x64@npm:2.4.1": - version: 2.4.1 - resolution: "@parcel/watcher-freebsd-x64@npm:2.4.1" - conditions: os=freebsd & cpu=x64 +"@react-types/overlays@npm:^3.8.7": + version: 3.8.7 + resolution: "@react-types/overlays@npm:3.8.7" + dependencies: + "@react-types/shared": ^3.23.1 + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: f02fea4749c25fa349dddf6c2e7b13796087dbde8621b9de32b874d3646668d00e9d289c2da54458345ade2a3fe46b850445681b05659c587f73fc998af23a2a languageName: node linkType: hard -"@parcel/watcher-linux-arm-glibc@npm:2.4.1": - version: 2.4.1 - resolution: "@parcel/watcher-linux-arm-glibc@npm:2.4.1" - conditions: os=linux & cpu=arm & libc=glibc +"@react-types/progress@npm:^3.5.4": + version: 3.5.4 + resolution: "@react-types/progress@npm:3.5.4" + dependencies: + "@react-types/shared": ^3.23.1 + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: 59b9b2d18d0753e0d76b16b97bb357c6114eade40de7bfa762fe1d946361a6b31dafa0393283895ff48f0790ef1f0d4d57a0766cc0671d6a8436ef3941878dd9 languageName: node linkType: hard -"@parcel/watcher-linux-arm64-glibc@npm:2.4.1": - version: 2.4.1 - resolution: "@parcel/watcher-linux-arm64-glibc@npm:2.4.1" - conditions: os=linux & cpu=arm64 & libc=glibc +"@react-types/provider@npm:^3.8.1": + version: 3.8.1 + resolution: "@react-types/provider@npm:3.8.1" + dependencies: + "@react-types/shared": ^3.23.1 + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: 62a1854ad5fc6762d71db7bf86cfd9a15fe848797db957322926df6db5513f7ef7ae74ad2aea892a678740b90fff82233cfd9e153be9c93f2315e2188cd8aa5b languageName: node linkType: hard -"@parcel/watcher-linux-arm64-musl@npm:2.4.1": - version: 2.4.1 - resolution: "@parcel/watcher-linux-arm64-musl@npm:2.4.1" - conditions: os=linux & cpu=arm64 & libc=musl +"@react-types/radio@npm:^3.8.1": + version: 3.8.1 + resolution: "@react-types/radio@npm:3.8.1" + dependencies: + "@react-types/shared": ^3.23.1 + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: acdb76043990a1965ff6f85d5a5420f1493496e69131dc07ebc75b11476a77ab16814368cca902a39f212609b57ea417002ea8a7f621c9cb470499effcf83f38 languageName: node linkType: hard -"@parcel/watcher-linux-x64-glibc@npm:2.4.1": - version: 2.4.1 - resolution: "@parcel/watcher-linux-x64-glibc@npm:2.4.1" - conditions: os=linux & cpu=x64 & libc=glibc +"@react-types/searchfield@npm:^3.5.5": + version: 3.5.5 + resolution: "@react-types/searchfield@npm:3.5.5" + dependencies: + "@react-types/shared": ^3.23.1 + "@react-types/textfield": ^3.9.3 + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: 6c69522bbf20537796cac51e28261caf31d1b1b007e5767abf3b54d98e4bd9207b3d37ea6989717289ce336e08d7e3ec051ef03ff1a38d9e92d69f54f6dcb06e languageName: node linkType: hard -"@parcel/watcher-linux-x64-musl@npm:2.4.1": - version: 2.4.1 - resolution: "@parcel/watcher-linux-x64-musl@npm:2.4.1" - conditions: os=linux & cpu=x64 & libc=musl +"@react-types/select@npm:^3.9.4": + version: 3.9.4 + resolution: "@react-types/select@npm:3.9.4" + dependencies: + "@react-types/shared": ^3.23.1 + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: eb6b314ef42fcb17e7ad08f340df0db2fdec5ae3de9e90451aa6b448f5e6995abca575f3f866928712f63f6c9e6f2aff1e389fd1eede676b7b51214d073f34ad languageName: node linkType: hard -"@parcel/watcher-win32-arm64@npm:2.4.1": - version: 2.4.1 - resolution: "@parcel/watcher-win32-arm64@npm:2.4.1" - conditions: os=win32 & cpu=arm64 +"@react-types/shared@npm:^3.23.1": + version: 3.23.1 + resolution: "@react-types/shared@npm:3.23.1" + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: a180d8b34b1ccf98f9d50bbbb0451090444aa576e1fecc46a769b24cf827658e1a77e5affb17407cfac25897ba461fb4234a160e5c8efa484880fcb4f230c2fe languageName: node linkType: hard -"@parcel/watcher-win32-ia32@npm:2.4.1": - version: 2.4.1 - resolution: "@parcel/watcher-win32-ia32@npm:2.4.1" - conditions: os=win32 & cpu=ia32 +"@react-types/slider@npm:^3.7.3": + version: 3.7.3 + resolution: "@react-types/slider@npm:3.7.3" + dependencies: + "@react-types/shared": ^3.23.1 + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: 9a73900e37aa49f16233d2cb6bf5e37d002a68ded097010d5c9d75fd2aba5074ed5de547dd267f27ec33599c46d523176e218fbee7540b2f687b20710be0840f languageName: node linkType: hard -"@parcel/watcher-win32-x64@npm:2.4.1": - version: 2.4.1 - resolution: "@parcel/watcher-win32-x64@npm:2.4.1" - conditions: os=win32 & cpu=x64 +"@react-types/statuslight@npm:^3.3.9": + version: 3.3.9 + resolution: "@react-types/statuslight@npm:3.3.9" + dependencies: + "@react-types/shared": ^3.23.1 + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: 49a0fdc5503e994c19574bdcefd6704146d5fa9f2844ee4cf48c3f461b58520644a215aa7eaa938a65623e8fce31b1ce1a0e8a73b2bb2894d0c4a2f378fecc1d languageName: node linkType: hard -"@parcel/watcher@npm:^2.0.0": - version: 2.4.1 - resolution: "@parcel/watcher@npm:2.4.1" +"@react-types/switch@npm:^3.5.3": + version: 3.5.3 + resolution: "@react-types/switch@npm:3.5.3" dependencies: - "@parcel/watcher-android-arm64": 2.4.1 - "@parcel/watcher-darwin-arm64": 2.4.1 - "@parcel/watcher-darwin-x64": 2.4.1 - "@parcel/watcher-freebsd-x64": 2.4.1 - "@parcel/watcher-linux-arm-glibc": 2.4.1 - "@parcel/watcher-linux-arm64-glibc": 2.4.1 - "@parcel/watcher-linux-arm64-musl": 2.4.1 - "@parcel/watcher-linux-x64-glibc": 2.4.1 - "@parcel/watcher-linux-x64-musl": 2.4.1 - "@parcel/watcher-win32-arm64": 2.4.1 - "@parcel/watcher-win32-ia32": 2.4.1 - "@parcel/watcher-win32-x64": 2.4.1 - detect-libc: ^1.0.3 - is-glob: ^4.0.3 - micromatch: ^4.0.5 - node-addon-api: ^7.0.0 - node-gyp: latest - dependenciesMeta: - "@parcel/watcher-android-arm64": - optional: true - "@parcel/watcher-darwin-arm64": - optional: true - "@parcel/watcher-darwin-x64": - optional: true - "@parcel/watcher-freebsd-x64": - optional: true - "@parcel/watcher-linux-arm-glibc": - optional: true - "@parcel/watcher-linux-arm64-glibc": - optional: true - "@parcel/watcher-linux-arm64-musl": - optional: true - "@parcel/watcher-linux-x64-glibc": - optional: true - "@parcel/watcher-linux-x64-musl": - optional: true - "@parcel/watcher-win32-arm64": - optional: true - "@parcel/watcher-win32-ia32": - optional: true - "@parcel/watcher-win32-x64": - optional: true - checksum: 4da70551da27e565c726b0bbd5ba5afcb2bca36dfd8619a649f0eaa41f693ddd1d630c36e53bc083895d71a3e28bc4199013e557cd13c7af6ccccab28ceecbff + "@react-types/shared": ^3.23.1 + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: 100bcf35bcd201510853cf5230264b5147972c9941e4ada52ec228d6565d28399860a26499178f330d89caba191088f675ce8df0631d1a28e74a36d4e6bbd97b languageName: node linkType: hard -"@parcel/workers@npm:2.6.2": - version: 2.6.2 - resolution: "@parcel/workers@npm:2.6.2" +"@react-types/table@npm:^3.9.5": + version: 3.9.5 + resolution: "@react-types/table@npm:3.9.5" dependencies: - "@parcel/diagnostic": 2.6.2 - "@parcel/logger": 2.6.2 - "@parcel/types": 2.6.2 - "@parcel/utils": 2.6.2 - chrome-trace-event: ^1.0.2 - nullthrows: ^1.1.1 + "@react-types/grid": ^3.2.6 + "@react-types/shared": ^3.23.1 peerDependencies: - "@parcel/core": ^2.6.2 - checksum: 92b65cd3fde225dcd377f1f529caeb0d8ee56a9aeef3785716b1ad210132e5dc1b6bd9b7c4c6920094e0030c6aad9cc42d5dbf7b4fb0fb4668eedfd332e0b242 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: 4de0f2e9c7c6fecebfb805602e36553c657edd2f5812dcbe335dbabce2de1c051385b62905845e3eec2d5d319b448c5e84a9c7d95d3cdb294a947defad7bd364 languageName: node linkType: hard -"@pkgjs/parseargs@npm:^0.11.0": - version: 0.11.0 - resolution: "@pkgjs/parseargs@npm:0.11.0" - checksum: 6ad6a00fc4f2f2cfc6bff76fb1d88b8ee20bc0601e18ebb01b6d4be583733a860239a521a7fbca73b612e66705078809483549d2b18f370eb346c5155c8e4a0f +"@react-types/tabs@npm:^3.3.7": + version: 3.3.7 + resolution: "@react-types/tabs@npm:3.3.7" + dependencies: + "@react-types/shared": ^3.23.1 + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: 1b7ffa7037719970da40ce4160dcbd41d2bd704b1484e2604d6e4f05afd4a5138d8f8d2cb0538bc6c69ad03b01126382d5e661be1920221902a9aada8db13aad languageName: node linkType: hard -"@pmmmwh/react-refresh-webpack-plugin@npm:^0.5.7": - version: 0.5.11 - resolution: "@pmmmwh/react-refresh-webpack-plugin@npm:0.5.11" +"@react-types/text@npm:^3.3.9": + version: 3.3.9 + resolution: "@react-types/text@npm:3.3.9" dependencies: - ansi-html-community: ^0.0.8 - common-path-prefix: ^3.0.0 - core-js-pure: ^3.23.3 - error-stack-parser: ^2.0.6 - find-up: ^5.0.0 - html-entities: ^2.1.0 - loader-utils: ^2.0.4 - schema-utils: ^3.0.0 - source-map: ^0.7.3 + "@react-types/shared": ^3.23.1 peerDependencies: - "@types/webpack": 4.x || 5.x - react-refresh: ">=0.10.0 <1.0.0" - sockjs-client: ^1.4.0 - type-fest: ">=0.17.0 <5.0.0" - webpack: ">=4.43.0 <6.0.0" - webpack-dev-server: 3.x || 4.x - webpack-hot-middleware: 2.x - webpack-plugin-serve: 0.x || 1.x - peerDependenciesMeta: - "@types/webpack": - optional: true - sockjs-client: - optional: true - type-fest: - optional: true - webpack-dev-server: - optional: true - webpack-hot-middleware: - optional: true - webpack-plugin-serve: - optional: true - checksum: a82eced9519f4dcac424acae719f819ab4150bfcf2874ac7daaf25a4f1c409e3d8b9d693fea0c686c24d520a5473756df32da90d8b89739670f8f8084c600bb4 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: 97a4c0c580879b3970baa9261ad6cc46d0687a6187a9505d82284b997155c18c206e94910bf0f8081769f1384b9c33420e93a67b47afec4d2d41264b7168c2bb languageName: node linkType: hard -"@prefresh/babel-plugin@npm:^0.4.3": - version: 0.4.4 - resolution: "@prefresh/babel-plugin@npm:0.4.4" - checksum: 1cd7e9b27936fd8947ecd7e4da70abd05935f44840af3d054ad87638d38ea61f304c45ff7610a4d56bde72e260ddee869cc45806738738edebe7d5a0fe96059a +"@react-types/textfield@npm:^3.9.3": + version: 3.9.3 + resolution: "@react-types/textfield@npm:3.9.3" + dependencies: + "@react-types/shared": ^3.23.1 + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: c6c505f535319fdcba620fb46cdfce7fdd5e9905c993bda2179bfbca1da9fcc034290674f8b84e008a8dee42e17df65c658b27b66def8978c0b17e9ac75c7db1 languageName: node linkType: hard -"@prefresh/core@npm:^1.3.3": - version: 1.5.2 - resolution: "@prefresh/core@npm:1.5.2" +"@react-types/tooltip@npm:^3.4.9": + version: 3.4.9 + resolution: "@react-types/tooltip@npm:3.4.9" + dependencies: + "@react-types/overlays": ^3.8.7 + "@react-types/shared": ^3.23.1 peerDependencies: - preact: ^10.0.0 - checksum: f8959d005990d295ed73d15775c1900fb503f238993304dad3cb5a931fc5b0539eb62776efa01eb7e0c712ee032cb85a913cd13c45c069923c7b20dbd270e378 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: d3f917f3aaf16ff5c48fcc9b466ee6495c5bb3485086e347bca9b4a4bbf3a4a969a1751b966f9c6a52609a68f067f57c3ac25dd979d76741e631c1441fa7301f languageName: node linkType: hard -"@prefresh/utils@npm:^1.1.2": - version: 1.2.0 - resolution: "@prefresh/utils@npm:1.2.0" - checksum: 003bb710a6d5ca5e4886a29eb7245332d4f605a90de4eb7b77df35884a842c29143f827f6aa088e69cc2ea07f70d89148d4a730f56549640425177e24d14a60e +"@react-types/view@npm:^3.4.9": + version: 3.4.9 + resolution: "@react-types/view@npm:3.4.9" + dependencies: + "@react-types/shared": ^3.23.1 + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: 99367bdf26cf6db0e121b078e012a2c7a2c09192441f798161ad51c2a3454a59656c11fd86696a4e450926aedba158ba9b010c0104d71675be2ad1d3b8f226f0 languageName: node linkType: hard -"@prefresh/webpack@npm:^3.3.4": - version: 3.3.4 - resolution: "@prefresh/webpack@npm:3.3.4" +"@react-types/well@npm:^3.3.9": + version: 3.3.9 + resolution: "@react-types/well@npm:3.3.9" dependencies: - "@prefresh/core": ^1.3.3 - "@prefresh/utils": ^1.1.2 + "@react-types/shared": ^3.23.1 peerDependencies: - "@prefresh/babel-plugin": ^0.4.0 - preact: ^10.4.0 - webpack: ^4.0.0 || ^5.0.0 - checksum: 49d2184856f7c3335d339b3cff52c85b9524c6b215c120f701bfc7053781adea8db8908f158a756a9234af09acedff101fd087f4adcda367b38ca6403a9e5442 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: 22dac320cbc0cf8ce10c68925c1214276dda04e8b74e5c7329f469537296c26335922e85351c4f51e46f387c419d08459c84a8d5dede6b81ebab5e4a5dfaeec2 languageName: node linkType: hard @@ -4483,6 +7497,34 @@ __metadata: languageName: node linkType: hard +"@spectrum-icons/ui@npm:^3.6.7": + version: 3.6.7 + resolution: "@spectrum-icons/ui@npm:3.6.7" + dependencies: + "@adobe/react-spectrum-ui": 1.2.0 + "@react-spectrum/icon": ^3.7.13 + "@swc/helpers": ^0.5.0 + peerDependencies: + "@react-spectrum/provider": ^3.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: dc9e7bdbcd310469aaed951e65f931442428f3f3d49995be80aac844d74a7564b62ac35f267feeabe0938323e8fe5c334bbf979ba5c6df350a57ec65367c93f5 + languageName: node + linkType: hard + +"@spectrum-icons/workflow@npm:^4.2.12": + version: 4.2.12 + resolution: "@spectrum-icons/workflow@npm:4.2.12" + dependencies: + "@adobe/react-spectrum-workflow": 2.3.4 + "@react-spectrum/icon": ^3.7.13 + "@swc/helpers": ^0.5.0 + peerDependencies: + "@react-spectrum/provider": ^3.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: e658397b7cac876225f22e3442c419b718719c3274a131eb9f2ee9d7d8dfb51dc692588c2e6f5b16558b15c0a3c3c9d656a6dca475131d25376c41659090345d + languageName: node + linkType: hard + "@swc/helpers@npm:^0.4.2": version: 0.4.36 resolution: "@swc/helpers@npm:0.4.36" @@ -4493,6 +7535,15 @@ __metadata: languageName: node linkType: hard +"@swc/helpers@npm:^0.5.0": + version: 0.5.12 + resolution: "@swc/helpers@npm:0.5.12" + dependencies: + tslib: ^2.4.0 + checksum: 293c0cb8f41804f94beb04a764bbcfaf316707ec43947713154ac66311590299446bf9b96ab253ce59ce9e435a0edc8cc2bf93f88dc3989f9241271507dd5fe9 + languageName: node + linkType: hard + "@szmarczak/http-timer@npm:^1.1.2": version: 1.1.2 resolution: "@szmarczak/http-timer@npm:1.1.2" @@ -5357,7 +8408,7 @@ __metadata: version: 0.0.0-use.local resolution: "adobe-dev-console@workspace:." dependencies: - "@adobe/gatsby-theme-aio": ^4.10.4 + "@adobe/gatsby-theme-aio": ^4.14.4 gatsby: 4.22.0 react: ^17.0.2 react-dom: ^17.0.2 @@ -7071,6 +10122,13 @@ __metadata: languageName: node linkType: hard +"client-only@npm:^0.0.1": + version: 0.0.1 + resolution: "client-only@npm:0.0.1" + checksum: 0c16bf660dadb90610553c1d8946a7fdfb81d624adea073b8440b7d795d5b5b08beb3c950c6a2cf16279365a3265158a236876d92bce16423c485c322d7dfaf8 + languageName: node + linkType: hard + "clipboardy@npm:^2.3.0": version: 2.3.0 resolution: "clipboardy@npm:2.3.0" @@ -7145,6 +10203,13 @@ __metadata: languageName: node linkType: hard +"clsx@npm:^2.0.0": + version: 2.1.1 + resolution: "clsx@npm:2.1.1" + checksum: acd3e1ab9d8a433ecb3cc2f6a05ab95fe50b4a3cfc5ba47abb6cbf3754585fcb87b84e90c822a1f256c4198e3b41c7f6c391577ffc8678ad587fc0976b24fd57 + languageName: node + linkType: hard + "collapse-white-space@npm:^1.0.2": version: 1.0.6 resolution: "collapse-white-space@npm:1.0.6" @@ -8381,6 +11446,16 @@ __metadata: languageName: node linkType: hard +"dom-helpers@npm:^5.0.1": + version: 5.2.1 + resolution: "dom-helpers@npm:5.2.1" + dependencies: + "@babel/runtime": ^7.8.7 + csstype: ^3.0.2 + checksum: 863ba9e086f7093df3376b43e74ce4422571d404fc9828bf2c56140963d5edf0e56160f9b2f3bb61b282c07f8fc8134f023c98fd684bddcb12daf7b0f14d951c + languageName: node + linkType: hard + "dom-serializer@npm:0": version: 0.2.2 resolution: "dom-serializer@npm:0.2.2" @@ -12130,6 +15205,18 @@ __metadata: languageName: node linkType: hard +"intl-messageformat@npm:^10.1.0": + version: 10.5.14 + resolution: "intl-messageformat@npm:10.5.14" + dependencies: + "@formatjs/ecma402-abstract": 2.0.0 + "@formatjs/fast-memoize": 2.2.0 + "@formatjs/icu-messageformat-parser": 2.7.8 + tslib: ^2.4.0 + checksum: 7aaed153283eb83720d72df7757390515a79a1823ea9f4191c69859f1e5dd0d9a7463e5f9186fe77a31414ed98fc81619fb4c838ffdf6d481b1b370403337ca3 + languageName: node + linkType: hard + "invariant@npm:^2.2.3, invariant@npm:^2.2.4": version: 2.2.4 resolution: "invariant@npm:2.2.4" @@ -16846,14 +19933,12 @@ __metadata: languageName: node linkType: hard -"preact-render-to-string@npm:^5.2.4": - version: 5.2.6 - resolution: "preact-render-to-string@npm:5.2.6" - dependencies: - pretty-format: ^3.8.0 +"preact-render-to-string@npm:^6.5.5": + version: 6.5.5 + resolution: "preact-render-to-string@npm:6.5.5" peerDependencies: preact: ">=10" - checksum: be8d5d8fb502d422c503e68af7bcccb6facd942f3ae9a4d093ebe3f1d4f0b15c540624bdac434d53a2a8e8fb7afa4606383414e937c40933ca43445470a026ff + checksum: 4b2309be252d25b85a6c942e1874560eb19d2b0efa9a0aa247ad4b882b0de0f812a28a94d8d9b9ef5c9a3c3d27e8291e7ee529f95a480447ee48022a73a6465f languageName: node linkType: hard @@ -16902,13 +19987,6 @@ __metadata: languageName: node linkType: hard -"pretty-format@npm:^3.8.0": - version: 3.8.0 - resolution: "pretty-format@npm:3.8.0" - checksum: 21a114d43ef06978f8f7f6212be4649b0b094f05d9b30e14e37550bf35c8ca24d8adbca9e5adc4cc15d9eaf7a1e7a30478a4dc37b30982bfdf0292a5b385484c - languageName: node - linkType: hard - "prism-react-renderer@npm:1.3.5": version: 1.3.5 resolution: "prism-react-renderer@npm:1.3.5" @@ -16993,7 +20071,7 @@ __metadata: languageName: node linkType: hard -"prop-types@npm:^15.5.0, prop-types@npm:^15.6.1, prop-types@npm:^15.7.2, prop-types@npm:^15.8.1": +"prop-types@npm:^15.5.0, prop-types@npm:^15.6.1, prop-types@npm:^15.6.2, prop-types@npm:^15.7.2, prop-types@npm:^15.8.1": version: 15.8.1 resolution: "prop-types@npm:15.8.1" dependencies: @@ -17252,6 +20330,88 @@ __metadata: languageName: node linkType: hard +"react-aria-components@npm:^1.2.1": + version: 1.2.1 + resolution: "react-aria-components@npm:1.2.1" + dependencies: + "@internationalized/date": ^3.5.4 + "@internationalized/string": ^3.2.3 + "@react-aria/color": 3.0.0-beta.33 + "@react-aria/focus": ^3.17.1 + "@react-aria/interactions": ^3.21.3 + "@react-aria/menu": ^3.14.1 + "@react-aria/toolbar": 3.0.0-beta.5 + "@react-aria/tree": 3.0.0-alpha.1 + "@react-aria/utils": ^3.24.1 + "@react-stately/color": ^3.6.1 + "@react-stately/menu": ^3.7.1 + "@react-stately/table": ^3.11.8 + "@react-stately/utils": ^3.10.1 + "@react-types/color": 3.0.0-beta.25 + "@react-types/form": ^3.7.4 + "@react-types/grid": ^3.2.6 + "@react-types/shared": ^3.23.1 + "@react-types/table": ^3.9.5 + "@swc/helpers": ^0.5.0 + client-only: ^0.0.1 + react-aria: ^3.33.1 + react-stately: ^3.31.1 + use-sync-external-store: ^1.2.0 + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: 0fe228c1a261aa3eae95837d4396da9e62c74ec65d7a52047fba599a4da406a39ff5bbdf0500ba5da568ba683014617e9587dfebc6835b7059296aafc90343c2 + languageName: node + linkType: hard + +"react-aria@npm:^3.33.1": + version: 3.33.1 + resolution: "react-aria@npm:3.33.1" + dependencies: + "@internationalized/string": ^3.2.3 + "@react-aria/breadcrumbs": ^3.5.13 + "@react-aria/button": ^3.9.5 + "@react-aria/calendar": ^3.5.8 + "@react-aria/checkbox": ^3.14.3 + "@react-aria/combobox": ^3.9.1 + "@react-aria/datepicker": ^3.10.1 + "@react-aria/dialog": ^3.5.14 + "@react-aria/dnd": ^3.6.1 + "@react-aria/focus": ^3.17.1 + "@react-aria/gridlist": ^3.8.1 + "@react-aria/i18n": ^3.11.1 + "@react-aria/interactions": ^3.21.3 + "@react-aria/label": ^3.7.8 + "@react-aria/link": ^3.7.1 + "@react-aria/listbox": ^3.12.1 + "@react-aria/menu": ^3.14.1 + "@react-aria/meter": ^3.4.13 + "@react-aria/numberfield": ^3.11.3 + "@react-aria/overlays": ^3.22.1 + "@react-aria/progress": ^3.4.13 + "@react-aria/radio": ^3.10.4 + "@react-aria/searchfield": ^3.7.5 + "@react-aria/select": ^3.14.5 + "@react-aria/selection": ^3.18.1 + "@react-aria/separator": ^3.3.13 + "@react-aria/slider": ^3.7.8 + "@react-aria/ssr": ^3.9.4 + "@react-aria/switch": ^3.6.4 + "@react-aria/table": ^3.14.1 + "@react-aria/tabs": ^3.9.1 + "@react-aria/tag": ^3.4.1 + "@react-aria/textfield": ^3.14.5 + "@react-aria/tooltip": ^3.7.4 + "@react-aria/utils": ^3.24.1 + "@react-aria/visually-hidden": ^3.8.12 + "@react-types/shared": ^3.23.1 + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: 5b63055ec390669e0e9d239ac1f2018d97a1eb339692c597160071898365d8f48e2d0c19a5e8eff421a72b2964b87121f15251f682ceed578b07d7f6f6c7274d + languageName: node + linkType: hard + "react-dev-utils@npm:^12.0.1": version: 12.0.1 resolution: "react-dev-utils@npm:12.0.1" @@ -17371,6 +20531,39 @@ __metadata: languageName: node linkType: hard +"react-stately@npm:^3.31.1": + version: 3.31.1 + resolution: "react-stately@npm:3.31.1" + dependencies: + "@react-stately/calendar": ^3.5.1 + "@react-stately/checkbox": ^3.6.5 + "@react-stately/collections": ^3.10.7 + "@react-stately/combobox": ^3.8.4 + "@react-stately/data": ^3.11.4 + "@react-stately/datepicker": ^3.9.4 + "@react-stately/dnd": ^3.3.1 + "@react-stately/form": ^3.0.3 + "@react-stately/list": ^3.10.5 + "@react-stately/menu": ^3.7.1 + "@react-stately/numberfield": ^3.9.3 + "@react-stately/overlays": ^3.6.7 + "@react-stately/radio": ^3.10.4 + "@react-stately/searchfield": ^3.5.3 + "@react-stately/select": ^3.6.4 + "@react-stately/selection": ^3.15.1 + "@react-stately/slider": ^3.5.4 + "@react-stately/table": ^3.11.8 + "@react-stately/tabs": ^3.6.6 + "@react-stately/toggle": ^3.7.4 + "@react-stately/tooltip": ^3.4.9 + "@react-stately/tree": ^3.8.1 + "@react-types/shared": ^3.23.1 + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: 5b3c97e24cc5971f2059bb2a45c9fbba1eb51ca385bddbb88a22d4a2051eb248c494a93cb61d3cdaf242c855c82b97521b6be3436438c5b5e0da8a40aef84b76 + languageName: node + linkType: hard + "react-tabs@npm:^3.2.2": version: 3.2.3 resolution: "react-tabs@npm:3.2.3" @@ -17383,6 +20576,21 @@ __metadata: languageName: node linkType: hard +"react-transition-group@npm:^4.4.5": + version: 4.4.5 + resolution: "react-transition-group@npm:4.4.5" + dependencies: + "@babel/runtime": ^7.5.5 + dom-helpers: ^5.0.1 + loose-envify: ^1.4.0 + prop-types: ^15.6.2 + peerDependencies: + react: ">=16.6.0" + react-dom: ">=16.6.0" + checksum: 75602840106aa9c6545149d6d7ae1502fb7b7abadcce70a6954c4b64a438ff1cd16fc77a0a1e5197cdd72da398f39eb929ea06f9005c45b132ed34e056ebdeb1 + languageName: node + linkType: hard + "react@npm:^17.0.1, react@npm:^17.0.2": version: 17.0.2 resolution: "react@npm:17.0.2" @@ -20829,6 +24037,15 @@ __metadata: languageName: node linkType: hard +"use-sync-external-store@npm:^1.2.0": + version: 1.2.2 + resolution: "use-sync-external-store@npm:1.2.2" + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + checksum: fe07c071c4da3645f112c38c0e57beb479a8838616ff4e92598256ecce527f2888c08febc7f9b2f0ce2f0e18540ba3cde41eb2035e4fafcb4f52955037098a81 + languageName: node + linkType: hard + "utif@npm:^2.0.1": version: 2.0.1 resolution: "utif@npm:2.0.1"