diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 4687d04aa9..3d36676762 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -9,11 +9,67 @@ updates: directory: "/" schedule: interval: "weekly" + reviewers: + - "ngpixel" - package-ecosystem: "docker" directory: "/docker" schedule: interval: "weekly" + reviewers: + - "ngpixel" - package-ecosystem: "pip" directory: "/" schedule: interval: "weekly" + reviewers: + - "rjsparks" + - package-ecosystem: "npm" + directory: "/" + schedule: + interval: "weekly" + reviewers: + - "ngpixel" + groups: + yarn: + patterns: + - "*" + - package-ecosystem: "npm" + directory: "/playwright" + schedule: + interval: "weekly" + reviewers: + - "ngpixel" + groups: + npm: + patterns: + - "*" + - package-ecosystem: "npm" + directory: "/dev/coverage-action" + schedule: + interval: "weekly" + reviewers: + - "ngpixel" + groups: + npm: + patterns: + - "*" + - package-ecosystem: "npm" + directory: "/dev/deploy-to-container" + schedule: + interval: "weekly" + reviewers: + - "ngpixel" + groups: + npm: + patterns: + - "*" + - package-ecosystem: "npm" + directory: "/dev/diff" + schedule: + interval: "weekly" + reviewers: + - "ngpixel" + groups: + npm: + patterns: + - "*" diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 251d576c07..6787afce11 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -17,6 +17,11 @@ on: default: true required: true type: boolean + sandboxNoDbRefresh: + description: 'Sandbox Disable Daily DB Refresh' + default: false + required: true + type: boolean legacySandbox: description: 'Deploy to Legacy Sandbox' default: false @@ -54,7 +59,8 @@ jobs: steps: - uses: actions/checkout@v4 with: - fetch-depth: 0 + fetch-depth: 1 + fetch-tags: false - name: Get Next Version if: ${{ github.ref_name == 'release' }} @@ -126,7 +132,8 @@ jobs: steps: - uses: actions/checkout@v4 with: - fetch-depth: 0 + fetch-depth: 1 + fetch-tags: false - name: Setup Node.js uses: actions/setup-node@v4 @@ -134,13 +141,13 @@ jobs: node-version: '16' - name: Setup Python - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: '3.x' - name: Download a Coverage Results if: ${{ github.event.inputs.skiptests == 'false' || github.ref_name == 'release' }} - uses: actions/download-artifact@v3.0.2 + uses: actions/download-artifact@v4.1.1 with: name: coverage @@ -172,6 +179,20 @@ jobs: echo "Build release tarball..." mkdir -p /home/runner/work/release tar -czf /home/runner/work/release/release.tar.gz -X dev/deploy/exclude-patterns.txt . + + - name: Collect + Push Statics + env: + DEBIAN_FRONTEND: noninteractive + AWS_ACCESS_KEY_ID: ${{ secrets.CF_R2_KEY_ID }} + AWS_SECRET_ACCESS_KEY: ${{ secrets.CF_R2_KEY_SECRET }} + AWS_DEFAULT_REGION: auto + AWS_ENDPOINT_URL: ${{ secrets.CF_R2_ENDPOINT }} + run: | + echo "Collecting statics..." + docker run --rm --name collectstatics -v $(pwd):/workspace ghcr.io/ietf-tools/datatracker-app-base:latest sh dev/deploy/collectstatics.sh + echo "Pushing statics..." + cd static + aws s3 sync . s3://static/dt/$PKG_VERSION --only-show-errors - name: Update CHANGELOG id: changelog @@ -229,7 +250,7 @@ jobs: token: ${{ secrets.GITHUB_TOKEN }} - name: Upload Build Artifacts - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: release-${{ env.PKG_VERSION }} path: /home/runner/work/release/release.tar.gz @@ -310,7 +331,7 @@ jobs: - uses: actions/checkout@v4 - name: Download a Release Artifact - uses: actions/download-artifact@v3.0.2 + uses: actions/download-artifact@v4.1.1 with: name: release-${{ env.PKG_VERSION }} @@ -325,7 +346,7 @@ jobs: npm ci cd ../.. echo "Start Deploy..." - node ./dev/deploy-to-container/cli.js --branch ${{ github.ref_name }} --domain dev.ietf.org --appversion ${{ env.PKG_VERSION }} --commit ${{ github.sha }} --ghrunid ${{ github.run_id }} + node ./dev/deploy-to-container/cli.js --branch ${{ github.ref_name }} --domain dev.ietf.org --appversion ${{ env.PKG_VERSION }} --commit ${{ github.sha }} --ghrunid ${{ github.run_id }} --nodbrefresh ${{ github.event.inputs.sandboxNoDbRefresh }} - name: Cleanup old docker resources env: @@ -346,7 +367,7 @@ jobs: steps: - name: Download a Release Artifact - uses: actions/download-artifact@v3.0.2 + uses: actions/download-artifact@v4.1.1 with: name: release-${{ env.PKG_VERSION }} path: /a/www/ietf-datatracker/main.dev.${{ github.run_number }} diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 89350b6411..3444c03b5e 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -29,9 +29,9 @@ jobs: uses: actions/checkout@v4 - name: Initialize CodeQL - uses: github/codeql-action/init@v2 + uses: github/codeql-action/init@v3 with: languages: ${{ matrix.language }} - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@v2 + uses: github/codeql-action/analyze@v3 diff --git a/.github/workflows/dependency-review.yml b/.github/workflows/dependency-review.yml index 4e75197790..ede6157541 100644 --- a/.github/workflows/dependency-review.yml +++ b/.github/workflows/dependency-review.yml @@ -18,3 +18,5 @@ jobs: uses: actions/checkout@v4 - name: 'Dependency Review' uses: actions/dependency-review-action@v3 + with: + vulnerability-check: false diff --git a/.github/workflows/tests-az.yml b/.github/workflows/tests-az.yml index 6964f355a3..bfd1fdd584 100644 --- a/.github/workflows/tests-az.yml +++ b/.github/workflows/tests-az.yml @@ -38,7 +38,7 @@ jobs: ssh-keyscan -t rsa $vminfo >> ~/.ssh/known_hosts - name: Remote SSH into VM - uses: appleboy/ssh-action@55dabf81b49d4120609345970c91507e2d734799 + uses: appleboy/ssh-action@029f5b4aeeeb58fdfe1410a5d17f967dacf36262 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 31150ed99b..a3a6135f9c 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -52,7 +52,7 @@ jobs: coverage xml - name: Upload geckodriver.log - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: ${{ failure() }} with: name: geckodriverlog @@ -69,7 +69,7 @@ jobs: mv latest-coverage.json coverage.json - name: Upload Coverage Results as Build Artifact - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: ${{ always() }} with: name: coverage @@ -103,7 +103,7 @@ jobs: npx playwright test --project=${{ matrix.project }} - name: Upload Report - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: ${{ always() }} continue-on-error: true with: @@ -162,7 +162,7 @@ jobs: npx playwright test --project=${{ matrix.project }} -c playwright-legacy.config.js - name: Upload Report - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: ${{ always() }} continue-on-error: true with: diff --git a/.gitignore b/.gitignore index 80e5f0228b..4de5e53ac3 100644 --- a/.gitignore +++ b/.gitignore @@ -23,6 +23,7 @@ datatracker.sublime-workspace /media /node_modules /release-coverage.json +/static /tmp-* /.testresult *.pyc diff --git a/.pnp.cjs b/.pnp.cjs index 436846301a..1748d71613 100644 --- a/.pnp.cjs +++ b/.pnp.cjs @@ -33,40 +33,40 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { [null, {\ "packageLocation": "./",\ "packageDependencies": [\ - ["@fullcalendar/bootstrap5", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:6.1.9"],\ - ["@fullcalendar/core", "npm:6.1.9"],\ - ["@fullcalendar/daygrid", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:6.1.9"],\ - ["@fullcalendar/icalendar", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:6.1.9"],\ - ["@fullcalendar/interaction", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:6.1.9"],\ - ["@fullcalendar/list", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:6.1.9"],\ - ["@fullcalendar/luxon3", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:6.1.9"],\ - ["@fullcalendar/timegrid", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:6.1.9"],\ - ["@fullcalendar/vue3", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:6.1.9"],\ - ["@parcel/optimizer-data-url", "npm:2.10.0"],\ - ["@parcel/transformer-inline-string", "npm:2.10.0"],\ - ["@parcel/transformer-sass", "npm:2.10.0"],\ + ["@fullcalendar/bootstrap5", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:6.1.10"],\ + ["@fullcalendar/core", "npm:6.1.10"],\ + ["@fullcalendar/daygrid", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:6.1.10"],\ + ["@fullcalendar/icalendar", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:6.1.10"],\ + ["@fullcalendar/interaction", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:6.1.10"],\ + ["@fullcalendar/list", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:6.1.10"],\ + ["@fullcalendar/luxon3", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:6.1.10"],\ + ["@fullcalendar/timegrid", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:6.1.10"],\ + ["@fullcalendar/vue3", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:6.1.10"],\ + ["@parcel/optimizer-data-url", "npm:2.11.0"],\ + ["@parcel/transformer-inline-string", "npm:2.11.0"],\ + ["@parcel/transformer-sass", "npm:2.11.0"],\ ["@popperjs/core", "npm:2.11.8"],\ - ["@rollup/pluginutils", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:5.0.5"],\ + ["@rollup/pluginutils", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:5.1.0"],\ ["@twuni/emojify", "npm:1.0.2"],\ - ["@vitejs/plugin-vue", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:4.4.0"],\ + ["@vitejs/plugin-vue", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:4.6.2"],\ ["bootstrap", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:5.3.2"],\ - ["bootstrap-icons", "npm:1.11.1"],\ + ["bootstrap-icons", "npm:1.11.3"],\ ["browser-fs-access", "npm:0.35.0"],\ ["browserlist", "npm:1.0.1"],\ - ["c8", "npm:8.0.1"],\ - ["caniuse-lite", "npm:1.0.30001538"],\ + ["c8", "npm:9.1.0"],\ + ["caniuse-lite", "npm:1.0.30001576"],\ ["d3", "npm:7.8.5"],\ - ["eslint", "npm:8.52.0"],\ + ["eslint", "npm:8.56.0"],\ ["eslint-config-standard", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:17.1.0"],\ ["eslint-plugin-cypress", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:2.15.1"],\ - ["eslint-plugin-import", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:2.29.0"],\ - ["eslint-plugin-n", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:16.2.0"],\ + ["eslint-plugin-import", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:2.29.1"],\ + ["eslint-plugin-n", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:16.6.2"],\ ["eslint-plugin-node", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:11.1.0"],\ ["eslint-plugin-promise", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:6.1.1"],\ - ["eslint-plugin-vue", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:9.18.1"],\ + ["eslint-plugin-vue", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:9.20.1"],\ ["file-saver", "npm:2.0.5"],\ - ["highcharts", "npm:11.1.0"],\ - ["html-validate", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:8.7.0"],\ + ["highcharts", "npm:11.3.0"],\ + ["html-validate", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:8.9.1"],\ ["ical.js", "npm:1.5.0"],\ ["jquery", "npm:3.7.1"],\ ["jquery-migrate", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:3.4.1"],\ @@ -74,27 +74,27 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ["list.js", "npm:2.3.1"],\ ["lodash", "npm:4.17.21"],\ ["lodash-es", "npm:4.17.21"],\ - ["luxon", "npm:3.4.3"],\ - ["moment", "npm:2.29.4"],\ - ["moment-timezone", "npm:0.5.43"],\ + ["luxon", "npm:3.4.4"],\ + ["moment", "npm:2.30.1"],\ + ["moment-timezone", "npm:0.5.44"],\ ["ms", "npm:2.1.3"],\ ["murmurhash-js", "npm:1.0.0"],\ - ["naive-ui", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:2.35.0"],\ - ["parcel", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:2.10.0"],\ + ["naive-ui", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:2.37.3"],\ + ["parcel", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:2.11.0"],\ ["pinia", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:2.1.7"],\ ["pinia-plugin-persist", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:1.0.0"],\ ["pug", "npm:3.0.2"],\ - ["sass", "npm:1.69.4"],\ + ["sass", "npm:1.69.7"],\ ["seedrandom", "npm:3.0.5"],\ ["select2", "npm:4.1.0-rc.0"],\ ["select2-bootstrap-5-theme", "npm:1.3.0"],\ ["send", "npm:0.18.0"],\ ["shepherd.js", "npm:11.2.0"],\ ["slugify", "npm:1.6.6"],\ - ["sortablejs", "npm:1.15.0"],\ + ["sortablejs", "npm:1.15.2"],\ ["vanillajs-datepicker", "npm:1.3.4"],\ - ["vite", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:4.5.0"],\ - ["vue", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:3.3.7"],\ + ["vite", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:4.5.1"],\ + ["vue", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:3.4.13"],\ ["vue-router", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:4.2.5"],\ ["zxcvbn", "npm:4.4.2"]\ ],\ @@ -150,10 +150,10 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ "linkType": "HARD"\ }],\ - ["npm:7.23.0", {\ - "packageLocation": "./.yarn/cache/@babel-parser-npm-7.23.0-8a7b151672-453fdf8b9e.zip/node_modules/@babel/parser/",\ + ["npm:7.23.6", {\ + "packageLocation": "./.yarn/cache/@babel-parser-npm-7.23.6-2fad283d6e-140801c437.zip/node_modules/@babel/parser/",\ "packageDependencies": [\ - ["@babel/parser", "npm:7.23.0"],\ + ["@babel/parser", "npm:7.23.6"],\ ["@babel/types", "npm:7.18.4"]\ ],\ "linkType": "HARD"\ @@ -197,10 +197,10 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ "linkType": "SOFT"\ }],\ - ["virtual:d5901c8fe9a0c32ef9bd30914b8624afdd53ad520846726499200f014090a72c0a1d5e3737654e39af21acf7bf6f0993bedc3c908b3b8804daa47faed23d0085#npm:0.15.12", {\ - "packageLocation": "./.yarn/__virtual__/@css-render-plugin-bem-virtual-3ee8479233/0/cache/@css-render-plugin-bem-npm-0.15.12-bf8b43dc1f-9fa7ddd62b.zip/node_modules/@css-render/plugin-bem/",\ + ["virtual:9083f0b60f7ff3c9457189a27c2996ceed17cab3520ae1c32ab5e5244b992c3c8baaf999ad3c2b19ef13e1964e3197201ef68b1b3153ac72686293207b8892cf#npm:0.15.12", {\ + "packageLocation": "./.yarn/__virtual__/@css-render-plugin-bem-virtual-d9ac2a6c62/0/cache/@css-render-plugin-bem-npm-0.15.12-bf8b43dc1f-9fa7ddd62b.zip/node_modules/@css-render/plugin-bem/",\ "packageDependencies": [\ - ["@css-render/plugin-bem", "virtual:d5901c8fe9a0c32ef9bd30914b8624afdd53ad520846726499200f014090a72c0a1d5e3737654e39af21acf7bf6f0993bedc3c908b3b8804daa47faed23d0085#npm:0.15.12"],\ + ["@css-render/plugin-bem", "virtual:9083f0b60f7ff3c9457189a27c2996ceed17cab3520ae1c32ab5e5244b992c3c8baaf999ad3c2b19ef13e1964e3197201ef68b1b3153ac72686293207b8892cf#npm:0.15.12"],\ ["@types/css-render", null],\ ["css-render", "npm:0.15.12"]\ ],\ @@ -226,12 +226,12 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ "linkType": "SOFT"\ }],\ - ["virtual:07229bbf54bc488d21e48f65df3fcd2cdabd1e401dfffccce7403d04695be90e478a0d508694f896481602b0f9db804b9f384dfa051fe08e896fd18fd1fe0b6b#npm:0.15.10", {\ - "packageLocation": "./.yarn/__virtual__/@css-render-vue3-ssr-virtual-5eb3a62c1f/0/cache/@css-render-vue3-ssr-npm-0.15.10-b8526cc313-7977e0c440.zip/node_modules/@css-render/vue3-ssr/",\ + ["virtual:535ce3a5bf8429bbdd476b0f4bedb68cb91a1d57eac35720679464b7eeafc062414751fda54be317bf7e7886eec3b33992730a480671dc4d6974fd45406b1082#npm:0.15.10", {\ + "packageLocation": "./.yarn/__virtual__/@css-render-vue3-ssr-virtual-91b853c8a1/0/cache/@css-render-vue3-ssr-npm-0.15.10-b8526cc313-7977e0c440.zip/node_modules/@css-render/vue3-ssr/",\ "packageDependencies": [\ - ["@css-render/vue3-ssr", "virtual:07229bbf54bc488d21e48f65df3fcd2cdabd1e401dfffccce7403d04695be90e478a0d508694f896481602b0f9db804b9f384dfa051fe08e896fd18fd1fe0b6b#npm:0.15.10"],\ + ["@css-render/vue3-ssr", "virtual:535ce3a5bf8429bbdd476b0f4bedb68cb91a1d57eac35720679464b7eeafc062414751fda54be317bf7e7886eec3b33992730a480671dc4d6974fd45406b1082#npm:0.15.10"],\ ["@types/vue", null],\ - ["vue", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:3.3.7"]\ + ["vue", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:3.4.13"]\ ],\ "packagePeers": [\ "@types/vue",\ @@ -239,12 +239,12 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ "linkType": "HARD"\ }],\ - ["virtual:d5901c8fe9a0c32ef9bd30914b8624afdd53ad520846726499200f014090a72c0a1d5e3737654e39af21acf7bf6f0993bedc3c908b3b8804daa47faed23d0085#npm:0.15.12", {\ - "packageLocation": "./.yarn/__virtual__/@css-render-vue3-ssr-virtual-f9b68b2e9d/0/cache/@css-render-vue3-ssr-npm-0.15.12-a130f4db3a-a5505ae161.zip/node_modules/@css-render/vue3-ssr/",\ + ["virtual:9083f0b60f7ff3c9457189a27c2996ceed17cab3520ae1c32ab5e5244b992c3c8baaf999ad3c2b19ef13e1964e3197201ef68b1b3153ac72686293207b8892cf#npm:0.15.12", {\ + "packageLocation": "./.yarn/__virtual__/@css-render-vue3-ssr-virtual-94c9b287b4/0/cache/@css-render-vue3-ssr-npm-0.15.12-a130f4db3a-a5505ae161.zip/node_modules/@css-render/vue3-ssr/",\ "packageDependencies": [\ - ["@css-render/vue3-ssr", "virtual:d5901c8fe9a0c32ef9bd30914b8624afdd53ad520846726499200f014090a72c0a1d5e3737654e39af21acf7bf6f0993bedc3c908b3b8804daa47faed23d0085#npm:0.15.12"],\ + ["@css-render/vue3-ssr", "virtual:9083f0b60f7ff3c9457189a27c2996ceed17cab3520ae1c32ab5e5244b992c3c8baaf999ad3c2b19ef13e1964e3197201ef68b1b3153ac72686293207b8892cf#npm:0.15.12"],\ ["@types/vue", null],\ - ["vue", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:3.3.7"]\ + ["vue", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:3.4.13"]\ ],\ "packagePeers": [\ "@types/vue",\ @@ -468,12 +468,12 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ "linkType": "SOFT"\ }],\ - ["virtual:e7f048a4398cf12bbd1cde95eff45a3327b9fe42e04c31ed99d0e926830d0b78ff78b511118c2bd3bc6add84782ab97a5b001e972071d6fdbfe85a86c150922a#npm:4.4.0", {\ - "packageLocation": "./.yarn/__virtual__/@eslint-community-eslint-utils-virtual-a282c466c0/0/cache/@eslint-community-eslint-utils-npm-4.4.0-d1791bd5a3-cdfe3ae42b.zip/node_modules/@eslint-community/eslint-utils/",\ + ["virtual:6eec398a4132b5372ea5ffc0bc36d4c81602b7e444a89685d0d958016d8fd53df5c0c97c6a8bf99951469e2c6c06135dd192e9309f6e39b1a4c85e0faabe1f6b#npm:4.4.0", {\ + "packageLocation": "./.yarn/__virtual__/@eslint-community-eslint-utils-virtual-719be7711d/0/cache/@eslint-community-eslint-utils-npm-4.4.0-d1791bd5a3-cdfe3ae42b.zip/node_modules/@eslint-community/eslint-utils/",\ "packageDependencies": [\ - ["@eslint-community/eslint-utils", "virtual:e7f048a4398cf12bbd1cde95eff45a3327b9fe42e04c31ed99d0e926830d0b78ff78b511118c2bd3bc6add84782ab97a5b001e972071d6fdbfe85a86c150922a#npm:4.4.0"],\ + ["@eslint-community/eslint-utils", "virtual:6eec398a4132b5372ea5ffc0bc36d4c81602b7e444a89685d0d958016d8fd53df5c0c97c6a8bf99951469e2c6c06135dd192e9309f6e39b1a4c85e0faabe1f6b#npm:4.4.0"],\ ["@types/eslint", null],\ - ["eslint", "npm:8.52.0"],\ + ["eslint", "npm:8.56.0"],\ ["eslint-visitor-keys", "npm:3.3.0"]\ ],\ "packagePeers": [\ @@ -484,10 +484,10 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["@eslint-community/regexpp", [\ - ["npm:4.5.1", {\ - "packageLocation": "./.yarn/cache/@eslint-community-regexpp-npm-4.5.1-bf72922237-6d901166d6.zip/node_modules/@eslint-community/regexpp/",\ + ["npm:4.10.0", {\ + "packageLocation": "./.yarn/cache/@eslint-community-regexpp-npm-4.10.0-6bfb984c81-2a6e345429.zip/node_modules/@eslint-community/regexpp/",\ "packageDependencies": [\ - ["@eslint-community/regexpp", "npm:4.5.1"]\ + ["@eslint-community/regexpp", "npm:4.10.0"]\ ],\ "linkType": "HARD"\ }],\ @@ -500,10 +500,10 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["@eslint/eslintrc", [\ - ["npm:2.1.2", {\ - "packageLocation": "./.yarn/cache/@eslint-eslintrc-npm-2.1.2-feb0771c9f-bc742a1e3b.zip/node_modules/@eslint/eslintrc/",\ + ["npm:2.1.4", {\ + "packageLocation": "./.yarn/cache/@eslint-eslintrc-npm-2.1.4-1ff4b5f908-10957c7592.zip/node_modules/@eslint/eslintrc/",\ "packageDependencies": [\ - ["@eslint/eslintrc", "npm:2.1.2"],\ + ["@eslint/eslintrc", "npm:2.1.4"],\ ["ajv", "npm:6.12.6"],\ ["debug", "virtual:b86a9fb34323a98c6519528ed55faa0d9b44ca8879307c0b29aa384bde47ff59a7d0c9051b31246f14521dfb71ba3c5d6d0b35c29fffc17bf875aa6ad977d9e8#npm:4.3.4"],\ ["espree", "npm:9.6.1"],\ @@ -518,10 +518,10 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["@eslint/js", [\ - ["npm:8.52.0", {\ - "packageLocation": "./.yarn/cache/@eslint-js-npm-8.52.0-801dbdf7b0-490893b809.zip/node_modules/@eslint/js/",\ + ["npm:8.56.0", {\ + "packageLocation": "./.yarn/cache/@eslint-js-npm-8.56.0-b1de08cbff-5804130574.zip/node_modules/@eslint/js/",\ "packageDependencies": [\ - ["@eslint/js", "npm:8.52.0"]\ + ["@eslint/js", "npm:8.56.0"]\ ],\ "linkType": "HARD"\ }]\ @@ -557,18 +557,18 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["@fullcalendar/bootstrap5", [\ - ["npm:6.1.9", {\ - "packageLocation": "./.yarn/cache/@fullcalendar-bootstrap5-npm-6.1.9-ef68c3c094-1d6168fafc.zip/node_modules/@fullcalendar/bootstrap5/",\ + ["npm:6.1.10", {\ + "packageLocation": "./.yarn/cache/@fullcalendar-bootstrap5-npm-6.1.10-70ad258cef-f0f80125f2.zip/node_modules/@fullcalendar/bootstrap5/",\ "packageDependencies": [\ - ["@fullcalendar/bootstrap5", "npm:6.1.9"]\ + ["@fullcalendar/bootstrap5", "npm:6.1.10"]\ ],\ "linkType": "SOFT"\ }],\ - ["virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:6.1.9", {\ - "packageLocation": "./.yarn/__virtual__/@fullcalendar-bootstrap5-virtual-32a9d3c1d6/0/cache/@fullcalendar-bootstrap5-npm-6.1.9-ef68c3c094-1d6168fafc.zip/node_modules/@fullcalendar/bootstrap5/",\ + ["virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:6.1.10", {\ + "packageLocation": "./.yarn/__virtual__/@fullcalendar-bootstrap5-virtual-ca25533e1a/0/cache/@fullcalendar-bootstrap5-npm-6.1.10-70ad258cef-f0f80125f2.zip/node_modules/@fullcalendar/bootstrap5/",\ "packageDependencies": [\ - ["@fullcalendar/bootstrap5", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:6.1.9"],\ - ["@fullcalendar/core", "npm:6.1.9"],\ + ["@fullcalendar/bootstrap5", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:6.1.10"],\ + ["@fullcalendar/core", "npm:6.1.10"],\ ["@types/fullcalendar__core", null]\ ],\ "packagePeers": [\ @@ -579,28 +579,28 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["@fullcalendar/core", [\ - ["npm:6.1.9", {\ - "packageLocation": "./.yarn/cache/@fullcalendar-core-npm-6.1.9-b4da84d4b8-836db3e40c.zip/node_modules/@fullcalendar/core/",\ + ["npm:6.1.10", {\ + "packageLocation": "./.yarn/cache/@fullcalendar-core-npm-6.1.10-15efba3167-88f0feb447.zip/node_modules/@fullcalendar/core/",\ "packageDependencies": [\ - ["@fullcalendar/core", "npm:6.1.9"],\ + ["@fullcalendar/core", "npm:6.1.10"],\ ["preact", "npm:10.12.1"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["@fullcalendar/daygrid", [\ - ["npm:6.1.9", {\ - "packageLocation": "./.yarn/cache/@fullcalendar-daygrid-npm-6.1.9-4c0da59f84-3db55247c4.zip/node_modules/@fullcalendar/daygrid/",\ + ["npm:6.1.10", {\ + "packageLocation": "./.yarn/cache/@fullcalendar-daygrid-npm-6.1.10-398fef213d-4b125e57fa.zip/node_modules/@fullcalendar/daygrid/",\ "packageDependencies": [\ - ["@fullcalendar/daygrid", "npm:6.1.9"]\ + ["@fullcalendar/daygrid", "npm:6.1.10"]\ ],\ "linkType": "SOFT"\ }],\ - ["virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:6.1.9", {\ - "packageLocation": "./.yarn/__virtual__/@fullcalendar-daygrid-virtual-8030f0f5bf/0/cache/@fullcalendar-daygrid-npm-6.1.9-4c0da59f84-3db55247c4.zip/node_modules/@fullcalendar/daygrid/",\ + ["virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:6.1.10", {\ + "packageLocation": "./.yarn/__virtual__/@fullcalendar-daygrid-virtual-a2bcbb66ff/0/cache/@fullcalendar-daygrid-npm-6.1.10-398fef213d-4b125e57fa.zip/node_modules/@fullcalendar/daygrid/",\ "packageDependencies": [\ - ["@fullcalendar/daygrid", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:6.1.9"],\ - ["@fullcalendar/core", "npm:6.1.9"],\ + ["@fullcalendar/daygrid", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:6.1.10"],\ + ["@fullcalendar/core", "npm:6.1.10"],\ ["@types/fullcalendar__core", null]\ ],\ "packagePeers": [\ @@ -611,18 +611,18 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["@fullcalendar/icalendar", [\ - ["npm:6.1.9", {\ - "packageLocation": "./.yarn/cache/@fullcalendar-icalendar-npm-6.1.9-92e390eda8-d47daf4ae0.zip/node_modules/@fullcalendar/icalendar/",\ + ["npm:6.1.10", {\ + "packageLocation": "./.yarn/cache/@fullcalendar-icalendar-npm-6.1.10-2455be620e-db04224357.zip/node_modules/@fullcalendar/icalendar/",\ "packageDependencies": [\ - ["@fullcalendar/icalendar", "npm:6.1.9"]\ + ["@fullcalendar/icalendar", "npm:6.1.10"]\ ],\ "linkType": "SOFT"\ }],\ - ["virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:6.1.9", {\ - "packageLocation": "./.yarn/__virtual__/@fullcalendar-icalendar-virtual-2edf12646d/0/cache/@fullcalendar-icalendar-npm-6.1.9-92e390eda8-d47daf4ae0.zip/node_modules/@fullcalendar/icalendar/",\ + ["virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:6.1.10", {\ + "packageLocation": "./.yarn/__virtual__/@fullcalendar-icalendar-virtual-b66a9540e4/0/cache/@fullcalendar-icalendar-npm-6.1.10-2455be620e-db04224357.zip/node_modules/@fullcalendar/icalendar/",\ "packageDependencies": [\ - ["@fullcalendar/icalendar", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:6.1.9"],\ - ["@fullcalendar/core", "npm:6.1.9"],\ + ["@fullcalendar/icalendar", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:6.1.10"],\ + ["@fullcalendar/core", "npm:6.1.10"],\ ["@types/fullcalendar__core", null],\ ["@types/ical.js", null],\ ["ical.js", "npm:1.5.0"]\ @@ -637,18 +637,18 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["@fullcalendar/interaction", [\ - ["npm:6.1.9", {\ - "packageLocation": "./.yarn/cache/@fullcalendar-interaction-npm-6.1.9-f729b81a3d-787111ea6f.zip/node_modules/@fullcalendar/interaction/",\ + ["npm:6.1.10", {\ + "packageLocation": "./.yarn/cache/@fullcalendar-interaction-npm-6.1.10-4f44948d4e-b5bdfaa650.zip/node_modules/@fullcalendar/interaction/",\ "packageDependencies": [\ - ["@fullcalendar/interaction", "npm:6.1.9"]\ + ["@fullcalendar/interaction", "npm:6.1.10"]\ ],\ "linkType": "SOFT"\ }],\ - ["virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:6.1.9", {\ - "packageLocation": "./.yarn/__virtual__/@fullcalendar-interaction-virtual-45406e4d3a/0/cache/@fullcalendar-interaction-npm-6.1.9-f729b81a3d-787111ea6f.zip/node_modules/@fullcalendar/interaction/",\ + ["virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:6.1.10", {\ + "packageLocation": "./.yarn/__virtual__/@fullcalendar-interaction-virtual-f4bb7bf566/0/cache/@fullcalendar-interaction-npm-6.1.10-4f44948d4e-b5bdfaa650.zip/node_modules/@fullcalendar/interaction/",\ "packageDependencies": [\ - ["@fullcalendar/interaction", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:6.1.9"],\ - ["@fullcalendar/core", "npm:6.1.9"],\ + ["@fullcalendar/interaction", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:6.1.10"],\ + ["@fullcalendar/core", "npm:6.1.10"],\ ["@types/fullcalendar__core", null]\ ],\ "packagePeers": [\ @@ -659,18 +659,18 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["@fullcalendar/list", [\ - ["npm:6.1.9", {\ - "packageLocation": "./.yarn/cache/@fullcalendar-list-npm-6.1.9-f76695c5ab-978dd54b71.zip/node_modules/@fullcalendar/list/",\ + ["npm:6.1.10", {\ + "packageLocation": "./.yarn/cache/@fullcalendar-list-npm-6.1.10-f92699f342-c1ae1de196.zip/node_modules/@fullcalendar/list/",\ "packageDependencies": [\ - ["@fullcalendar/list", "npm:6.1.9"]\ + ["@fullcalendar/list", "npm:6.1.10"]\ ],\ "linkType": "SOFT"\ }],\ - ["virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:6.1.9", {\ - "packageLocation": "./.yarn/__virtual__/@fullcalendar-list-virtual-95391a7d25/0/cache/@fullcalendar-list-npm-6.1.9-f76695c5ab-978dd54b71.zip/node_modules/@fullcalendar/list/",\ + ["virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:6.1.10", {\ + "packageLocation": "./.yarn/__virtual__/@fullcalendar-list-virtual-fd35b1df1a/0/cache/@fullcalendar-list-npm-6.1.10-f92699f342-c1ae1de196.zip/node_modules/@fullcalendar/list/",\ "packageDependencies": [\ - ["@fullcalendar/list", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:6.1.9"],\ - ["@fullcalendar/core", "npm:6.1.9"],\ + ["@fullcalendar/list", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:6.1.10"],\ + ["@fullcalendar/core", "npm:6.1.10"],\ ["@types/fullcalendar__core", null]\ ],\ "packagePeers": [\ @@ -681,21 +681,21 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["@fullcalendar/luxon3", [\ - ["npm:6.1.9", {\ - "packageLocation": "./.yarn/cache/@fullcalendar-luxon3-npm-6.1.9-d79fc8f961-25122126e2.zip/node_modules/@fullcalendar/luxon3/",\ + ["npm:6.1.10", {\ + "packageLocation": "./.yarn/cache/@fullcalendar-luxon3-npm-6.1.10-8d3a3d8496-47d4c6dbd3.zip/node_modules/@fullcalendar/luxon3/",\ "packageDependencies": [\ - ["@fullcalendar/luxon3", "npm:6.1.9"]\ + ["@fullcalendar/luxon3", "npm:6.1.10"]\ ],\ "linkType": "SOFT"\ }],\ - ["virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:6.1.9", {\ - "packageLocation": "./.yarn/__virtual__/@fullcalendar-luxon3-virtual-2026214153/0/cache/@fullcalendar-luxon3-npm-6.1.9-d79fc8f961-25122126e2.zip/node_modules/@fullcalendar/luxon3/",\ + ["virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:6.1.10", {\ + "packageLocation": "./.yarn/__virtual__/@fullcalendar-luxon3-virtual-92622ebbff/0/cache/@fullcalendar-luxon3-npm-6.1.10-8d3a3d8496-47d4c6dbd3.zip/node_modules/@fullcalendar/luxon3/",\ "packageDependencies": [\ - ["@fullcalendar/luxon3", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:6.1.9"],\ - ["@fullcalendar/core", "npm:6.1.9"],\ + ["@fullcalendar/luxon3", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:6.1.10"],\ + ["@fullcalendar/core", "npm:6.1.10"],\ ["@types/fullcalendar__core", null],\ ["@types/luxon", null],\ - ["luxon", "npm:3.4.3"]\ + ["luxon", "npm:3.4.4"]\ ],\ "packagePeers": [\ "@fullcalendar/core",\ @@ -707,19 +707,19 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["@fullcalendar/timegrid", [\ - ["npm:6.1.9", {\ - "packageLocation": "./.yarn/cache/@fullcalendar-timegrid-npm-6.1.9-b227fefa80-8c12a508f7.zip/node_modules/@fullcalendar/timegrid/",\ + ["npm:6.1.10", {\ + "packageLocation": "./.yarn/cache/@fullcalendar-timegrid-npm-6.1.10-368eff5fc0-91875c12f2.zip/node_modules/@fullcalendar/timegrid/",\ "packageDependencies": [\ - ["@fullcalendar/timegrid", "npm:6.1.9"]\ + ["@fullcalendar/timegrid", "npm:6.1.10"]\ ],\ "linkType": "SOFT"\ }],\ - ["virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:6.1.9", {\ - "packageLocation": "./.yarn/__virtual__/@fullcalendar-timegrid-virtual-6658ed7986/0/cache/@fullcalendar-timegrid-npm-6.1.9-b227fefa80-8c12a508f7.zip/node_modules/@fullcalendar/timegrid/",\ + ["virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:6.1.10", {\ + "packageLocation": "./.yarn/__virtual__/@fullcalendar-timegrid-virtual-819daa57c9/0/cache/@fullcalendar-timegrid-npm-6.1.10-368eff5fc0-91875c12f2.zip/node_modules/@fullcalendar/timegrid/",\ "packageDependencies": [\ - ["@fullcalendar/timegrid", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:6.1.9"],\ - ["@fullcalendar/core", "npm:6.1.9"],\ - ["@fullcalendar/daygrid", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:6.1.9"],\ + ["@fullcalendar/timegrid", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:6.1.10"],\ + ["@fullcalendar/core", "npm:6.1.10"],\ + ["@fullcalendar/daygrid", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:6.1.10"],\ ["@types/fullcalendar__core", null]\ ],\ "packagePeers": [\ @@ -730,21 +730,21 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["@fullcalendar/vue3", [\ - ["npm:6.1.9", {\ - "packageLocation": "./.yarn/cache/@fullcalendar-vue3-npm-6.1.9-3c150e259d-2c1c0fbe72.zip/node_modules/@fullcalendar/vue3/",\ + ["npm:6.1.10", {\ + "packageLocation": "./.yarn/cache/@fullcalendar-vue3-npm-6.1.10-6e1cdb4365-1ccc7efab9.zip/node_modules/@fullcalendar/vue3/",\ "packageDependencies": [\ - ["@fullcalendar/vue3", "npm:6.1.9"]\ + ["@fullcalendar/vue3", "npm:6.1.10"]\ ],\ "linkType": "SOFT"\ }],\ - ["virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:6.1.9", {\ - "packageLocation": "./.yarn/__virtual__/@fullcalendar-vue3-virtual-00c58bdbde/0/cache/@fullcalendar-vue3-npm-6.1.9-3c150e259d-2c1c0fbe72.zip/node_modules/@fullcalendar/vue3/",\ + ["virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:6.1.10", {\ + "packageLocation": "./.yarn/__virtual__/@fullcalendar-vue3-virtual-229161ee8e/0/cache/@fullcalendar-vue3-npm-6.1.10-6e1cdb4365-1ccc7efab9.zip/node_modules/@fullcalendar/vue3/",\ "packageDependencies": [\ - ["@fullcalendar/vue3", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:6.1.9"],\ - ["@fullcalendar/core", "npm:6.1.9"],\ + ["@fullcalendar/vue3", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:6.1.10"],\ + ["@fullcalendar/core", "npm:6.1.10"],\ ["@types/fullcalendar__core", null],\ ["@types/vue", null],\ - ["vue", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:3.3.7"]\ + ["vue", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:3.4.13"]\ ],\ "packagePeers": [\ "@fullcalendar/core",\ @@ -1159,25 +1159,25 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["@parcel/bundler-default", [\ - ["npm:2.10.0", {\ - "packageLocation": "./.yarn/cache/@parcel-bundler-default-npm-2.10.0-bf1aa01515-58d3619928.zip/node_modules/@parcel/bundler-default/",\ - "packageDependencies": [\ - ["@parcel/bundler-default", "npm:2.10.0"],\ - ["@parcel/diagnostic", "npm:2.10.0"],\ - ["@parcel/graph", "npm:3.0.0"],\ - ["@parcel/plugin", "npm:2.10.0"],\ - ["@parcel/rust", "npm:2.10.0"],\ - ["@parcel/utils", "npm:2.10.0"],\ + ["npm:2.11.0", {\ + "packageLocation": "./.yarn/cache/@parcel-bundler-default-npm-2.11.0-60cd122e71-6541cd9b82.zip/node_modules/@parcel/bundler-default/",\ + "packageDependencies": [\ + ["@parcel/bundler-default", "npm:2.11.0"],\ + ["@parcel/diagnostic", "npm:2.11.0"],\ + ["@parcel/graph", "npm:3.1.0"],\ + ["@parcel/plugin", "npm:2.11.0"],\ + ["@parcel/rust", "npm:2.11.0"],\ + ["@parcel/utils", "npm:2.11.0"],\ ["nullthrows", "npm:1.1.1"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["@parcel/cache", [\ - ["npm:2.10.0", {\ - "packageLocation": "./.yarn/cache/@parcel-cache-npm-2.10.0-37f1f83d32-209d474abd.zip/node_modules/@parcel/cache/",\ + ["npm:2.11.0", {\ + "packageLocation": "./.yarn/cache/@parcel-cache-npm-2.11.0-009ba90eaa-bcb6ce0224.zip/node_modules/@parcel/cache/",\ "packageDependencies": [\ - ["@parcel/cache", "npm:2.10.0"]\ + ["@parcel/cache", "npm:2.11.0"]\ ],\ "linkType": "SOFT"\ }],\ @@ -1188,35 +1188,35 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ "linkType": "SOFT"\ }],\ - ["virtual:270e786ba124f493b75e4cd9a08f7491010f97327e0fcf0c93872db7e85ab335c548e71e39c548e3ecd0ddd319719697b172c5c43cd0b75c1948a8e82873b962#npm:2.10.0", {\ - "packageLocation": "./.yarn/__virtual__/@parcel-cache-virtual-ef6118146d/0/cache/@parcel-cache-npm-2.10.0-37f1f83d32-209d474abd.zip/node_modules/@parcel/cache/",\ - "packageDependencies": [\ - ["@parcel/cache", "virtual:270e786ba124f493b75e4cd9a08f7491010f97327e0fcf0c93872db7e85ab335c548e71e39c548e3ecd0ddd319719697b172c5c43cd0b75c1948a8e82873b962#npm:2.10.0"],\ - ["@parcel/core", "npm:2.6.2"],\ - ["@parcel/fs", "virtual:270e786ba124f493b75e4cd9a08f7491010f97327e0fcf0c93872db7e85ab335c548e71e39c548e3ecd0ddd319719697b172c5c43cd0b75c1948a8e82873b962#npm:2.10.0"],\ - ["@parcel/logger", "npm:2.10.0"],\ - ["@parcel/utils", "npm:2.10.0"],\ + ["virtual:6342e70419d23ded2f099abb73d52673ebe4aa5f7610a94b4cb189fdc9467b1f593741b0e4115e824ba71d89c6ceebe1edf27412aa7a6c4e52178845d92cdae2#npm:2.11.0", {\ + "packageLocation": "./.yarn/__virtual__/@parcel-cache-virtual-a772f530ec/0/cache/@parcel-cache-npm-2.11.0-009ba90eaa-bcb6ce0224.zip/node_modules/@parcel/cache/",\ + "packageDependencies": [\ + ["@parcel/cache", "virtual:6342e70419d23ded2f099abb73d52673ebe4aa5f7610a94b4cb189fdc9467b1f593741b0e4115e824ba71d89c6ceebe1edf27412aa7a6c4e52178845d92cdae2#npm:2.11.0"],\ + ["@parcel/core", "npm:2.11.0"],\ + ["@parcel/fs", "virtual:6342e70419d23ded2f099abb73d52673ebe4aa5f7610a94b4cb189fdc9467b1f593741b0e4115e824ba71d89c6ceebe1edf27412aa7a6c4e52178845d92cdae2#npm:2.11.0"],\ + ["@parcel/logger", "npm:2.11.0"],\ + ["@parcel/utils", "npm:2.11.0"],\ ["@types/parcel__core", null],\ ["lmdb", "npm:2.8.5"]\ ],\ "packagePeers": [\ + "@parcel/core",\ "@types/parcel__core"\ ],\ "linkType": "HARD"\ }],\ - ["virtual:59eaeeba7a5d21408bb7b40531b36a88648baa29ed841afea77b484ce4124f400b3aed2f6c7b6598bebbcce34fe625391a4c262c0e17b5a4f9e1ebbf693fa69b#npm:2.10.0", {\ - "packageLocation": "./.yarn/__virtual__/@parcel-cache-virtual-e54076624a/0/cache/@parcel-cache-npm-2.10.0-37f1f83d32-209d474abd.zip/node_modules/@parcel/cache/",\ - "packageDependencies": [\ - ["@parcel/cache", "virtual:59eaeeba7a5d21408bb7b40531b36a88648baa29ed841afea77b484ce4124f400b3aed2f6c7b6598bebbcce34fe625391a4c262c0e17b5a4f9e1ebbf693fa69b#npm:2.10.0"],\ - ["@parcel/core", "npm:2.10.0"],\ - ["@parcel/fs", "virtual:59eaeeba7a5d21408bb7b40531b36a88648baa29ed841afea77b484ce4124f400b3aed2f6c7b6598bebbcce34fe625391a4c262c0e17b5a4f9e1ebbf693fa69b#npm:2.10.0"],\ - ["@parcel/logger", "npm:2.10.0"],\ - ["@parcel/utils", "npm:2.10.0"],\ + ["virtual:888eab94f9b4aab4a19c969b59cee148bb5a70e4910c884134a49811609ccb8e720c3f507f2dd3bd74e8e26cf45521fb678b2039f6655ff2d61157f18c4449b6#npm:2.11.0", {\ + "packageLocation": "./.yarn/__virtual__/@parcel-cache-virtual-819097ce12/0/cache/@parcel-cache-npm-2.11.0-009ba90eaa-bcb6ce0224.zip/node_modules/@parcel/cache/",\ + "packageDependencies": [\ + ["@parcel/cache", "virtual:888eab94f9b4aab4a19c969b59cee148bb5a70e4910c884134a49811609ccb8e720c3f507f2dd3bd74e8e26cf45521fb678b2039f6655ff2d61157f18c4449b6#npm:2.11.0"],\ + ["@parcel/core", "npm:2.6.2"],\ + ["@parcel/fs", "virtual:888eab94f9b4aab4a19c969b59cee148bb5a70e4910c884134a49811609ccb8e720c3f507f2dd3bd74e8e26cf45521fb678b2039f6655ff2d61157f18c4449b6#npm:2.11.0"],\ + ["@parcel/logger", "npm:2.11.0"],\ + ["@parcel/utils", "npm:2.11.0"],\ ["@types/parcel__core", null],\ ["lmdb", "npm:2.8.5"]\ ],\ "packagePeers": [\ - "@parcel/core",\ "@types/parcel__core"\ ],\ "linkType": "HARD"\ @@ -1239,10 +1239,10 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["@parcel/codeframe", [\ - ["npm:2.10.0", {\ - "packageLocation": "./.yarn/cache/@parcel-codeframe-npm-2.10.0-e8aa1b4ecc-d87b17d3ce.zip/node_modules/@parcel/codeframe/",\ + ["npm:2.11.0", {\ + "packageLocation": "./.yarn/cache/@parcel-codeframe-npm-2.11.0-ff6d4c7f59-abd6b7b444.zip/node_modules/@parcel/codeframe/",\ "packageDependencies": [\ - ["@parcel/codeframe", "npm:2.10.0"],\ + ["@parcel/codeframe", "npm:2.11.0"],\ ["chalk", "npm:4.1.2"]\ ],\ "linkType": "HARD"\ @@ -1257,59 +1257,59 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["@parcel/compressor-raw", [\ - ["npm:2.10.0", {\ - "packageLocation": "./.yarn/cache/@parcel-compressor-raw-npm-2.10.0-961e5d9fe0-043fca0ecb.zip/node_modules/@parcel/compressor-raw/",\ + ["npm:2.11.0", {\ + "packageLocation": "./.yarn/cache/@parcel-compressor-raw-npm-2.11.0-c68d493841-90882f3afa.zip/node_modules/@parcel/compressor-raw/",\ "packageDependencies": [\ - ["@parcel/compressor-raw", "npm:2.10.0"],\ - ["@parcel/plugin", "npm:2.10.0"]\ + ["@parcel/compressor-raw", "npm:2.11.0"],\ + ["@parcel/plugin", "npm:2.11.0"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["@parcel/config-default", [\ - ["npm:2.10.0", {\ - "packageLocation": "./.yarn/cache/@parcel-config-default-npm-2.10.0-2a1fbdf24b-d780d05021.zip/node_modules/@parcel/config-default/",\ + ["npm:2.11.0", {\ + "packageLocation": "./.yarn/cache/@parcel-config-default-npm-2.11.0-7c94133b29-b35be2dcd3.zip/node_modules/@parcel/config-default/",\ "packageDependencies": [\ - ["@parcel/config-default", "npm:2.10.0"]\ + ["@parcel/config-default", "npm:2.11.0"]\ ],\ "linkType": "SOFT"\ }],\ - ["virtual:71592776e81a3a98123fea990d2adcb9a2eb4cc84ca35ac4be3a6f331fe8d1f764a124c4f9a2dad3afd35076e01667fb0ef9ccd5629fbe405b31f0d1b14a14fd#npm:2.10.0", {\ - "packageLocation": "./.yarn/__virtual__/@parcel-config-default-virtual-61dcbb3314/0/cache/@parcel-config-default-npm-2.10.0-2a1fbdf24b-d780d05021.zip/node_modules/@parcel/config-default/",\ - "packageDependencies": [\ - ["@parcel/config-default", "virtual:71592776e81a3a98123fea990d2adcb9a2eb4cc84ca35ac4be3a6f331fe8d1f764a124c4f9a2dad3afd35076e01667fb0ef9ccd5629fbe405b31f0d1b14a14fd#npm:2.10.0"],\ - ["@parcel/bundler-default", "npm:2.10.0"],\ - ["@parcel/compressor-raw", "npm:2.10.0"],\ - ["@parcel/core", "npm:2.10.0"],\ - ["@parcel/namer-default", "npm:2.10.0"],\ - ["@parcel/optimizer-css", "npm:2.10.0"],\ - ["@parcel/optimizer-htmlnano", "npm:2.10.0"],\ - ["@parcel/optimizer-image", "virtual:61dcbb3314ed0db4613bbccf7f920606ba09571991ce6dbf378d0f819338fde0afdb3e35306b4f7d24155236814007855a39ab7d05afaeadead37df42309ed7e#npm:2.10.0"],\ - ["@parcel/optimizer-svgo", "npm:2.10.0"],\ - ["@parcel/optimizer-swc", "npm:2.10.0"],\ - ["@parcel/packager-css", "npm:2.10.0"],\ - ["@parcel/packager-html", "npm:2.10.0"],\ - ["@parcel/packager-js", "npm:2.10.0"],\ - ["@parcel/packager-raw", "npm:2.10.0"],\ - ["@parcel/packager-svg", "npm:2.10.0"],\ - ["@parcel/packager-wasm", "npm:2.10.0"],\ - ["@parcel/reporter-dev-server", "npm:2.10.0"],\ - ["@parcel/resolver-default", "npm:2.10.0"],\ - ["@parcel/runtime-browser-hmr", "npm:2.10.0"],\ - ["@parcel/runtime-js", "npm:2.10.0"],\ - ["@parcel/runtime-react-refresh", "npm:2.10.0"],\ - ["@parcel/runtime-service-worker", "npm:2.10.0"],\ - ["@parcel/transformer-babel", "npm:2.10.0"],\ - ["@parcel/transformer-css", "npm:2.10.0"],\ - ["@parcel/transformer-html", "npm:2.10.0"],\ - ["@parcel/transformer-image", "virtual:61dcbb3314ed0db4613bbccf7f920606ba09571991ce6dbf378d0f819338fde0afdb3e35306b4f7d24155236814007855a39ab7d05afaeadead37df42309ed7e#npm:2.10.0"],\ - ["@parcel/transformer-js", "virtual:61dcbb3314ed0db4613bbccf7f920606ba09571991ce6dbf378d0f819338fde0afdb3e35306b4f7d24155236814007855a39ab7d05afaeadead37df42309ed7e#npm:2.10.0"],\ - ["@parcel/transformer-json", "npm:2.10.0"],\ - ["@parcel/transformer-postcss", "npm:2.10.0"],\ - ["@parcel/transformer-posthtml", "npm:2.10.0"],\ - ["@parcel/transformer-raw", "npm:2.10.0"],\ - ["@parcel/transformer-react-refresh-wrap", "npm:2.10.0"],\ - ["@parcel/transformer-svg", "npm:2.10.0"],\ + ["virtual:c9f026248511188f31a66a49228e3f4455ee6fa1ba906611f58030dac34821f723d23cba2ebe1e8ab700df88c35896372c56bbaaa523f30f901f0d6936cdb754#npm:2.11.0", {\ + "packageLocation": "./.yarn/__virtual__/@parcel-config-default-virtual-17ce42eefd/0/cache/@parcel-config-default-npm-2.11.0-7c94133b29-b35be2dcd3.zip/node_modules/@parcel/config-default/",\ + "packageDependencies": [\ + ["@parcel/config-default", "virtual:c9f026248511188f31a66a49228e3f4455ee6fa1ba906611f58030dac34821f723d23cba2ebe1e8ab700df88c35896372c56bbaaa523f30f901f0d6936cdb754#npm:2.11.0"],\ + ["@parcel/bundler-default", "npm:2.11.0"],\ + ["@parcel/compressor-raw", "npm:2.11.0"],\ + ["@parcel/core", "npm:2.11.0"],\ + ["@parcel/namer-default", "npm:2.11.0"],\ + ["@parcel/optimizer-css", "npm:2.11.0"],\ + ["@parcel/optimizer-htmlnano", "npm:2.11.0"],\ + ["@parcel/optimizer-image", "virtual:17ce42eefd3c1742d7451449fd8cf829d307641f4cbc190ade9f837bbc79351f1b58c8a23e6cb04e41dc199c10ed466a85ff269618363ea492002596387b8285#npm:2.11.0"],\ + ["@parcel/optimizer-svgo", "npm:2.11.0"],\ + ["@parcel/optimizer-swc", "npm:2.11.0"],\ + ["@parcel/packager-css", "npm:2.11.0"],\ + ["@parcel/packager-html", "npm:2.11.0"],\ + ["@parcel/packager-js", "npm:2.11.0"],\ + ["@parcel/packager-raw", "npm:2.11.0"],\ + ["@parcel/packager-svg", "npm:2.11.0"],\ + ["@parcel/packager-wasm", "npm:2.11.0"],\ + ["@parcel/reporter-dev-server", "npm:2.11.0"],\ + ["@parcel/resolver-default", "npm:2.11.0"],\ + ["@parcel/runtime-browser-hmr", "npm:2.11.0"],\ + ["@parcel/runtime-js", "npm:2.11.0"],\ + ["@parcel/runtime-react-refresh", "npm:2.11.0"],\ + ["@parcel/runtime-service-worker", "npm:2.11.0"],\ + ["@parcel/transformer-babel", "npm:2.11.0"],\ + ["@parcel/transformer-css", "npm:2.11.0"],\ + ["@parcel/transformer-html", "npm:2.11.0"],\ + ["@parcel/transformer-image", "virtual:17ce42eefd3c1742d7451449fd8cf829d307641f4cbc190ade9f837bbc79351f1b58c8a23e6cb04e41dc199c10ed466a85ff269618363ea492002596387b8285#npm:2.11.0"],\ + ["@parcel/transformer-js", "virtual:17ce42eefd3c1742d7451449fd8cf829d307641f4cbc190ade9f837bbc79351f1b58c8a23e6cb04e41dc199c10ed466a85ff269618363ea492002596387b8285#npm:2.11.0"],\ + ["@parcel/transformer-json", "npm:2.11.0"],\ + ["@parcel/transformer-postcss", "npm:2.11.0"],\ + ["@parcel/transformer-posthtml", "npm:2.11.0"],\ + ["@parcel/transformer-raw", "npm:2.11.0"],\ + ["@parcel/transformer-react-refresh-wrap", "npm:2.11.0"],\ + ["@parcel/transformer-svg", "npm:2.11.0"],\ ["@types/parcel__core", null]\ ],\ "packagePeers": [\ @@ -1320,25 +1320,25 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["@parcel/core", [\ - ["npm:2.10.0", {\ - "packageLocation": "./.yarn/cache/@parcel-core-npm-2.10.0-59eaeeba7a-c59c2971ea.zip/node_modules/@parcel/core/",\ + ["npm:2.11.0", {\ + "packageLocation": "./.yarn/cache/@parcel-core-npm-2.11.0-6342e70419-22d4e1f3f5.zip/node_modules/@parcel/core/",\ "packageDependencies": [\ - ["@parcel/core", "npm:2.10.0"],\ + ["@parcel/core", "npm:2.11.0"],\ ["@mischnic/json-sourcemap", "npm:0.1.0"],\ - ["@parcel/cache", "virtual:59eaeeba7a5d21408bb7b40531b36a88648baa29ed841afea77b484ce4124f400b3aed2f6c7b6598bebbcce34fe625391a4c262c0e17b5a4f9e1ebbf693fa69b#npm:2.10.0"],\ - ["@parcel/diagnostic", "npm:2.10.0"],\ - ["@parcel/events", "npm:2.10.0"],\ - ["@parcel/fs", "virtual:59eaeeba7a5d21408bb7b40531b36a88648baa29ed841afea77b484ce4124f400b3aed2f6c7b6598bebbcce34fe625391a4c262c0e17b5a4f9e1ebbf693fa69b#npm:2.10.0"],\ - ["@parcel/graph", "npm:3.0.0"],\ - ["@parcel/logger", "npm:2.10.0"],\ - ["@parcel/package-manager", "virtual:59eaeeba7a5d21408bb7b40531b36a88648baa29ed841afea77b484ce4124f400b3aed2f6c7b6598bebbcce34fe625391a4c262c0e17b5a4f9e1ebbf693fa69b#npm:2.10.0"],\ - ["@parcel/plugin", "npm:2.10.0"],\ - ["@parcel/profiler", "npm:2.10.0"],\ - ["@parcel/rust", "npm:2.10.0"],\ + ["@parcel/cache", "virtual:6342e70419d23ded2f099abb73d52673ebe4aa5f7610a94b4cb189fdc9467b1f593741b0e4115e824ba71d89c6ceebe1edf27412aa7a6c4e52178845d92cdae2#npm:2.11.0"],\ + ["@parcel/diagnostic", "npm:2.11.0"],\ + ["@parcel/events", "npm:2.11.0"],\ + ["@parcel/fs", "virtual:6342e70419d23ded2f099abb73d52673ebe4aa5f7610a94b4cb189fdc9467b1f593741b0e4115e824ba71d89c6ceebe1edf27412aa7a6c4e52178845d92cdae2#npm:2.11.0"],\ + ["@parcel/graph", "npm:3.1.0"],\ + ["@parcel/logger", "npm:2.11.0"],\ + ["@parcel/package-manager", "virtual:6342e70419d23ded2f099abb73d52673ebe4aa5f7610a94b4cb189fdc9467b1f593741b0e4115e824ba71d89c6ceebe1edf27412aa7a6c4e52178845d92cdae2#npm:2.11.0"],\ + ["@parcel/plugin", "npm:2.11.0"],\ + ["@parcel/profiler", "npm:2.11.0"],\ + ["@parcel/rust", "npm:2.11.0"],\ ["@parcel/source-map", "npm:2.1.1"],\ - ["@parcel/types", "npm:2.10.0"],\ - ["@parcel/utils", "npm:2.10.0"],\ - ["@parcel/workers", "virtual:59eaeeba7a5d21408bb7b40531b36a88648baa29ed841afea77b484ce4124f400b3aed2f6c7b6598bebbcce34fe625391a4c262c0e17b5a4f9e1ebbf693fa69b#npm:2.10.0"],\ + ["@parcel/types", "npm:2.11.0"],\ + ["@parcel/utils", "npm:2.11.0"],\ + ["@parcel/workers", "virtual:6342e70419d23ded2f099abb73d52673ebe4aa5f7610a94b4cb189fdc9467b1f593741b0e4115e824ba71d89c6ceebe1edf27412aa7a6c4e52178845d92cdae2#npm:2.11.0"],\ ["abortcontroller-polyfill", "npm:1.7.3"],\ ["base-x", "npm:3.0.9"],\ ["browserslist", "npm:4.20.3"],\ @@ -1346,7 +1346,7 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ["dotenv", "npm:7.0.0"],\ ["dotenv-expand", "npm:5.1.0"],\ ["json5", "npm:2.2.1"],\ - ["msgpackr", "npm:1.6.0"],\ + ["msgpackr", "npm:1.10.1"],\ ["nullthrows", "npm:1.1.1"],\ ["semver", "npm:7.5.4"]\ ],\ @@ -1385,10 +1385,10 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["@parcel/diagnostic", [\ - ["npm:2.10.0", {\ - "packageLocation": "./.yarn/cache/@parcel-diagnostic-npm-2.10.0-1e389b369e-45c606ca52.zip/node_modules/@parcel/diagnostic/",\ + ["npm:2.11.0", {\ + "packageLocation": "./.yarn/cache/@parcel-diagnostic-npm-2.11.0-639f597af7-bcfd74db92.zip/node_modules/@parcel/diagnostic/",\ "packageDependencies": [\ - ["@parcel/diagnostic", "npm:2.10.0"],\ + ["@parcel/diagnostic", "npm:2.11.0"],\ ["@mischnic/json-sourcemap", "npm:0.1.0"],\ ["nullthrows", "npm:1.1.1"]\ ],\ @@ -1405,10 +1405,10 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["@parcel/events", [\ - ["npm:2.10.0", {\ - "packageLocation": "./.yarn/cache/@parcel-events-npm-2.10.0-da42a4afa6-1d21cd4186.zip/node_modules/@parcel/events/",\ + ["npm:2.11.0", {\ + "packageLocation": "./.yarn/cache/@parcel-events-npm-2.11.0-3a46d4530c-e757383143.zip/node_modules/@parcel/events/",\ "packageDependencies": [\ - ["@parcel/events", "npm:2.10.0"]\ + ["@parcel/events", "npm:2.11.0"]\ ],\ "linkType": "HARD"\ }],\ @@ -1421,10 +1421,10 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["@parcel/fs", [\ - ["npm:2.10.0", {\ - "packageLocation": "./.yarn/cache/@parcel-fs-npm-2.10.0-c959567f0f-10faae481c.zip/node_modules/@parcel/fs/",\ + ["npm:2.11.0", {\ + "packageLocation": "./.yarn/cache/@parcel-fs-npm-2.11.0-8d41c39e85-2702d29dd7.zip/node_modules/@parcel/fs/",\ "packageDependencies": [\ - ["@parcel/fs", "npm:2.10.0"]\ + ["@parcel/fs", "npm:2.11.0"]\ ],\ "linkType": "SOFT"\ }],\ @@ -1435,37 +1435,37 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ "linkType": "SOFT"\ }],\ - ["virtual:270e786ba124f493b75e4cd9a08f7491010f97327e0fcf0c93872db7e85ab335c548e71e39c548e3ecd0ddd319719697b172c5c43cd0b75c1948a8e82873b962#npm:2.10.0", {\ - "packageLocation": "./.yarn/__virtual__/@parcel-fs-virtual-eac6fac48b/0/cache/@parcel-fs-npm-2.10.0-c959567f0f-10faae481c.zip/node_modules/@parcel/fs/",\ - "packageDependencies": [\ - ["@parcel/fs", "virtual:270e786ba124f493b75e4cd9a08f7491010f97327e0fcf0c93872db7e85ab335c548e71e39c548e3ecd0ddd319719697b172c5c43cd0b75c1948a8e82873b962#npm:2.10.0"],\ - ["@parcel/core", "npm:2.6.2"],\ - ["@parcel/rust", "npm:2.10.0"],\ - ["@parcel/types", "npm:2.10.0"],\ - ["@parcel/utils", "npm:2.10.0"],\ + ["virtual:6342e70419d23ded2f099abb73d52673ebe4aa5f7610a94b4cb189fdc9467b1f593741b0e4115e824ba71d89c6ceebe1edf27412aa7a6c4e52178845d92cdae2#npm:2.11.0", {\ + "packageLocation": "./.yarn/__virtual__/@parcel-fs-virtual-7c1db87d51/0/cache/@parcel-fs-npm-2.11.0-8d41c39e85-2702d29dd7.zip/node_modules/@parcel/fs/",\ + "packageDependencies": [\ + ["@parcel/fs", "virtual:6342e70419d23ded2f099abb73d52673ebe4aa5f7610a94b4cb189fdc9467b1f593741b0e4115e824ba71d89c6ceebe1edf27412aa7a6c4e52178845d92cdae2#npm:2.11.0"],\ + ["@parcel/core", "npm:2.11.0"],\ + ["@parcel/rust", "npm:2.11.0"],\ + ["@parcel/types", "npm:2.11.0"],\ + ["@parcel/utils", "npm:2.11.0"],\ ["@parcel/watcher", "npm:2.0.7"],\ - ["@parcel/workers", "virtual:270e786ba124f493b75e4cd9a08f7491010f97327e0fcf0c93872db7e85ab335c548e71e39c548e3ecd0ddd319719697b172c5c43cd0b75c1948a8e82873b962#npm:2.10.0"],\ + ["@parcel/workers", "virtual:6342e70419d23ded2f099abb73d52673ebe4aa5f7610a94b4cb189fdc9467b1f593741b0e4115e824ba71d89c6ceebe1edf27412aa7a6c4e52178845d92cdae2#npm:2.11.0"],\ ["@types/parcel__core", null]\ ],\ "packagePeers": [\ + "@parcel/core",\ "@types/parcel__core"\ ],\ "linkType": "HARD"\ }],\ - ["virtual:59eaeeba7a5d21408bb7b40531b36a88648baa29ed841afea77b484ce4124f400b3aed2f6c7b6598bebbcce34fe625391a4c262c0e17b5a4f9e1ebbf693fa69b#npm:2.10.0", {\ - "packageLocation": "./.yarn/__virtual__/@parcel-fs-virtual-e5737ffb6b/0/cache/@parcel-fs-npm-2.10.0-c959567f0f-10faae481c.zip/node_modules/@parcel/fs/",\ - "packageDependencies": [\ - ["@parcel/fs", "virtual:59eaeeba7a5d21408bb7b40531b36a88648baa29ed841afea77b484ce4124f400b3aed2f6c7b6598bebbcce34fe625391a4c262c0e17b5a4f9e1ebbf693fa69b#npm:2.10.0"],\ - ["@parcel/core", "npm:2.10.0"],\ - ["@parcel/rust", "npm:2.10.0"],\ - ["@parcel/types", "npm:2.10.0"],\ - ["@parcel/utils", "npm:2.10.0"],\ + ["virtual:888eab94f9b4aab4a19c969b59cee148bb5a70e4910c884134a49811609ccb8e720c3f507f2dd3bd74e8e26cf45521fb678b2039f6655ff2d61157f18c4449b6#npm:2.11.0", {\ + "packageLocation": "./.yarn/__virtual__/@parcel-fs-virtual-85e66257c0/0/cache/@parcel-fs-npm-2.11.0-8d41c39e85-2702d29dd7.zip/node_modules/@parcel/fs/",\ + "packageDependencies": [\ + ["@parcel/fs", "virtual:888eab94f9b4aab4a19c969b59cee148bb5a70e4910c884134a49811609ccb8e720c3f507f2dd3bd74e8e26cf45521fb678b2039f6655ff2d61157f18c4449b6#npm:2.11.0"],\ + ["@parcel/core", "npm:2.6.2"],\ + ["@parcel/rust", "npm:2.11.0"],\ + ["@parcel/types", "npm:2.11.0"],\ + ["@parcel/utils", "npm:2.11.0"],\ ["@parcel/watcher", "npm:2.0.7"],\ - ["@parcel/workers", "virtual:59eaeeba7a5d21408bb7b40531b36a88648baa29ed841afea77b484ce4124f400b3aed2f6c7b6598bebbcce34fe625391a4c262c0e17b5a4f9e1ebbf693fa69b#npm:2.10.0"],\ + ["@parcel/workers", "virtual:888eab94f9b4aab4a19c969b59cee148bb5a70e4910c884134a49811609ccb8e720c3f507f2dd3bd74e8e26cf45521fb678b2039f6655ff2d61157f18c4449b6#npm:2.11.0"],\ ["@types/parcel__core", null]\ ],\ "packagePeers": [\ - "@parcel/core",\ "@types/parcel__core"\ ],\ "linkType": "HARD"\ @@ -1508,10 +1508,10 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ "linkType": "HARD"\ }],\ - ["npm:3.0.0", {\ - "packageLocation": "./.yarn/cache/@parcel-graph-npm-3.0.0-9001abfefc-0a9d5017f6.zip/node_modules/@parcel/graph/",\ + ["npm:3.1.0", {\ + "packageLocation": "./.yarn/cache/@parcel-graph-npm-3.1.0-a0fd3eb642-6d645e3ab4.zip/node_modules/@parcel/graph/",\ "packageDependencies": [\ - ["@parcel/graph", "npm:3.0.0"],\ + ["@parcel/graph", "npm:3.1.0"],\ ["nullthrows", "npm:1.1.1"]\ ],\ "linkType": "HARD"\ @@ -1529,12 +1529,12 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["@parcel/logger", [\ - ["npm:2.10.0", {\ - "packageLocation": "./.yarn/cache/@parcel-logger-npm-2.10.0-41ac90e34c-52d0b5331d.zip/node_modules/@parcel/logger/",\ + ["npm:2.11.0", {\ + "packageLocation": "./.yarn/cache/@parcel-logger-npm-2.11.0-d801efc634-363cacf596.zip/node_modules/@parcel/logger/",\ "packageDependencies": [\ - ["@parcel/logger", "npm:2.10.0"],\ - ["@parcel/diagnostic", "npm:2.10.0"],\ - ["@parcel/events", "npm:2.10.0"]\ + ["@parcel/logger", "npm:2.11.0"],\ + ["@parcel/diagnostic", "npm:2.11.0"],\ + ["@parcel/events", "npm:2.11.0"]\ ],\ "linkType": "HARD"\ }],\ @@ -1549,10 +1549,10 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["@parcel/markdown-ansi", [\ - ["npm:2.10.0", {\ - "packageLocation": "./.yarn/cache/@parcel-markdown-ansi-npm-2.10.0-4dd4da44f3-35e2d07ec8.zip/node_modules/@parcel/markdown-ansi/",\ + ["npm:2.11.0", {\ + "packageLocation": "./.yarn/cache/@parcel-markdown-ansi-npm-2.11.0-fec39dc514-26bc69d6e2.zip/node_modules/@parcel/markdown-ansi/",\ "packageDependencies": [\ - ["@parcel/markdown-ansi", "npm:2.10.0"],\ + ["@parcel/markdown-ansi", "npm:2.11.0"],\ ["chalk", "npm:4.1.2"]\ ],\ "linkType": "HARD"\ @@ -1567,27 +1567,27 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["@parcel/namer-default", [\ - ["npm:2.10.0", {\ - "packageLocation": "./.yarn/cache/@parcel-namer-default-npm-2.10.0-4b82db40fd-f2a32096d1.zip/node_modules/@parcel/namer-default/",\ + ["npm:2.11.0", {\ + "packageLocation": "./.yarn/cache/@parcel-namer-default-npm-2.11.0-b19d289c57-452978cb59.zip/node_modules/@parcel/namer-default/",\ "packageDependencies": [\ - ["@parcel/namer-default", "npm:2.10.0"],\ - ["@parcel/diagnostic", "npm:2.10.0"],\ - ["@parcel/plugin", "npm:2.10.0"],\ + ["@parcel/namer-default", "npm:2.11.0"],\ + ["@parcel/diagnostic", "npm:2.11.0"],\ + ["@parcel/plugin", "npm:2.11.0"],\ ["nullthrows", "npm:1.1.1"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["@parcel/node-resolver-core", [\ - ["npm:3.1.0", {\ - "packageLocation": "./.yarn/cache/@parcel-node-resolver-core-npm-3.1.0-9c9ff3ab8b-dcdd39bc6a.zip/node_modules/@parcel/node-resolver-core/",\ + ["npm:3.2.0", {\ + "packageLocation": "./.yarn/cache/@parcel-node-resolver-core-npm-3.2.0-d449d46e11-9a006b50b1.zip/node_modules/@parcel/node-resolver-core/",\ "packageDependencies": [\ - ["@parcel/node-resolver-core", "npm:3.1.0"],\ + ["@parcel/node-resolver-core", "npm:3.2.0"],\ ["@mischnic/json-sourcemap", "npm:0.1.0"],\ - ["@parcel/diagnostic", "npm:2.10.0"],\ - ["@parcel/fs", "virtual:270e786ba124f493b75e4cd9a08f7491010f97327e0fcf0c93872db7e85ab335c548e71e39c548e3ecd0ddd319719697b172c5c43cd0b75c1948a8e82873b962#npm:2.10.0"],\ - ["@parcel/rust", "npm:2.10.0"],\ - ["@parcel/utils", "npm:2.10.0"],\ + ["@parcel/diagnostic", "npm:2.11.0"],\ + ["@parcel/fs", "virtual:888eab94f9b4aab4a19c969b59cee148bb5a70e4910c884134a49811609ccb8e720c3f507f2dd3bd74e8e26cf45521fb678b2039f6655ff2d61157f18c4449b6#npm:2.11.0"],\ + ["@parcel/rust", "npm:2.11.0"],\ + ["@parcel/utils", "npm:2.11.0"],\ ["nullthrows", "npm:1.1.1"],\ ["semver", "npm:7.5.4"]\ ],\ @@ -1595,14 +1595,14 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["@parcel/optimizer-css", [\ - ["npm:2.10.0", {\ - "packageLocation": "./.yarn/cache/@parcel-optimizer-css-npm-2.10.0-dbd5825b4e-ea15989512.zip/node_modules/@parcel/optimizer-css/",\ + ["npm:2.11.0", {\ + "packageLocation": "./.yarn/cache/@parcel-optimizer-css-npm-2.11.0-9746660015-8407b5e864.zip/node_modules/@parcel/optimizer-css/",\ "packageDependencies": [\ - ["@parcel/optimizer-css", "npm:2.10.0"],\ - ["@parcel/diagnostic", "npm:2.10.0"],\ - ["@parcel/plugin", "npm:2.10.0"],\ + ["@parcel/optimizer-css", "npm:2.11.0"],\ + ["@parcel/diagnostic", "npm:2.11.0"],\ + ["@parcel/plugin", "npm:2.11.0"],\ ["@parcel/source-map", "npm:2.1.1"],\ - ["@parcel/utils", "npm:2.10.0"],\ + ["@parcel/utils", "npm:2.11.0"],\ ["browserslist", "npm:4.20.3"],\ ["lightningcss", "npm:1.17.1"],\ ["nullthrows", "npm:1.1.1"]\ @@ -1611,12 +1611,12 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["@parcel/optimizer-data-url", [\ - ["npm:2.10.0", {\ - "packageLocation": "./.yarn/cache/@parcel-optimizer-data-url-npm-2.10.0-700cb5aab6-ec9530be83.zip/node_modules/@parcel/optimizer-data-url/",\ + ["npm:2.11.0", {\ + "packageLocation": "./.yarn/cache/@parcel-optimizer-data-url-npm-2.11.0-384ae33ee4-cf8680e676.zip/node_modules/@parcel/optimizer-data-url/",\ "packageDependencies": [\ - ["@parcel/optimizer-data-url", "npm:2.10.0"],\ - ["@parcel/plugin", "npm:2.10.0"],\ - ["@parcel/utils", "npm:2.10.0"],\ + ["@parcel/optimizer-data-url", "npm:2.11.0"],\ + ["@parcel/plugin", "npm:2.11.0"],\ + ["@parcel/utils", "npm:2.11.0"],\ ["isbinaryfile", "npm:4.0.10"],\ ["mime", "npm:2.6.0"]\ ],\ @@ -1624,12 +1624,12 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["@parcel/optimizer-htmlnano", [\ - ["npm:2.10.0", {\ - "packageLocation": "./.yarn/cache/@parcel-optimizer-htmlnano-npm-2.10.0-ee0243765c-1f6de13022.zip/node_modules/@parcel/optimizer-htmlnano/",\ + ["npm:2.11.0", {\ + "packageLocation": "./.yarn/cache/@parcel-optimizer-htmlnano-npm-2.11.0-3247e2fdd1-4943948a8f.zip/node_modules/@parcel/optimizer-htmlnano/",\ "packageDependencies": [\ - ["@parcel/optimizer-htmlnano", "npm:2.10.0"],\ - ["@parcel/plugin", "npm:2.10.0"],\ - ["htmlnano", "virtual:ee0243765cbdf501388f259b4f1148af5bb4df5c2fa392d4cf1f1d61d3475a9c15a5729ae4be6dd2e258041e618368d112e36aa7b208b01a51861aaaf92fa944#npm:2.0.2"],\ + ["@parcel/optimizer-htmlnano", "npm:2.11.0"],\ + ["@parcel/plugin", "npm:2.11.0"],\ + ["htmlnano", "virtual:3247e2fdd19c2c795e62631e70f3e3729802df34c67aae7c2f68650c81a102812badea2b63ad3d824f96ab40d31f4ec337238461392c7320e3bfdc126e76a6cc#npm:2.0.2"],\ ["nullthrows", "npm:1.1.1"],\ ["posthtml", "npm:0.16.6"],\ ["svgo", "npm:2.8.0"]\ @@ -1638,23 +1638,23 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["@parcel/optimizer-image", [\ - ["npm:2.10.0", {\ - "packageLocation": "./.yarn/cache/@parcel-optimizer-image-npm-2.10.0-a581b60cbd-94d5db2837.zip/node_modules/@parcel/optimizer-image/",\ + ["npm:2.11.0", {\ + "packageLocation": "./.yarn/cache/@parcel-optimizer-image-npm-2.11.0-49b9f44d2c-9c4d9d087f.zip/node_modules/@parcel/optimizer-image/",\ "packageDependencies": [\ - ["@parcel/optimizer-image", "npm:2.10.0"]\ + ["@parcel/optimizer-image", "npm:2.11.0"]\ ],\ "linkType": "SOFT"\ }],\ - ["virtual:61dcbb3314ed0db4613bbccf7f920606ba09571991ce6dbf378d0f819338fde0afdb3e35306b4f7d24155236814007855a39ab7d05afaeadead37df42309ed7e#npm:2.10.0", {\ - "packageLocation": "./.yarn/__virtual__/@parcel-optimizer-image-virtual-9b7a1cafe7/0/cache/@parcel-optimizer-image-npm-2.10.0-a581b60cbd-94d5db2837.zip/node_modules/@parcel/optimizer-image/",\ - "packageDependencies": [\ - ["@parcel/optimizer-image", "virtual:61dcbb3314ed0db4613bbccf7f920606ba09571991ce6dbf378d0f819338fde0afdb3e35306b4f7d24155236814007855a39ab7d05afaeadead37df42309ed7e#npm:2.10.0"],\ - ["@parcel/core", "npm:2.10.0"],\ - ["@parcel/diagnostic", "npm:2.10.0"],\ - ["@parcel/plugin", "npm:2.10.0"],\ - ["@parcel/rust", "npm:2.10.0"],\ - ["@parcel/utils", "npm:2.10.0"],\ - ["@parcel/workers", "virtual:59eaeeba7a5d21408bb7b40531b36a88648baa29ed841afea77b484ce4124f400b3aed2f6c7b6598bebbcce34fe625391a4c262c0e17b5a4f9e1ebbf693fa69b#npm:2.10.0"],\ + ["virtual:17ce42eefd3c1742d7451449fd8cf829d307641f4cbc190ade9f837bbc79351f1b58c8a23e6cb04e41dc199c10ed466a85ff269618363ea492002596387b8285#npm:2.11.0", {\ + "packageLocation": "./.yarn/__virtual__/@parcel-optimizer-image-virtual-fb9e56c78f/0/cache/@parcel-optimizer-image-npm-2.11.0-49b9f44d2c-9c4d9d087f.zip/node_modules/@parcel/optimizer-image/",\ + "packageDependencies": [\ + ["@parcel/optimizer-image", "virtual:17ce42eefd3c1742d7451449fd8cf829d307641f4cbc190ade9f837bbc79351f1b58c8a23e6cb04e41dc199c10ed466a85ff269618363ea492002596387b8285#npm:2.11.0"],\ + ["@parcel/core", "npm:2.11.0"],\ + ["@parcel/diagnostic", "npm:2.11.0"],\ + ["@parcel/plugin", "npm:2.11.0"],\ + ["@parcel/rust", "npm:2.11.0"],\ + ["@parcel/utils", "npm:2.11.0"],\ + ["@parcel/workers", "virtual:6342e70419d23ded2f099abb73d52673ebe4aa5f7610a94b4cb189fdc9467b1f593741b0e4115e824ba71d89c6ceebe1edf27412aa7a6c4e52178845d92cdae2#npm:2.11.0"],\ ["@types/parcel__core", null]\ ],\ "packagePeers": [\ @@ -1665,38 +1665,38 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["@parcel/optimizer-svgo", [\ - ["npm:2.10.0", {\ - "packageLocation": "./.yarn/cache/@parcel-optimizer-svgo-npm-2.10.0-154d938969-7201c63222.zip/node_modules/@parcel/optimizer-svgo/",\ + ["npm:2.11.0", {\ + "packageLocation": "./.yarn/cache/@parcel-optimizer-svgo-npm-2.11.0-4c73051f7f-4e671856c2.zip/node_modules/@parcel/optimizer-svgo/",\ "packageDependencies": [\ - ["@parcel/optimizer-svgo", "npm:2.10.0"],\ - ["@parcel/diagnostic", "npm:2.10.0"],\ - ["@parcel/plugin", "npm:2.10.0"],\ - ["@parcel/utils", "npm:2.10.0"],\ + ["@parcel/optimizer-svgo", "npm:2.11.0"],\ + ["@parcel/diagnostic", "npm:2.11.0"],\ + ["@parcel/plugin", "npm:2.11.0"],\ + ["@parcel/utils", "npm:2.11.0"],\ ["svgo", "npm:2.8.0"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["@parcel/optimizer-swc", [\ - ["npm:2.10.0", {\ - "packageLocation": "./.yarn/cache/@parcel-optimizer-swc-npm-2.10.0-caf3bb9c02-1fe68ee6ff.zip/node_modules/@parcel/optimizer-swc/",\ + ["npm:2.11.0", {\ + "packageLocation": "./.yarn/cache/@parcel-optimizer-swc-npm-2.11.0-4799184866-be4b8bc94a.zip/node_modules/@parcel/optimizer-swc/",\ "packageDependencies": [\ - ["@parcel/optimizer-swc", "npm:2.10.0"],\ - ["@parcel/diagnostic", "npm:2.10.0"],\ - ["@parcel/plugin", "npm:2.10.0"],\ + ["@parcel/optimizer-swc", "npm:2.11.0"],\ + ["@parcel/diagnostic", "npm:2.11.0"],\ + ["@parcel/plugin", "npm:2.11.0"],\ ["@parcel/source-map", "npm:2.1.1"],\ - ["@parcel/utils", "npm:2.10.0"],\ - ["@swc/core", "virtual:caf3bb9c02ae9f768ff8cb8f830dcff0d7f38e60f1817c3f155faf0af46cd208a17e673fb908c23a477f907e553fbf9eef21af5f078ed79b4c34aca3fefc5224#npm:1.3.62"],\ + ["@parcel/utils", "npm:2.11.0"],\ + ["@swc/core", "virtual:4799184866cd9cb2867cf49e40df5e30b686091241fc4cc427f5e3eb7f7b349698c16ff8ede59668764bad9b6d43d9686d4bd070291adaf700abdf26dedd4b71#npm:1.3.62"],\ ["nullthrows", "npm:1.1.1"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["@parcel/package-manager", [\ - ["npm:2.10.0", {\ - "packageLocation": "./.yarn/cache/@parcel-package-manager-npm-2.10.0-4f4a39adee-7c4a95d9df.zip/node_modules/@parcel/package-manager/",\ + ["npm:2.11.0", {\ + "packageLocation": "./.yarn/cache/@parcel-package-manager-npm-2.11.0-0093175155-3846542eb5.zip/node_modules/@parcel/package-manager/",\ "packageDependencies": [\ - ["@parcel/package-manager", "npm:2.10.0"]\ + ["@parcel/package-manager", "npm:2.11.0"]\ ],\ "linkType": "SOFT"\ }],\ @@ -1707,43 +1707,43 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ "linkType": "SOFT"\ }],\ - ["virtual:270e786ba124f493b75e4cd9a08f7491010f97327e0fcf0c93872db7e85ab335c548e71e39c548e3ecd0ddd319719697b172c5c43cd0b75c1948a8e82873b962#npm:2.10.0", {\ - "packageLocation": "./.yarn/__virtual__/@parcel-package-manager-virtual-2dbcea4ef2/0/cache/@parcel-package-manager-npm-2.10.0-4f4a39adee-7c4a95d9df.zip/node_modules/@parcel/package-manager/",\ - "packageDependencies": [\ - ["@parcel/package-manager", "virtual:270e786ba124f493b75e4cd9a08f7491010f97327e0fcf0c93872db7e85ab335c548e71e39c548e3ecd0ddd319719697b172c5c43cd0b75c1948a8e82873b962#npm:2.10.0"],\ - ["@parcel/core", "npm:2.6.2"],\ - ["@parcel/diagnostic", "npm:2.10.0"],\ - ["@parcel/fs", "virtual:270e786ba124f493b75e4cd9a08f7491010f97327e0fcf0c93872db7e85ab335c548e71e39c548e3ecd0ddd319719697b172c5c43cd0b75c1948a8e82873b962#npm:2.10.0"],\ - ["@parcel/logger", "npm:2.10.0"],\ - ["@parcel/node-resolver-core", "npm:3.1.0"],\ - ["@parcel/types", "npm:2.10.0"],\ - ["@parcel/utils", "npm:2.10.0"],\ - ["@parcel/workers", "virtual:270e786ba124f493b75e4cd9a08f7491010f97327e0fcf0c93872db7e85ab335c548e71e39c548e3ecd0ddd319719697b172c5c43cd0b75c1948a8e82873b962#npm:2.10.0"],\ + ["virtual:6342e70419d23ded2f099abb73d52673ebe4aa5f7610a94b4cb189fdc9467b1f593741b0e4115e824ba71d89c6ceebe1edf27412aa7a6c4e52178845d92cdae2#npm:2.11.0", {\ + "packageLocation": "./.yarn/__virtual__/@parcel-package-manager-virtual-8b906a0261/0/cache/@parcel-package-manager-npm-2.11.0-0093175155-3846542eb5.zip/node_modules/@parcel/package-manager/",\ + "packageDependencies": [\ + ["@parcel/package-manager", "virtual:6342e70419d23ded2f099abb73d52673ebe4aa5f7610a94b4cb189fdc9467b1f593741b0e4115e824ba71d89c6ceebe1edf27412aa7a6c4e52178845d92cdae2#npm:2.11.0"],\ + ["@parcel/core", "npm:2.11.0"],\ + ["@parcel/diagnostic", "npm:2.11.0"],\ + ["@parcel/fs", "virtual:6342e70419d23ded2f099abb73d52673ebe4aa5f7610a94b4cb189fdc9467b1f593741b0e4115e824ba71d89c6ceebe1edf27412aa7a6c4e52178845d92cdae2#npm:2.11.0"],\ + ["@parcel/logger", "npm:2.11.0"],\ + ["@parcel/node-resolver-core", "npm:3.2.0"],\ + ["@parcel/types", "npm:2.11.0"],\ + ["@parcel/utils", "npm:2.11.0"],\ + ["@parcel/workers", "virtual:6342e70419d23ded2f099abb73d52673ebe4aa5f7610a94b4cb189fdc9467b1f593741b0e4115e824ba71d89c6ceebe1edf27412aa7a6c4e52178845d92cdae2#npm:2.11.0"],\ ["@types/parcel__core", null],\ ["semver", "npm:7.5.4"]\ ],\ "packagePeers": [\ + "@parcel/core",\ "@types/parcel__core"\ ],\ "linkType": "HARD"\ }],\ - ["virtual:59eaeeba7a5d21408bb7b40531b36a88648baa29ed841afea77b484ce4124f400b3aed2f6c7b6598bebbcce34fe625391a4c262c0e17b5a4f9e1ebbf693fa69b#npm:2.10.0", {\ - "packageLocation": "./.yarn/__virtual__/@parcel-package-manager-virtual-07edc7e62f/0/cache/@parcel-package-manager-npm-2.10.0-4f4a39adee-7c4a95d9df.zip/node_modules/@parcel/package-manager/",\ - "packageDependencies": [\ - ["@parcel/package-manager", "virtual:59eaeeba7a5d21408bb7b40531b36a88648baa29ed841afea77b484ce4124f400b3aed2f6c7b6598bebbcce34fe625391a4c262c0e17b5a4f9e1ebbf693fa69b#npm:2.10.0"],\ - ["@parcel/core", "npm:2.10.0"],\ - ["@parcel/diagnostic", "npm:2.10.0"],\ - ["@parcel/fs", "virtual:59eaeeba7a5d21408bb7b40531b36a88648baa29ed841afea77b484ce4124f400b3aed2f6c7b6598bebbcce34fe625391a4c262c0e17b5a4f9e1ebbf693fa69b#npm:2.10.0"],\ - ["@parcel/logger", "npm:2.10.0"],\ - ["@parcel/node-resolver-core", "npm:3.1.0"],\ - ["@parcel/types", "npm:2.10.0"],\ - ["@parcel/utils", "npm:2.10.0"],\ - ["@parcel/workers", "virtual:59eaeeba7a5d21408bb7b40531b36a88648baa29ed841afea77b484ce4124f400b3aed2f6c7b6598bebbcce34fe625391a4c262c0e17b5a4f9e1ebbf693fa69b#npm:2.10.0"],\ + ["virtual:888eab94f9b4aab4a19c969b59cee148bb5a70e4910c884134a49811609ccb8e720c3f507f2dd3bd74e8e26cf45521fb678b2039f6655ff2d61157f18c4449b6#npm:2.11.0", {\ + "packageLocation": "./.yarn/__virtual__/@parcel-package-manager-virtual-e18d4da332/0/cache/@parcel-package-manager-npm-2.11.0-0093175155-3846542eb5.zip/node_modules/@parcel/package-manager/",\ + "packageDependencies": [\ + ["@parcel/package-manager", "virtual:888eab94f9b4aab4a19c969b59cee148bb5a70e4910c884134a49811609ccb8e720c3f507f2dd3bd74e8e26cf45521fb678b2039f6655ff2d61157f18c4449b6#npm:2.11.0"],\ + ["@parcel/core", "npm:2.6.2"],\ + ["@parcel/diagnostic", "npm:2.11.0"],\ + ["@parcel/fs", "virtual:888eab94f9b4aab4a19c969b59cee148bb5a70e4910c884134a49811609ccb8e720c3f507f2dd3bd74e8e26cf45521fb678b2039f6655ff2d61157f18c4449b6#npm:2.11.0"],\ + ["@parcel/logger", "npm:2.11.0"],\ + ["@parcel/node-resolver-core", "npm:3.2.0"],\ + ["@parcel/types", "npm:2.11.0"],\ + ["@parcel/utils", "npm:2.11.0"],\ + ["@parcel/workers", "virtual:888eab94f9b4aab4a19c969b59cee148bb5a70e4910c884134a49811609ccb8e720c3f507f2dd3bd74e8e26cf45521fb678b2039f6655ff2d61157f18c4449b6#npm:2.11.0"],\ ["@types/parcel__core", null],\ ["semver", "npm:7.5.4"]\ ],\ "packagePeers": [\ - "@parcel/core",\ "@types/parcel__core"\ ],\ "linkType": "HARD"\ @@ -1769,27 +1769,27 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["@parcel/packager-css", [\ - ["npm:2.10.0", {\ - "packageLocation": "./.yarn/cache/@parcel-packager-css-npm-2.10.0-cb31a968a8-11bf4cae4c.zip/node_modules/@parcel/packager-css/",\ + ["npm:2.11.0", {\ + "packageLocation": "./.yarn/cache/@parcel-packager-css-npm-2.11.0-d68345b85a-2aa8da12ca.zip/node_modules/@parcel/packager-css/",\ "packageDependencies": [\ - ["@parcel/packager-css", "npm:2.10.0"],\ - ["@parcel/diagnostic", "npm:2.10.0"],\ - ["@parcel/plugin", "npm:2.10.0"],\ + ["@parcel/packager-css", "npm:2.11.0"],\ + ["@parcel/diagnostic", "npm:2.11.0"],\ + ["@parcel/plugin", "npm:2.11.0"],\ ["@parcel/source-map", "npm:2.1.1"],\ - ["@parcel/utils", "npm:2.10.0"],\ + ["@parcel/utils", "npm:2.11.0"],\ ["nullthrows", "npm:1.1.1"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["@parcel/packager-html", [\ - ["npm:2.10.0", {\ - "packageLocation": "./.yarn/cache/@parcel-packager-html-npm-2.10.0-d6f71e7e36-8dfd86e7d6.zip/node_modules/@parcel/packager-html/",\ + ["npm:2.11.0", {\ + "packageLocation": "./.yarn/cache/@parcel-packager-html-npm-2.11.0-cc99e7973c-a651b4f3cf.zip/node_modules/@parcel/packager-html/",\ "packageDependencies": [\ - ["@parcel/packager-html", "npm:2.10.0"],\ - ["@parcel/plugin", "npm:2.10.0"],\ - ["@parcel/types", "npm:2.10.0"],\ - ["@parcel/utils", "npm:2.10.0"],\ + ["@parcel/packager-html", "npm:2.11.0"],\ + ["@parcel/plugin", "npm:2.11.0"],\ + ["@parcel/types", "npm:2.11.0"],\ + ["@parcel/utils", "npm:2.11.0"],\ ["nullthrows", "npm:1.1.1"],\ ["posthtml", "npm:0.16.6"]\ ],\ @@ -1797,16 +1797,16 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["@parcel/packager-js", [\ - ["npm:2.10.0", {\ - "packageLocation": "./.yarn/cache/@parcel-packager-js-npm-2.10.0-f84ec4cc7b-9b62598864.zip/node_modules/@parcel/packager-js/",\ + ["npm:2.11.0", {\ + "packageLocation": "./.yarn/cache/@parcel-packager-js-npm-2.11.0-1b99c3cf17-63d96fb22b.zip/node_modules/@parcel/packager-js/",\ "packageDependencies": [\ - ["@parcel/packager-js", "npm:2.10.0"],\ - ["@parcel/diagnostic", "npm:2.10.0"],\ - ["@parcel/plugin", "npm:2.10.0"],\ - ["@parcel/rust", "npm:2.10.0"],\ + ["@parcel/packager-js", "npm:2.11.0"],\ + ["@parcel/diagnostic", "npm:2.11.0"],\ + ["@parcel/plugin", "npm:2.11.0"],\ + ["@parcel/rust", "npm:2.11.0"],\ ["@parcel/source-map", "npm:2.1.1"],\ - ["@parcel/types", "npm:2.10.0"],\ - ["@parcel/utils", "npm:2.10.0"],\ + ["@parcel/types", "npm:2.11.0"],\ + ["@parcel/utils", "npm:2.11.0"],\ ["globals", "npm:13.15.0"],\ ["nullthrows", "npm:1.1.1"]\ ],\ @@ -1814,44 +1814,44 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["@parcel/packager-raw", [\ - ["npm:2.10.0", {\ - "packageLocation": "./.yarn/cache/@parcel-packager-raw-npm-2.10.0-01ef1b8e3e-492fe07ae5.zip/node_modules/@parcel/packager-raw/",\ + ["npm:2.11.0", {\ + "packageLocation": "./.yarn/cache/@parcel-packager-raw-npm-2.11.0-7b94e2b267-c36dbcc82a.zip/node_modules/@parcel/packager-raw/",\ "packageDependencies": [\ - ["@parcel/packager-raw", "npm:2.10.0"],\ - ["@parcel/plugin", "npm:2.10.0"]\ + ["@parcel/packager-raw", "npm:2.11.0"],\ + ["@parcel/plugin", "npm:2.11.0"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["@parcel/packager-svg", [\ - ["npm:2.10.0", {\ - "packageLocation": "./.yarn/cache/@parcel-packager-svg-npm-2.10.0-22326715bd-f49d7f3b88.zip/node_modules/@parcel/packager-svg/",\ + ["npm:2.11.0", {\ + "packageLocation": "./.yarn/cache/@parcel-packager-svg-npm-2.11.0-8d1f3d908d-2d0394dd5e.zip/node_modules/@parcel/packager-svg/",\ "packageDependencies": [\ - ["@parcel/packager-svg", "npm:2.10.0"],\ - ["@parcel/plugin", "npm:2.10.0"],\ - ["@parcel/types", "npm:2.10.0"],\ - ["@parcel/utils", "npm:2.10.0"],\ + ["@parcel/packager-svg", "npm:2.11.0"],\ + ["@parcel/plugin", "npm:2.11.0"],\ + ["@parcel/types", "npm:2.11.0"],\ + ["@parcel/utils", "npm:2.11.0"],\ ["posthtml", "npm:0.16.6"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["@parcel/packager-wasm", [\ - ["npm:2.10.0", {\ - "packageLocation": "./.yarn/cache/@parcel-packager-wasm-npm-2.10.0-b1d2cd8f88-d9a13eb838.zip/node_modules/@parcel/packager-wasm/",\ + ["npm:2.11.0", {\ + "packageLocation": "./.yarn/cache/@parcel-packager-wasm-npm-2.11.0-250c4c8045-4f0617fe51.zip/node_modules/@parcel/packager-wasm/",\ "packageDependencies": [\ - ["@parcel/packager-wasm", "npm:2.10.0"],\ - ["@parcel/plugin", "npm:2.10.0"]\ + ["@parcel/packager-wasm", "npm:2.11.0"],\ + ["@parcel/plugin", "npm:2.11.0"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["@parcel/plugin", [\ - ["npm:2.10.0", {\ - "packageLocation": "./.yarn/cache/@parcel-plugin-npm-2.10.0-efbc58a209-e13ba6e7e5.zip/node_modules/@parcel/plugin/",\ + ["npm:2.11.0", {\ + "packageLocation": "./.yarn/cache/@parcel-plugin-npm-2.11.0-24c81a1d64-45344c3ac0.zip/node_modules/@parcel/plugin/",\ "packageDependencies": [\ - ["@parcel/plugin", "npm:2.10.0"],\ - ["@parcel/types", "npm:2.10.0"]\ + ["@parcel/plugin", "npm:2.11.0"],\ + ["@parcel/types", "npm:2.11.0"]\ ],\ "linkType": "HARD"\ }],\ @@ -1865,49 +1865,50 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["@parcel/profiler", [\ - ["npm:2.10.0", {\ - "packageLocation": "./.yarn/cache/@parcel-profiler-npm-2.10.0-b1ba499bc1-78d545edb7.zip/node_modules/@parcel/profiler/",\ + ["npm:2.11.0", {\ + "packageLocation": "./.yarn/cache/@parcel-profiler-npm-2.11.0-ddcb455e20-f5b5749786.zip/node_modules/@parcel/profiler/",\ "packageDependencies": [\ - ["@parcel/profiler", "npm:2.10.0"],\ - ["@parcel/diagnostic", "npm:2.10.0"],\ - ["@parcel/events", "npm:2.10.0"],\ + ["@parcel/profiler", "npm:2.11.0"],\ + ["@parcel/diagnostic", "npm:2.11.0"],\ + ["@parcel/events", "npm:2.11.0"],\ ["chrome-trace-event", "npm:1.0.3"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["@parcel/reporter-cli", [\ - ["npm:2.10.0", {\ - "packageLocation": "./.yarn/cache/@parcel-reporter-cli-npm-2.10.0-083fc2f2d6-0137a91e45.zip/node_modules/@parcel/reporter-cli/",\ + ["npm:2.11.0", {\ + "packageLocation": "./.yarn/cache/@parcel-reporter-cli-npm-2.11.0-ab155d7a57-81e62144ad.zip/node_modules/@parcel/reporter-cli/",\ "packageDependencies": [\ - ["@parcel/reporter-cli", "npm:2.10.0"],\ - ["@parcel/plugin", "npm:2.10.0"],\ - ["@parcel/types", "npm:2.10.0"],\ - ["@parcel/utils", "npm:2.10.0"],\ + ["@parcel/reporter-cli", "npm:2.11.0"],\ + ["@parcel/plugin", "npm:2.11.0"],\ + ["@parcel/types", "npm:2.11.0"],\ + ["@parcel/utils", "npm:2.11.0"],\ ["chalk", "npm:4.1.2"],\ + ["cli-progress", "npm:3.12.0"],\ ["term-size", "npm:2.2.1"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["@parcel/reporter-dev-server", [\ - ["npm:2.10.0", {\ - "packageLocation": "./.yarn/cache/@parcel-reporter-dev-server-npm-2.10.0-2f19cb846e-e72fd6ec09.zip/node_modules/@parcel/reporter-dev-server/",\ + ["npm:2.11.0", {\ + "packageLocation": "./.yarn/cache/@parcel-reporter-dev-server-npm-2.11.0-5fc4b1fa22-ac8948c7f3.zip/node_modules/@parcel/reporter-dev-server/",\ "packageDependencies": [\ - ["@parcel/reporter-dev-server", "npm:2.10.0"],\ - ["@parcel/plugin", "npm:2.10.0"],\ - ["@parcel/utils", "npm:2.10.0"]\ + ["@parcel/reporter-dev-server", "npm:2.11.0"],\ + ["@parcel/plugin", "npm:2.11.0"],\ + ["@parcel/utils", "npm:2.11.0"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["@parcel/reporter-tracer", [\ - ["npm:2.10.0", {\ - "packageLocation": "./.yarn/cache/@parcel-reporter-tracer-npm-2.10.0-184a89e262-0f8249b998.zip/node_modules/@parcel/reporter-tracer/",\ + ["npm:2.11.0", {\ + "packageLocation": "./.yarn/cache/@parcel-reporter-tracer-npm-2.11.0-8a358255e3-83aedfc97d.zip/node_modules/@parcel/reporter-tracer/",\ "packageDependencies": [\ - ["@parcel/reporter-tracer", "npm:2.10.0"],\ - ["@parcel/plugin", "npm:2.10.0"],\ - ["@parcel/utils", "npm:2.10.0"],\ + ["@parcel/reporter-tracer", "npm:2.11.0"],\ + ["@parcel/plugin", "npm:2.11.0"],\ + ["@parcel/utils", "npm:2.11.0"],\ ["chrome-trace-event", "npm:1.0.3"],\ ["nullthrows", "npm:1.1.1"]\ ],\ @@ -1915,47 +1916,47 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["@parcel/resolver-default", [\ - ["npm:2.10.0", {\ - "packageLocation": "./.yarn/cache/@parcel-resolver-default-npm-2.10.0-ca49f01a75-c82e2d3c4b.zip/node_modules/@parcel/resolver-default/",\ + ["npm:2.11.0", {\ + "packageLocation": "./.yarn/cache/@parcel-resolver-default-npm-2.11.0-d8f3f39d13-bbb5f6dfd6.zip/node_modules/@parcel/resolver-default/",\ "packageDependencies": [\ - ["@parcel/resolver-default", "npm:2.10.0"],\ - ["@parcel/node-resolver-core", "npm:3.1.0"],\ - ["@parcel/plugin", "npm:2.10.0"]\ + ["@parcel/resolver-default", "npm:2.11.0"],\ + ["@parcel/node-resolver-core", "npm:3.2.0"],\ + ["@parcel/plugin", "npm:2.11.0"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["@parcel/runtime-browser-hmr", [\ - ["npm:2.10.0", {\ - "packageLocation": "./.yarn/cache/@parcel-runtime-browser-hmr-npm-2.10.0-c6b7773a09-12928462c8.zip/node_modules/@parcel/runtime-browser-hmr/",\ + ["npm:2.11.0", {\ + "packageLocation": "./.yarn/cache/@parcel-runtime-browser-hmr-npm-2.11.0-f1e83d8dd6-ad7eba3210.zip/node_modules/@parcel/runtime-browser-hmr/",\ "packageDependencies": [\ - ["@parcel/runtime-browser-hmr", "npm:2.10.0"],\ - ["@parcel/plugin", "npm:2.10.0"],\ - ["@parcel/utils", "npm:2.10.0"]\ + ["@parcel/runtime-browser-hmr", "npm:2.11.0"],\ + ["@parcel/plugin", "npm:2.11.0"],\ + ["@parcel/utils", "npm:2.11.0"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["@parcel/runtime-js", [\ - ["npm:2.10.0", {\ - "packageLocation": "./.yarn/cache/@parcel-runtime-js-npm-2.10.0-6b4cf1576c-3bbd64c5b9.zip/node_modules/@parcel/runtime-js/",\ + ["npm:2.11.0", {\ + "packageLocation": "./.yarn/cache/@parcel-runtime-js-npm-2.11.0-d9caebabcf-3cab5e6b62.zip/node_modules/@parcel/runtime-js/",\ "packageDependencies": [\ - ["@parcel/runtime-js", "npm:2.10.0"],\ - ["@parcel/diagnostic", "npm:2.10.0"],\ - ["@parcel/plugin", "npm:2.10.0"],\ - ["@parcel/utils", "npm:2.10.0"],\ + ["@parcel/runtime-js", "npm:2.11.0"],\ + ["@parcel/diagnostic", "npm:2.11.0"],\ + ["@parcel/plugin", "npm:2.11.0"],\ + ["@parcel/utils", "npm:2.11.0"],\ ["nullthrows", "npm:1.1.1"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["@parcel/runtime-react-refresh", [\ - ["npm:2.10.0", {\ - "packageLocation": "./.yarn/cache/@parcel-runtime-react-refresh-npm-2.10.0-b1f6c62bdf-dc567474a1.zip/node_modules/@parcel/runtime-react-refresh/",\ + ["npm:2.11.0", {\ + "packageLocation": "./.yarn/cache/@parcel-runtime-react-refresh-npm-2.11.0-d4ea40f648-0a29d9e55a.zip/node_modules/@parcel/runtime-react-refresh/",\ "packageDependencies": [\ - ["@parcel/runtime-react-refresh", "npm:2.10.0"],\ - ["@parcel/plugin", "npm:2.10.0"],\ - ["@parcel/utils", "npm:2.10.0"],\ + ["@parcel/runtime-react-refresh", "npm:2.11.0"],\ + ["@parcel/plugin", "npm:2.11.0"],\ + ["@parcel/utils", "npm:2.11.0"],\ ["react-error-overlay", "npm:6.0.9"],\ ["react-refresh", "npm:0.9.0"]\ ],\ @@ -1963,22 +1964,22 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["@parcel/runtime-service-worker", [\ - ["npm:2.10.0", {\ - "packageLocation": "./.yarn/cache/@parcel-runtime-service-worker-npm-2.10.0-3ca99a5366-d0bfd113b9.zip/node_modules/@parcel/runtime-service-worker/",\ + ["npm:2.11.0", {\ + "packageLocation": "./.yarn/cache/@parcel-runtime-service-worker-npm-2.11.0-a6c5146e82-da8d2b5a92.zip/node_modules/@parcel/runtime-service-worker/",\ "packageDependencies": [\ - ["@parcel/runtime-service-worker", "npm:2.10.0"],\ - ["@parcel/plugin", "npm:2.10.0"],\ - ["@parcel/utils", "npm:2.10.0"],\ + ["@parcel/runtime-service-worker", "npm:2.11.0"],\ + ["@parcel/plugin", "npm:2.11.0"],\ + ["@parcel/utils", "npm:2.11.0"],\ ["nullthrows", "npm:1.1.1"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["@parcel/rust", [\ - ["npm:2.10.0", {\ - "packageLocation": "./.yarn/unplugged/@parcel-rust-npm-2.10.0-99038406b0/node_modules/@parcel/rust/",\ + ["npm:2.11.0", {\ + "packageLocation": "./.yarn/unplugged/@parcel-rust-npm-2.11.0-8335cb8859/node_modules/@parcel/rust/",\ "packageDependencies": [\ - ["@parcel/rust", "npm:2.10.0"]\ + ["@parcel/rust", "npm:2.11.0"]\ ],\ "linkType": "HARD"\ }]\ @@ -2002,14 +2003,14 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["@parcel/transformer-babel", [\ - ["npm:2.10.0", {\ - "packageLocation": "./.yarn/cache/@parcel-transformer-babel-npm-2.10.0-fb74ad8c73-fd64092c9c.zip/node_modules/@parcel/transformer-babel/",\ + ["npm:2.11.0", {\ + "packageLocation": "./.yarn/cache/@parcel-transformer-babel-npm-2.11.0-4f420dae94-f36c7973c6.zip/node_modules/@parcel/transformer-babel/",\ "packageDependencies": [\ - ["@parcel/transformer-babel", "npm:2.10.0"],\ - ["@parcel/diagnostic", "npm:2.10.0"],\ - ["@parcel/plugin", "npm:2.10.0"],\ + ["@parcel/transformer-babel", "npm:2.11.0"],\ + ["@parcel/diagnostic", "npm:2.11.0"],\ + ["@parcel/plugin", "npm:2.11.0"],\ ["@parcel/source-map", "npm:2.1.1"],\ - ["@parcel/utils", "npm:2.10.0"],\ + ["@parcel/utils", "npm:2.11.0"],\ ["browserslist", "npm:4.20.3"],\ ["json5", "npm:2.2.1"],\ ["nullthrows", "npm:1.1.1"],\ @@ -2019,14 +2020,14 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["@parcel/transformer-css", [\ - ["npm:2.10.0", {\ - "packageLocation": "./.yarn/cache/@parcel-transformer-css-npm-2.10.0-4fc35c8005-acc26e9b3d.zip/node_modules/@parcel/transformer-css/",\ + ["npm:2.11.0", {\ + "packageLocation": "./.yarn/cache/@parcel-transformer-css-npm-2.11.0-3686de070e-59b1893b94.zip/node_modules/@parcel/transformer-css/",\ "packageDependencies": [\ - ["@parcel/transformer-css", "npm:2.10.0"],\ - ["@parcel/diagnostic", "npm:2.10.0"],\ - ["@parcel/plugin", "npm:2.10.0"],\ + ["@parcel/transformer-css", "npm:2.11.0"],\ + ["@parcel/diagnostic", "npm:2.11.0"],\ + ["@parcel/plugin", "npm:2.11.0"],\ ["@parcel/source-map", "npm:2.1.1"],\ - ["@parcel/utils", "npm:2.10.0"],\ + ["@parcel/utils", "npm:2.11.0"],\ ["browserslist", "npm:4.20.3"],\ ["lightningcss", "npm:1.17.1"],\ ["nullthrows", "npm:1.1.1"]\ @@ -2035,13 +2036,13 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["@parcel/transformer-html", [\ - ["npm:2.10.0", {\ - "packageLocation": "./.yarn/cache/@parcel-transformer-html-npm-2.10.0-b6d2228044-f28e0d3606.zip/node_modules/@parcel/transformer-html/",\ + ["npm:2.11.0", {\ + "packageLocation": "./.yarn/cache/@parcel-transformer-html-npm-2.11.0-ee0c40ba5b-fd333e9a48.zip/node_modules/@parcel/transformer-html/",\ "packageDependencies": [\ - ["@parcel/transformer-html", "npm:2.10.0"],\ - ["@parcel/diagnostic", "npm:2.10.0"],\ - ["@parcel/plugin", "npm:2.10.0"],\ - ["@parcel/rust", "npm:2.10.0"],\ + ["@parcel/transformer-html", "npm:2.11.0"],\ + ["@parcel/diagnostic", "npm:2.11.0"],\ + ["@parcel/plugin", "npm:2.11.0"],\ + ["@parcel/rust", "npm:2.11.0"],\ ["nullthrows", "npm:1.1.1"],\ ["posthtml", "npm:0.16.6"],\ ["posthtml-parser", "npm:0.10.2"],\ @@ -2053,21 +2054,21 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["@parcel/transformer-image", [\ - ["npm:2.10.0", {\ - "packageLocation": "./.yarn/cache/@parcel-transformer-image-npm-2.10.0-e63bd526ed-61a47d7d8e.zip/node_modules/@parcel/transformer-image/",\ + ["npm:2.11.0", {\ + "packageLocation": "./.yarn/cache/@parcel-transformer-image-npm-2.11.0-056c5ef1d6-65e7fa4791.zip/node_modules/@parcel/transformer-image/",\ "packageDependencies": [\ - ["@parcel/transformer-image", "npm:2.10.0"]\ + ["@parcel/transformer-image", "npm:2.11.0"]\ ],\ "linkType": "SOFT"\ }],\ - ["virtual:61dcbb3314ed0db4613bbccf7f920606ba09571991ce6dbf378d0f819338fde0afdb3e35306b4f7d24155236814007855a39ab7d05afaeadead37df42309ed7e#npm:2.10.0", {\ - "packageLocation": "./.yarn/__virtual__/@parcel-transformer-image-virtual-3e73171071/0/cache/@parcel-transformer-image-npm-2.10.0-e63bd526ed-61a47d7d8e.zip/node_modules/@parcel/transformer-image/",\ - "packageDependencies": [\ - ["@parcel/transformer-image", "virtual:61dcbb3314ed0db4613bbccf7f920606ba09571991ce6dbf378d0f819338fde0afdb3e35306b4f7d24155236814007855a39ab7d05afaeadead37df42309ed7e#npm:2.10.0"],\ - ["@parcel/core", "npm:2.10.0"],\ - ["@parcel/plugin", "npm:2.10.0"],\ - ["@parcel/utils", "npm:2.10.0"],\ - ["@parcel/workers", "virtual:59eaeeba7a5d21408bb7b40531b36a88648baa29ed841afea77b484ce4124f400b3aed2f6c7b6598bebbcce34fe625391a4c262c0e17b5a4f9e1ebbf693fa69b#npm:2.10.0"],\ + ["virtual:17ce42eefd3c1742d7451449fd8cf829d307641f4cbc190ade9f837bbc79351f1b58c8a23e6cb04e41dc199c10ed466a85ff269618363ea492002596387b8285#npm:2.11.0", {\ + "packageLocation": "./.yarn/__virtual__/@parcel-transformer-image-virtual-4bf1e27e4d/0/cache/@parcel-transformer-image-npm-2.11.0-056c5ef1d6-65e7fa4791.zip/node_modules/@parcel/transformer-image/",\ + "packageDependencies": [\ + ["@parcel/transformer-image", "virtual:17ce42eefd3c1742d7451449fd8cf829d307641f4cbc190ade9f837bbc79351f1b58c8a23e6cb04e41dc199c10ed466a85ff269618363ea492002596387b8285#npm:2.11.0"],\ + ["@parcel/core", "npm:2.11.0"],\ + ["@parcel/plugin", "npm:2.11.0"],\ + ["@parcel/utils", "npm:2.11.0"],\ + ["@parcel/workers", "virtual:6342e70419d23ded2f099abb73d52673ebe4aa5f7610a94b4cb189fdc9467b1f593741b0e4115e824ba71d89c6ceebe1edf27412aa7a6c4e52178845d92cdae2#npm:2.11.0"],\ ["@types/parcel__core", null],\ ["nullthrows", "npm:1.1.1"]\ ],\ @@ -2079,34 +2080,34 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["@parcel/transformer-inline-string", [\ - ["npm:2.10.0", {\ - "packageLocation": "./.yarn/cache/@parcel-transformer-inline-string-npm-2.10.0-44c9b349db-618c919108.zip/node_modules/@parcel/transformer-inline-string/",\ + ["npm:2.11.0", {\ + "packageLocation": "./.yarn/cache/@parcel-transformer-inline-string-npm-2.11.0-5076b0e854-99e53f2939.zip/node_modules/@parcel/transformer-inline-string/",\ "packageDependencies": [\ - ["@parcel/transformer-inline-string", "npm:2.10.0"],\ - ["@parcel/plugin", "npm:2.10.0"]\ + ["@parcel/transformer-inline-string", "npm:2.11.0"],\ + ["@parcel/plugin", "npm:2.11.0"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["@parcel/transformer-js", [\ - ["npm:2.10.0", {\ - "packageLocation": "./.yarn/cache/@parcel-transformer-js-npm-2.10.0-132e460926-e9944ce77c.zip/node_modules/@parcel/transformer-js/",\ + ["npm:2.11.0", {\ + "packageLocation": "./.yarn/cache/@parcel-transformer-js-npm-2.11.0-dfce68b0df-ae75820a39.zip/node_modules/@parcel/transformer-js/",\ "packageDependencies": [\ - ["@parcel/transformer-js", "npm:2.10.0"]\ + ["@parcel/transformer-js", "npm:2.11.0"]\ ],\ "linkType": "SOFT"\ }],\ - ["virtual:61dcbb3314ed0db4613bbccf7f920606ba09571991ce6dbf378d0f819338fde0afdb3e35306b4f7d24155236814007855a39ab7d05afaeadead37df42309ed7e#npm:2.10.0", {\ - "packageLocation": "./.yarn/__virtual__/@parcel-transformer-js-virtual-aab7779f34/0/cache/@parcel-transformer-js-npm-2.10.0-132e460926-e9944ce77c.zip/node_modules/@parcel/transformer-js/",\ - "packageDependencies": [\ - ["@parcel/transformer-js", "virtual:61dcbb3314ed0db4613bbccf7f920606ba09571991ce6dbf378d0f819338fde0afdb3e35306b4f7d24155236814007855a39ab7d05afaeadead37df42309ed7e#npm:2.10.0"],\ - ["@parcel/core", "npm:2.10.0"],\ - ["@parcel/diagnostic", "npm:2.10.0"],\ - ["@parcel/plugin", "npm:2.10.0"],\ - ["@parcel/rust", "npm:2.10.0"],\ + ["virtual:17ce42eefd3c1742d7451449fd8cf829d307641f4cbc190ade9f837bbc79351f1b58c8a23e6cb04e41dc199c10ed466a85ff269618363ea492002596387b8285#npm:2.11.0", {\ + "packageLocation": "./.yarn/__virtual__/@parcel-transformer-js-virtual-eaa1bf3878/0/cache/@parcel-transformer-js-npm-2.11.0-dfce68b0df-ae75820a39.zip/node_modules/@parcel/transformer-js/",\ + "packageDependencies": [\ + ["@parcel/transformer-js", "virtual:17ce42eefd3c1742d7451449fd8cf829d307641f4cbc190ade9f837bbc79351f1b58c8a23e6cb04e41dc199c10ed466a85ff269618363ea492002596387b8285#npm:2.11.0"],\ + ["@parcel/core", "npm:2.11.0"],\ + ["@parcel/diagnostic", "npm:2.11.0"],\ + ["@parcel/plugin", "npm:2.11.0"],\ + ["@parcel/rust", "npm:2.11.0"],\ ["@parcel/source-map", "npm:2.1.1"],\ - ["@parcel/utils", "npm:2.10.0"],\ - ["@parcel/workers", "virtual:59eaeeba7a5d21408bb7b40531b36a88648baa29ed841afea77b484ce4124f400b3aed2f6c7b6598bebbcce34fe625391a4c262c0e17b5a4f9e1ebbf693fa69b#npm:2.10.0"],\ + ["@parcel/utils", "npm:2.11.0"],\ + ["@parcel/workers", "virtual:6342e70419d23ded2f099abb73d52673ebe4aa5f7610a94b4cb189fdc9467b1f593741b0e4115e824ba71d89c6ceebe1edf27412aa7a6c4e52178845d92cdae2#npm:2.11.0"],\ ["@swc/helpers", "npm:0.5.1"],\ ["@types/parcel__core", null],\ ["browserslist", "npm:4.20.3"],\ @@ -2122,25 +2123,25 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["@parcel/transformer-json", [\ - ["npm:2.10.0", {\ - "packageLocation": "./.yarn/cache/@parcel-transformer-json-npm-2.10.0-5525143f86-9c7aceb8e6.zip/node_modules/@parcel/transformer-json/",\ + ["npm:2.11.0", {\ + "packageLocation": "./.yarn/cache/@parcel-transformer-json-npm-2.11.0-2bdc20c542-6e25561d09.zip/node_modules/@parcel/transformer-json/",\ "packageDependencies": [\ - ["@parcel/transformer-json", "npm:2.10.0"],\ - ["@parcel/plugin", "npm:2.10.0"],\ + ["@parcel/transformer-json", "npm:2.11.0"],\ + ["@parcel/plugin", "npm:2.11.0"],\ ["json5", "npm:2.2.1"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["@parcel/transformer-postcss", [\ - ["npm:2.10.0", {\ - "packageLocation": "./.yarn/cache/@parcel-transformer-postcss-npm-2.10.0-c1f60c708a-2e524bd513.zip/node_modules/@parcel/transformer-postcss/",\ - "packageDependencies": [\ - ["@parcel/transformer-postcss", "npm:2.10.0"],\ - ["@parcel/diagnostic", "npm:2.10.0"],\ - ["@parcel/plugin", "npm:2.10.0"],\ - ["@parcel/rust", "npm:2.10.0"],\ - ["@parcel/utils", "npm:2.10.0"],\ + ["npm:2.11.0", {\ + "packageLocation": "./.yarn/cache/@parcel-transformer-postcss-npm-2.11.0-91cc8bafce-10f0054e5b.zip/node_modules/@parcel/transformer-postcss/",\ + "packageDependencies": [\ + ["@parcel/transformer-postcss", "npm:2.11.0"],\ + ["@parcel/diagnostic", "npm:2.11.0"],\ + ["@parcel/plugin", "npm:2.11.0"],\ + ["@parcel/rust", "npm:2.11.0"],\ + ["@parcel/utils", "npm:2.11.0"],\ ["clone", "npm:2.1.2"],\ ["nullthrows", "npm:1.1.1"],\ ["postcss-value-parser", "npm:4.2.0"],\ @@ -2150,12 +2151,12 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["@parcel/transformer-posthtml", [\ - ["npm:2.10.0", {\ - "packageLocation": "./.yarn/cache/@parcel-transformer-posthtml-npm-2.10.0-31d54ed3f0-7de343f0f9.zip/node_modules/@parcel/transformer-posthtml/",\ + ["npm:2.11.0", {\ + "packageLocation": "./.yarn/cache/@parcel-transformer-posthtml-npm-2.11.0-988444d0fc-d79e3666ca.zip/node_modules/@parcel/transformer-posthtml/",\ "packageDependencies": [\ - ["@parcel/transformer-posthtml", "npm:2.10.0"],\ - ["@parcel/plugin", "npm:2.10.0"],\ - ["@parcel/utils", "npm:2.10.0"],\ + ["@parcel/transformer-posthtml", "npm:2.11.0"],\ + ["@parcel/plugin", "npm:2.11.0"],\ + ["@parcel/utils", "npm:2.11.0"],\ ["nullthrows", "npm:1.1.1"],\ ["posthtml", "npm:0.16.6"],\ ["posthtml-parser", "npm:0.10.2"],\ @@ -2166,33 +2167,33 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["@parcel/transformer-raw", [\ - ["npm:2.10.0", {\ - "packageLocation": "./.yarn/cache/@parcel-transformer-raw-npm-2.10.0-d7cd50f767-c7b1b9c6f7.zip/node_modules/@parcel/transformer-raw/",\ + ["npm:2.11.0", {\ + "packageLocation": "./.yarn/cache/@parcel-transformer-raw-npm-2.11.0-642bbfc25f-b914665c09.zip/node_modules/@parcel/transformer-raw/",\ "packageDependencies": [\ - ["@parcel/transformer-raw", "npm:2.10.0"],\ - ["@parcel/plugin", "npm:2.10.0"]\ + ["@parcel/transformer-raw", "npm:2.11.0"],\ + ["@parcel/plugin", "npm:2.11.0"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["@parcel/transformer-react-refresh-wrap", [\ - ["npm:2.10.0", {\ - "packageLocation": "./.yarn/cache/@parcel-transformer-react-refresh-wrap-npm-2.10.0-4c3ddcc095-fc3163bcb0.zip/node_modules/@parcel/transformer-react-refresh-wrap/",\ + ["npm:2.11.0", {\ + "packageLocation": "./.yarn/cache/@parcel-transformer-react-refresh-wrap-npm-2.11.0-ae62731131-b17b7a151d.zip/node_modules/@parcel/transformer-react-refresh-wrap/",\ "packageDependencies": [\ - ["@parcel/transformer-react-refresh-wrap", "npm:2.10.0"],\ - ["@parcel/plugin", "npm:2.10.0"],\ - ["@parcel/utils", "npm:2.10.0"],\ + ["@parcel/transformer-react-refresh-wrap", "npm:2.11.0"],\ + ["@parcel/plugin", "npm:2.11.0"],\ + ["@parcel/utils", "npm:2.11.0"],\ ["react-refresh", "npm:0.9.0"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["@parcel/transformer-sass", [\ - ["npm:2.10.0", {\ - "packageLocation": "./.yarn/cache/@parcel-transformer-sass-npm-2.10.0-6c5f188bcc-2d697077ac.zip/node_modules/@parcel/transformer-sass/",\ + ["npm:2.11.0", {\ + "packageLocation": "./.yarn/cache/@parcel-transformer-sass-npm-2.11.0-1bbd436614-8a7248969b.zip/node_modules/@parcel/transformer-sass/",\ "packageDependencies": [\ - ["@parcel/transformer-sass", "npm:2.10.0"],\ - ["@parcel/plugin", "npm:2.10.0"],\ + ["@parcel/transformer-sass", "npm:2.11.0"],\ + ["@parcel/plugin", "npm:2.11.0"],\ ["@parcel/source-map", "npm:2.1.1"],\ ["sass", "npm:1.52.1"]\ ],\ @@ -2200,13 +2201,13 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["@parcel/transformer-svg", [\ - ["npm:2.10.0", {\ - "packageLocation": "./.yarn/cache/@parcel-transformer-svg-npm-2.10.0-881c72cd1f-d5f55f6eee.zip/node_modules/@parcel/transformer-svg/",\ + ["npm:2.11.0", {\ + "packageLocation": "./.yarn/cache/@parcel-transformer-svg-npm-2.11.0-a17754ebb9-48bf4503de.zip/node_modules/@parcel/transformer-svg/",\ "packageDependencies": [\ - ["@parcel/transformer-svg", "npm:2.10.0"],\ - ["@parcel/diagnostic", "npm:2.10.0"],\ - ["@parcel/plugin", "npm:2.10.0"],\ - ["@parcel/rust", "npm:2.10.0"],\ + ["@parcel/transformer-svg", "npm:2.11.0"],\ + ["@parcel/diagnostic", "npm:2.11.0"],\ + ["@parcel/plugin", "npm:2.11.0"],\ + ["@parcel/rust", "npm:2.11.0"],\ ["nullthrows", "npm:1.1.1"],\ ["posthtml", "npm:0.16.6"],\ ["posthtml-parser", "npm:0.10.2"],\ @@ -2217,16 +2218,16 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["@parcel/types", [\ - ["npm:2.10.0", {\ - "packageLocation": "./.yarn/cache/@parcel-types-npm-2.10.0-270e786ba1-387aa07902.zip/node_modules/@parcel/types/",\ - "packageDependencies": [\ - ["@parcel/types", "npm:2.10.0"],\ - ["@parcel/cache", "virtual:270e786ba124f493b75e4cd9a08f7491010f97327e0fcf0c93872db7e85ab335c548e71e39c548e3ecd0ddd319719697b172c5c43cd0b75c1948a8e82873b962#npm:2.10.0"],\ - ["@parcel/diagnostic", "npm:2.10.0"],\ - ["@parcel/fs", "virtual:270e786ba124f493b75e4cd9a08f7491010f97327e0fcf0c93872db7e85ab335c548e71e39c548e3ecd0ddd319719697b172c5c43cd0b75c1948a8e82873b962#npm:2.10.0"],\ - ["@parcel/package-manager", "virtual:270e786ba124f493b75e4cd9a08f7491010f97327e0fcf0c93872db7e85ab335c548e71e39c548e3ecd0ddd319719697b172c5c43cd0b75c1948a8e82873b962#npm:2.10.0"],\ + ["npm:2.11.0", {\ + "packageLocation": "./.yarn/cache/@parcel-types-npm-2.11.0-888eab94f9-8534156caf.zip/node_modules/@parcel/types/",\ + "packageDependencies": [\ + ["@parcel/types", "npm:2.11.0"],\ + ["@parcel/cache", "virtual:888eab94f9b4aab4a19c969b59cee148bb5a70e4910c884134a49811609ccb8e720c3f507f2dd3bd74e8e26cf45521fb678b2039f6655ff2d61157f18c4449b6#npm:2.11.0"],\ + ["@parcel/diagnostic", "npm:2.11.0"],\ + ["@parcel/fs", "virtual:888eab94f9b4aab4a19c969b59cee148bb5a70e4910c884134a49811609ccb8e720c3f507f2dd3bd74e8e26cf45521fb678b2039f6655ff2d61157f18c4449b6#npm:2.11.0"],\ + ["@parcel/package-manager", "virtual:888eab94f9b4aab4a19c969b59cee148bb5a70e4910c884134a49811609ccb8e720c3f507f2dd3bd74e8e26cf45521fb678b2039f6655ff2d61157f18c4449b6#npm:2.11.0"],\ ["@parcel/source-map", "npm:2.1.1"],\ - ["@parcel/workers", "virtual:270e786ba124f493b75e4cd9a08f7491010f97327e0fcf0c93872db7e85ab335c548e71e39c548e3ecd0ddd319719697b172c5c43cd0b75c1948a8e82873b962#npm:2.10.0"],\ + ["@parcel/workers", "virtual:888eab94f9b4aab4a19c969b59cee148bb5a70e4910c884134a49811609ccb8e720c3f507f2dd3bd74e8e26cf45521fb678b2039f6655ff2d61157f18c4449b6#npm:2.11.0"],\ ["utility-types", "npm:3.10.0"]\ ],\ "linkType": "HARD"\ @@ -2247,15 +2248,15 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["@parcel/utils", [\ - ["npm:2.10.0", {\ - "packageLocation": "./.yarn/cache/@parcel-utils-npm-2.10.0-1f25fbc366-9f4953ff9a.zip/node_modules/@parcel/utils/",\ - "packageDependencies": [\ - ["@parcel/utils", "npm:2.10.0"],\ - ["@parcel/codeframe", "npm:2.10.0"],\ - ["@parcel/diagnostic", "npm:2.10.0"],\ - ["@parcel/logger", "npm:2.10.0"],\ - ["@parcel/markdown-ansi", "npm:2.10.0"],\ - ["@parcel/rust", "npm:2.10.0"],\ + ["npm:2.11.0", {\ + "packageLocation": "./.yarn/cache/@parcel-utils-npm-2.11.0-401481d70b-e40f4bca04.zip/node_modules/@parcel/utils/",\ + "packageDependencies": [\ + ["@parcel/utils", "npm:2.11.0"],\ + ["@parcel/codeframe", "npm:2.11.0"],\ + ["@parcel/diagnostic", "npm:2.11.0"],\ + ["@parcel/logger", "npm:2.11.0"],\ + ["@parcel/markdown-ansi", "npm:2.11.0"],\ + ["@parcel/rust", "npm:2.11.0"],\ ["@parcel/source-map", "npm:2.1.1"],\ ["chalk", "npm:4.1.2"],\ ["nullthrows", "npm:1.1.1"]\ @@ -2300,10 +2301,10 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["@parcel/workers", [\ - ["npm:2.10.0", {\ - "packageLocation": "./.yarn/cache/@parcel-workers-npm-2.10.0-7f8aa5ad5a-e8b1701b53.zip/node_modules/@parcel/workers/",\ + ["npm:2.11.0", {\ + "packageLocation": "./.yarn/cache/@parcel-workers-npm-2.11.0-4f22c80d03-0771ad5372.zip/node_modules/@parcel/workers/",\ "packageDependencies": [\ - ["@parcel/workers", "npm:2.10.0"]\ + ["@parcel/workers", "npm:2.11.0"]\ ],\ "linkType": "SOFT"\ }],\ @@ -2314,39 +2315,39 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ "linkType": "SOFT"\ }],\ - ["virtual:270e786ba124f493b75e4cd9a08f7491010f97327e0fcf0c93872db7e85ab335c548e71e39c548e3ecd0ddd319719697b172c5c43cd0b75c1948a8e82873b962#npm:2.10.0", {\ - "packageLocation": "./.yarn/__virtual__/@parcel-workers-virtual-2fd2d815f8/0/cache/@parcel-workers-npm-2.10.0-7f8aa5ad5a-e8b1701b53.zip/node_modules/@parcel/workers/",\ - "packageDependencies": [\ - ["@parcel/workers", "virtual:270e786ba124f493b75e4cd9a08f7491010f97327e0fcf0c93872db7e85ab335c548e71e39c548e3ecd0ddd319719697b172c5c43cd0b75c1948a8e82873b962#npm:2.10.0"],\ - ["@parcel/core", "npm:2.6.2"],\ - ["@parcel/diagnostic", "npm:2.10.0"],\ - ["@parcel/logger", "npm:2.10.0"],\ - ["@parcel/profiler", "npm:2.10.0"],\ - ["@parcel/types", "npm:2.10.0"],\ - ["@parcel/utils", "npm:2.10.0"],\ + ["virtual:6342e70419d23ded2f099abb73d52673ebe4aa5f7610a94b4cb189fdc9467b1f593741b0e4115e824ba71d89c6ceebe1edf27412aa7a6c4e52178845d92cdae2#npm:2.11.0", {\ + "packageLocation": "./.yarn/__virtual__/@parcel-workers-virtual-c577fc490c/0/cache/@parcel-workers-npm-2.11.0-4f22c80d03-0771ad5372.zip/node_modules/@parcel/workers/",\ + "packageDependencies": [\ + ["@parcel/workers", "virtual:6342e70419d23ded2f099abb73d52673ebe4aa5f7610a94b4cb189fdc9467b1f593741b0e4115e824ba71d89c6ceebe1edf27412aa7a6c4e52178845d92cdae2#npm:2.11.0"],\ + ["@parcel/core", "npm:2.11.0"],\ + ["@parcel/diagnostic", "npm:2.11.0"],\ + ["@parcel/logger", "npm:2.11.0"],\ + ["@parcel/profiler", "npm:2.11.0"],\ + ["@parcel/types", "npm:2.11.0"],\ + ["@parcel/utils", "npm:2.11.0"],\ ["@types/parcel__core", null],\ ["nullthrows", "npm:1.1.1"]\ ],\ "packagePeers": [\ + "@parcel/core",\ "@types/parcel__core"\ ],\ "linkType": "HARD"\ }],\ - ["virtual:59eaeeba7a5d21408bb7b40531b36a88648baa29ed841afea77b484ce4124f400b3aed2f6c7b6598bebbcce34fe625391a4c262c0e17b5a4f9e1ebbf693fa69b#npm:2.10.0", {\ - "packageLocation": "./.yarn/__virtual__/@parcel-workers-virtual-5aa58b2681/0/cache/@parcel-workers-npm-2.10.0-7f8aa5ad5a-e8b1701b53.zip/node_modules/@parcel/workers/",\ - "packageDependencies": [\ - ["@parcel/workers", "virtual:59eaeeba7a5d21408bb7b40531b36a88648baa29ed841afea77b484ce4124f400b3aed2f6c7b6598bebbcce34fe625391a4c262c0e17b5a4f9e1ebbf693fa69b#npm:2.10.0"],\ - ["@parcel/core", "npm:2.10.0"],\ - ["@parcel/diagnostic", "npm:2.10.0"],\ - ["@parcel/logger", "npm:2.10.0"],\ - ["@parcel/profiler", "npm:2.10.0"],\ - ["@parcel/types", "npm:2.10.0"],\ - ["@parcel/utils", "npm:2.10.0"],\ + ["virtual:888eab94f9b4aab4a19c969b59cee148bb5a70e4910c884134a49811609ccb8e720c3f507f2dd3bd74e8e26cf45521fb678b2039f6655ff2d61157f18c4449b6#npm:2.11.0", {\ + "packageLocation": "./.yarn/__virtual__/@parcel-workers-virtual-a3f024e771/0/cache/@parcel-workers-npm-2.11.0-4f22c80d03-0771ad5372.zip/node_modules/@parcel/workers/",\ + "packageDependencies": [\ + ["@parcel/workers", "virtual:888eab94f9b4aab4a19c969b59cee148bb5a70e4910c884134a49811609ccb8e720c3f507f2dd3bd74e8e26cf45521fb678b2039f6655ff2d61157f18c4449b6#npm:2.11.0"],\ + ["@parcel/core", "npm:2.6.2"],\ + ["@parcel/diagnostic", "npm:2.11.0"],\ + ["@parcel/logger", "npm:2.11.0"],\ + ["@parcel/profiler", "npm:2.11.0"],\ + ["@parcel/types", "npm:2.11.0"],\ + ["@parcel/utils", "npm:2.11.0"],\ ["@types/parcel__core", null],\ ["nullthrows", "npm:1.1.1"]\ ],\ "packagePeers": [\ - "@parcel/core",\ "@types/parcel__core"\ ],\ "linkType": "HARD"\ @@ -2396,17 +2397,17 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["@rollup/pluginutils", [\ - ["npm:5.0.5", {\ - "packageLocation": "./.yarn/cache/@rollup-pluginutils-npm-5.0.5-cfa8fafc53-dcd4d6e3cb.zip/node_modules/@rollup/pluginutils/",\ + ["npm:5.1.0", {\ + "packageLocation": "./.yarn/cache/@rollup-pluginutils-npm-5.1.0-6939820ef8-3cc5a6d914.zip/node_modules/@rollup/pluginutils/",\ "packageDependencies": [\ - ["@rollup/pluginutils", "npm:5.0.5"]\ + ["@rollup/pluginutils", "npm:5.1.0"]\ ],\ "linkType": "SOFT"\ }],\ - ["virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:5.0.5", {\ - "packageLocation": "./.yarn/__virtual__/@rollup-pluginutils-virtual-9173e115a7/0/cache/@rollup-pluginutils-npm-5.0.5-cfa8fafc53-dcd4d6e3cb.zip/node_modules/@rollup/pluginutils/",\ + ["virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:5.1.0", {\ + "packageLocation": "./.yarn/__virtual__/@rollup-pluginutils-virtual-e968017249/0/cache/@rollup-pluginutils-npm-5.1.0-6939820ef8-3cc5a6d914.zip/node_modules/@rollup/pluginutils/",\ "packageDependencies": [\ - ["@rollup/pluginutils", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:5.0.5"],\ + ["@rollup/pluginutils", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:5.1.0"],\ ["@types/estree", "npm:1.0.0"],\ ["@types/rollup", null],\ ["estree-walker", "npm:2.0.2"],\ @@ -2421,17 +2422,17 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["@sidvind/better-ajv-errors", [\ - ["npm:2.0.0", {\ - "packageLocation": "./.yarn/cache/@sidvind-better-ajv-errors-npm-2.0.0-3531bddef9-12b0d87855.zip/node_modules/@sidvind/better-ajv-errors/",\ + ["npm:2.1.3", {\ + "packageLocation": "./.yarn/cache/@sidvind-better-ajv-errors-npm-2.1.3-e3d1c524a8-949cb805a1.zip/node_modules/@sidvind/better-ajv-errors/",\ "packageDependencies": [\ - ["@sidvind/better-ajv-errors", "npm:2.0.0"]\ + ["@sidvind/better-ajv-errors", "npm:2.1.3"]\ ],\ "linkType": "SOFT"\ }],\ - ["virtual:c83421120a0d81573c2202cf177f92bb37ea59966baf7759b6fa4e9a2982e6fe336614d87630b5be4c85c00ef51834cf2a040f710a51f15e792d3dd3e2377e0f#npm:2.0.0", {\ - "packageLocation": "./.yarn/__virtual__/@sidvind-better-ajv-errors-virtual-017003deb2/0/cache/@sidvind-better-ajv-errors-npm-2.0.0-3531bddef9-12b0d87855.zip/node_modules/@sidvind/better-ajv-errors/",\ + ["virtual:e087f95fa0950f6010a0851ab4d6d6011e967fc2646f5866c713d305b816f963a51a63b7bfd976893be3d9eb1e67e1b6f955dea5a0bcb511fbafc2a3f5511d6c#npm:2.1.3", {\ + "packageLocation": "./.yarn/__virtual__/@sidvind-better-ajv-errors-virtual-9000c885ab/0/cache/@sidvind-better-ajv-errors-npm-2.1.3-e3d1c524a8-949cb805a1.zip/node_modules/@sidvind/better-ajv-errors/",\ "packageDependencies": [\ - ["@sidvind/better-ajv-errors", "virtual:c83421120a0d81573c2202cf177f92bb37ea59966baf7759b6fa4e9a2982e6fe336614d87630b5be4c85c00ef51834cf2a040f710a51f15e792d3dd3e2377e0f#npm:2.0.0"],\ + ["@sidvind/better-ajv-errors", "virtual:e087f95fa0950f6010a0851ab4d6d6011e967fc2646f5866c713d305b816f963a51a63b7bfd976893be3d9eb1e67e1b6f955dea5a0bcb511fbafc2a3f5511d6c#npm:2.1.3"],\ ["@babel/code-frame", "npm:7.16.7"],\ ["@types/ajv", null],\ ["ajv", "npm:8.11.0"],\ @@ -2446,16 +2447,16 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ]],\ ["@swc/core", [\ ["npm:1.3.62", {\ - "packageLocation": "./.yarn/unplugged/@swc-core-virtual-fa54a417e9/node_modules/@swc/core/",\ + "packageLocation": "./.yarn/unplugged/@swc-core-virtual-25c8dbb7dc/node_modules/@swc/core/",\ "packageDependencies": [\ ["@swc/core", "npm:1.3.62"]\ ],\ "linkType": "SOFT"\ }],\ - ["virtual:caf3bb9c02ae9f768ff8cb8f830dcff0d7f38e60f1817c3f155faf0af46cd208a17e673fb908c23a477f907e553fbf9eef21af5f078ed79b4c34aca3fefc5224#npm:1.3.62", {\ - "packageLocation": "./.yarn/unplugged/@swc-core-virtual-fa54a417e9/node_modules/@swc/core/",\ + ["virtual:4799184866cd9cb2867cf49e40df5e30b686091241fc4cc427f5e3eb7f7b349698c16ff8ede59668764bad9b6d43d9686d4bd070291adaf700abdf26dedd4b71#npm:1.3.62", {\ + "packageLocation": "./.yarn/unplugged/@swc-core-virtual-25c8dbb7dc/node_modules/@swc/core/",\ "packageDependencies": [\ - ["@swc/core", "virtual:caf3bb9c02ae9f768ff8cb8f830dcff0d7f38e60f1817c3f155faf0af46cd208a17e673fb908c23a477f907e553fbf9eef21af5f078ed79b4c34aca3fefc5224#npm:1.3.62"],\ + ["@swc/core", "virtual:4799184866cd9cb2867cf49e40df5e30b686091241fc4cc427f5e3eb7f7b349698c16ff8ede59668764bad9b6d43d9686d4bd070291adaf700abdf26dedd4b71#npm:1.3.62"],\ ["@swc/core-darwin-arm64", "npm:1.3.62"],\ ["@swc/core-darwin-x64", "npm:1.3.62"],\ ["@swc/core-linux-arm-gnueabihf", "npm:1.3.62"],\ @@ -2693,21 +2694,21 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["@vitejs/plugin-vue", [\ - ["npm:4.4.0", {\ - "packageLocation": "./.yarn/cache/@vitejs-plugin-vue-npm-4.4.0-c33d65c6f6-37b6987951.zip/node_modules/@vitejs/plugin-vue/",\ + ["npm:4.6.2", {\ + "packageLocation": "./.yarn/cache/@vitejs-plugin-vue-npm-4.6.2-d7ace53203-01bc4ed643.zip/node_modules/@vitejs/plugin-vue/",\ "packageDependencies": [\ - ["@vitejs/plugin-vue", "npm:4.4.0"]\ + ["@vitejs/plugin-vue", "npm:4.6.2"]\ ],\ "linkType": "SOFT"\ }],\ - ["virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:4.4.0", {\ - "packageLocation": "./.yarn/__virtual__/@vitejs-plugin-vue-virtual-6c0c604c2e/0/cache/@vitejs-plugin-vue-npm-4.4.0-c33d65c6f6-37b6987951.zip/node_modules/@vitejs/plugin-vue/",\ + ["virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:4.6.2", {\ + "packageLocation": "./.yarn/__virtual__/@vitejs-plugin-vue-virtual-090b584a9c/0/cache/@vitejs-plugin-vue-npm-4.6.2-d7ace53203-01bc4ed643.zip/node_modules/@vitejs/plugin-vue/",\ "packageDependencies": [\ - ["@vitejs/plugin-vue", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:4.4.0"],\ + ["@vitejs/plugin-vue", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:4.6.2"],\ ["@types/vite", null],\ ["@types/vue", null],\ - ["vite", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:4.5.0"],\ - ["vue", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:3.3.7"]\ + ["vite", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:4.5.1"],\ + ["vue", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:3.4.13"]\ ],\ "packagePeers": [\ "@types/vite",\ @@ -2719,12 +2720,13 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["@vue/compiler-core", [\ - ["npm:3.3.7", {\ - "packageLocation": "./.yarn/cache/@vue-compiler-core-npm-3.3.7-584a90831e-94ac56a5a8.zip/node_modules/@vue/compiler-core/",\ + ["npm:3.4.13", {\ + "packageLocation": "./.yarn/cache/@vue-compiler-core-npm-3.4.13-acb31588b3-5f486b5ca8.zip/node_modules/@vue/compiler-core/",\ "packageDependencies": [\ - ["@vue/compiler-core", "npm:3.3.7"],\ - ["@babel/parser", "npm:7.23.0"],\ - ["@vue/shared", "npm:3.3.7"],\ + ["@vue/compiler-core", "npm:3.4.13"],\ + ["@babel/parser", "npm:7.23.6"],\ + ["@vue/shared", "npm:3.4.13"],\ + ["entities", "npm:4.5.0"],\ ["estree-walker", "npm:2.0.2"],\ ["source-map-js", "npm:1.0.2"]\ ],\ @@ -2732,42 +2734,41 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["@vue/compiler-dom", [\ - ["npm:3.3.7", {\ - "packageLocation": "./.yarn/cache/@vue-compiler-dom-npm-3.3.7-53a75677b1-d54c49fd82.zip/node_modules/@vue/compiler-dom/",\ + ["npm:3.4.13", {\ + "packageLocation": "./.yarn/cache/@vue-compiler-dom-npm-3.4.13-419b24ea95-2afdacc038.zip/node_modules/@vue/compiler-dom/",\ "packageDependencies": [\ - ["@vue/compiler-dom", "npm:3.3.7"],\ - ["@vue/compiler-core", "npm:3.3.7"],\ - ["@vue/shared", "npm:3.3.7"]\ + ["@vue/compiler-dom", "npm:3.4.13"],\ + ["@vue/compiler-core", "npm:3.4.13"],\ + ["@vue/shared", "npm:3.4.13"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["@vue/compiler-sfc", [\ - ["npm:3.3.7", {\ - "packageLocation": "./.yarn/cache/@vue-compiler-sfc-npm-3.3.7-57757e7ccc-593c0b00f3.zip/node_modules/@vue/compiler-sfc/",\ - "packageDependencies": [\ - ["@vue/compiler-sfc", "npm:3.3.7"],\ - ["@babel/parser", "npm:7.23.0"],\ - ["@vue/compiler-core", "npm:3.3.7"],\ - ["@vue/compiler-dom", "npm:3.3.7"],\ - ["@vue/compiler-ssr", "npm:3.3.7"],\ - ["@vue/reactivity-transform", "npm:3.3.7"],\ - ["@vue/shared", "npm:3.3.7"],\ + ["npm:3.4.13", {\ + "packageLocation": "./.yarn/cache/@vue-compiler-sfc-npm-3.4.13-5fd28e3447-9252b9f10c.zip/node_modules/@vue/compiler-sfc/",\ + "packageDependencies": [\ + ["@vue/compiler-sfc", "npm:3.4.13"],\ + ["@babel/parser", "npm:7.23.6"],\ + ["@vue/compiler-core", "npm:3.4.13"],\ + ["@vue/compiler-dom", "npm:3.4.13"],\ + ["@vue/compiler-ssr", "npm:3.4.13"],\ + ["@vue/shared", "npm:3.4.13"],\ ["estree-walker", "npm:2.0.2"],\ ["magic-string", "npm:0.30.5"],\ - ["postcss", "npm:8.4.31"],\ + ["postcss", "npm:8.4.32"],\ ["source-map-js", "npm:1.0.2"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["@vue/compiler-ssr", [\ - ["npm:3.3.7", {\ - "packageLocation": "./.yarn/cache/@vue-compiler-ssr-npm-3.3.7-61efc0860e-42f8ddc9ff.zip/node_modules/@vue/compiler-ssr/",\ + ["npm:3.4.13", {\ + "packageLocation": "./.yarn/cache/@vue-compiler-ssr-npm-3.4.13-f1c98d5a6b-99fae88e13.zip/node_modules/@vue/compiler-ssr/",\ "packageDependencies": [\ - ["@vue/compiler-ssr", "npm:3.3.7"],\ - ["@vue/compiler-dom", "npm:3.3.7"],\ - ["@vue/shared", "npm:3.3.7"]\ + ["@vue/compiler-ssr", "npm:3.4.13"],\ + ["@vue/compiler-dom", "npm:3.4.13"],\ + ["@vue/shared", "npm:3.4.13"]\ ],\ "linkType": "HARD"\ }]\ @@ -2782,68 +2783,54 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["@vue/reactivity", [\ - ["npm:3.3.7", {\ - "packageLocation": "./.yarn/cache/@vue-reactivity-npm-3.3.7-0bf3bc7094-16b629c997.zip/node_modules/@vue/reactivity/",\ + ["npm:3.4.13", {\ + "packageLocation": "./.yarn/cache/@vue-reactivity-npm-3.4.13-ad954039b3-883ba2fb31.zip/node_modules/@vue/reactivity/",\ "packageDependencies": [\ - ["@vue/reactivity", "npm:3.3.7"],\ - ["@vue/shared", "npm:3.3.7"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@vue/reactivity-transform", [\ - ["npm:3.3.7", {\ - "packageLocation": "./.yarn/cache/@vue-reactivity-transform-npm-3.3.7-7c404f0363-f88d39c8a4.zip/node_modules/@vue/reactivity-transform/",\ - "packageDependencies": [\ - ["@vue/reactivity-transform", "npm:3.3.7"],\ - ["@babel/parser", "npm:7.23.0"],\ - ["@vue/compiler-core", "npm:3.3.7"],\ - ["@vue/shared", "npm:3.3.7"],\ - ["estree-walker", "npm:2.0.2"],\ - ["magic-string", "npm:0.30.5"]\ + ["@vue/reactivity", "npm:3.4.13"],\ + ["@vue/shared", "npm:3.4.13"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["@vue/runtime-core", [\ - ["npm:3.3.7", {\ - "packageLocation": "./.yarn/cache/@vue-runtime-core-npm-3.3.7-61d8aab53a-3fd38c6831.zip/node_modules/@vue/runtime-core/",\ + ["npm:3.4.13", {\ + "packageLocation": "./.yarn/cache/@vue-runtime-core-npm-3.4.13-a92d1fdb22-196c6c894d.zip/node_modules/@vue/runtime-core/",\ "packageDependencies": [\ - ["@vue/runtime-core", "npm:3.3.7"],\ - ["@vue/reactivity", "npm:3.3.7"],\ - ["@vue/shared", "npm:3.3.7"]\ + ["@vue/runtime-core", "npm:3.4.13"],\ + ["@vue/reactivity", "npm:3.4.13"],\ + ["@vue/shared", "npm:3.4.13"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["@vue/runtime-dom", [\ - ["npm:3.3.7", {\ - "packageLocation": "./.yarn/cache/@vue-runtime-dom-npm-3.3.7-07cf6cc840-9331ea0886.zip/node_modules/@vue/runtime-dom/",\ + ["npm:3.4.13", {\ + "packageLocation": "./.yarn/cache/@vue-runtime-dom-npm-3.4.13-b9f911a017-8811687c23.zip/node_modules/@vue/runtime-dom/",\ "packageDependencies": [\ - ["@vue/runtime-dom", "npm:3.3.7"],\ - ["@vue/runtime-core", "npm:3.3.7"],\ - ["@vue/shared", "npm:3.3.7"],\ - ["csstype", "npm:3.1.2"]\ + ["@vue/runtime-dom", "npm:3.4.13"],\ + ["@vue/runtime-core", "npm:3.4.13"],\ + ["@vue/shared", "npm:3.4.13"],\ + ["csstype", "npm:3.1.3"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["@vue/server-renderer", [\ - ["npm:3.3.7", {\ - "packageLocation": "./.yarn/cache/@vue-server-renderer-npm-3.3.7-a66f8ec338-c2e673d6f7.zip/node_modules/@vue/server-renderer/",\ + ["npm:3.4.13", {\ + "packageLocation": "./.yarn/cache/@vue-server-renderer-npm-3.4.13-6a75a1f39c-f17fff6af2.zip/node_modules/@vue/server-renderer/",\ "packageDependencies": [\ - ["@vue/server-renderer", "npm:3.3.7"]\ + ["@vue/server-renderer", "npm:3.4.13"]\ ],\ "linkType": "SOFT"\ }],\ - ["virtual:3abdc07485f088dc7c94fb6016205a603cbf92506f0de3d8b0b3c64fb975ecc9ffddafd33901d1bbe205fa301d19a0b5580e4aae44cfc80bff10566fc4d7e20b#npm:3.3.7", {\ - "packageLocation": "./.yarn/__virtual__/@vue-server-renderer-virtual-3e99bf9267/0/cache/@vue-server-renderer-npm-3.3.7-a66f8ec338-c2e673d6f7.zip/node_modules/@vue/server-renderer/",\ + ["virtual:70f0bf839f9a0f4ee48fb830cbf74c97964359640d4a604894b35bec6c5aed7fce5a0f06c521ced0640b9b3ca30c78af522cffa59c4405403ad1ab0de99f65b1#npm:3.4.13", {\ + "packageLocation": "./.yarn/__virtual__/@vue-server-renderer-virtual-a38b412c5f/0/cache/@vue-server-renderer-npm-3.4.13-6a75a1f39c-f17fff6af2.zip/node_modules/@vue/server-renderer/",\ "packageDependencies": [\ - ["@vue/server-renderer", "virtual:3abdc07485f088dc7c94fb6016205a603cbf92506f0de3d8b0b3c64fb975ecc9ffddafd33901d1bbe205fa301d19a0b5580e4aae44cfc80bff10566fc4d7e20b#npm:3.3.7"],\ + ["@vue/server-renderer", "virtual:70f0bf839f9a0f4ee48fb830cbf74c97964359640d4a604894b35bec6c5aed7fce5a0f06c521ced0640b9b3ca30c78af522cffa59c4405403ad1ab0de99f65b1#npm:3.4.13"],\ ["@types/vue", null],\ - ["@vue/compiler-ssr", "npm:3.3.7"],\ - ["@vue/shared", "npm:3.3.7"],\ - ["vue", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:3.3.7"]\ + ["@vue/compiler-ssr", "npm:3.4.13"],\ + ["@vue/shared", "npm:3.4.13"],\ + ["vue", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:3.4.13"]\ ],\ "packagePeers": [\ "@types/vue",\ @@ -2853,10 +2840,10 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["@vue/shared", [\ - ["npm:3.3.7", {\ - "packageLocation": "./.yarn/cache/@vue-shared-npm-3.3.7-44832a6399-a6718f760b.zip/node_modules/@vue/shared/",\ + ["npm:3.4.13", {\ + "packageLocation": "./.yarn/cache/@vue-shared-npm-3.4.13-4dcbacd500-c514944886.zip/node_modules/@vue/shared/",\ "packageDependencies": [\ - ["@vue/shared", "npm:3.3.7"]\ + ["@vue/shared", "npm:3.4.13"]\ ],\ "linkType": "HARD"\ }]\ @@ -3282,10 +3269,10 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["bootstrap-icons", [\ - ["npm:1.11.1", {\ - "packageLocation": "./.yarn/cache/bootstrap-icons-npm-1.11.1-9f55aea76a-d78ff24a83.zip/node_modules/bootstrap-icons/",\ + ["npm:1.11.3", {\ + "packageLocation": "./.yarn/cache/bootstrap-icons-npm-1.11.3-8d5387bef2-d5cdb90fe3.zip/node_modules/bootstrap-icons/",\ "packageDependencies": [\ - ["bootstrap-icons", "npm:1.11.1"]\ + ["bootstrap-icons", "npm:1.11.3"]\ ],\ "linkType": "HARD"\ }]\ @@ -3352,6 +3339,15 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { "linkType": "HARD"\ }]\ ]],\ + ["builtin-modules", [\ + ["npm:3.3.0", {\ + "packageLocation": "./.yarn/cache/builtin-modules-npm-3.3.0-db4f3d32de-db021755d7.zip/node_modules/builtin-modules/",\ + "packageDependencies": [\ + ["builtin-modules", "npm:3.3.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ ["builtins", [\ ["npm:5.0.1", {\ "packageLocation": "./.yarn/cache/builtins-npm-5.0.1-6d4820dd76-66d204657f.zip/node_modules/builtins/",\ @@ -3363,18 +3359,17 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["c8", [\ - ["npm:8.0.1", {\ - "packageLocation": "./.yarn/cache/c8-npm-8.0.1-6462c8130b-2c47531d21.zip/node_modules/c8/",\ + ["npm:9.1.0", {\ + "packageLocation": "./.yarn/cache/c8-npm-9.1.0-92c3d37f46-c5249bf9c3.zip/node_modules/c8/",\ "packageDependencies": [\ - ["c8", "npm:8.0.1"],\ + ["c8", "npm:9.1.0"],\ ["@bcoe/v8-coverage", "npm:0.2.3"],\ ["@istanbuljs/schema", "npm:0.1.3"],\ ["find-up", "npm:5.0.0"],\ - ["foreground-child", "npm:2.0.0"],\ + ["foreground-child", "npm:3.1.1"],\ ["istanbul-lib-coverage", "npm:3.2.0"],\ ["istanbul-lib-report", "npm:3.0.1"],\ ["istanbul-reports", "npm:3.1.6"],\ - ["rimraf", "npm:3.0.2"],\ ["test-exclude", "npm:6.0.0"],\ ["v8-to-istanbul", "npm:9.0.1"],\ ["yargs", "npm:17.7.2"],\ @@ -3448,10 +3443,10 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ "linkType": "HARD"\ }],\ - ["npm:1.0.30001538", {\ - "packageLocation": "./.yarn/cache/caniuse-lite-npm-1.0.30001538-68bfe8259b-94c5d55757.zip/node_modules/caniuse-lite/",\ + ["npm:1.0.30001576", {\ + "packageLocation": "./.yarn/cache/caniuse-lite-npm-1.0.30001576-3d0983cdce-b8b332675f.zip/node_modules/caniuse-lite/",\ "packageDependencies": [\ - ["caniuse-lite", "npm:1.0.30001538"]\ + ["caniuse-lite", "npm:1.0.30001576"]\ ],\ "linkType": "HARD"\ }]\ @@ -3531,6 +3526,16 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { "linkType": "HARD"\ }]\ ]],\ + ["cli-progress", [\ + ["npm:3.12.0", {\ + "packageLocation": "./.yarn/cache/cli-progress-npm-3.12.0-d686625154-e8390dc3cd.zip/node_modules/cli-progress/",\ + "packageDependencies": [\ + ["cli-progress", "npm:3.12.0"],\ + ["string-width", "npm:4.2.3"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ ["cliui", [\ ["npm:8.0.1", {\ "packageLocation": "./.yarn/cache/cliui-npm-8.0.1-3b029092cf-79648b3b00.zip/node_modules/cliui/",\ @@ -3751,10 +3756,10 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ "linkType": "HARD"\ }],\ - ["npm:3.1.2", {\ - "packageLocation": "./.yarn/cache/csstype-npm-3.1.2-cead7d99b2-e1a52e6c25.zip/node_modules/csstype/",\ + ["npm:3.1.3", {\ + "packageLocation": "./.yarn/cache/csstype-npm-3.1.3-e9a1c85013-8db785cc92.zip/node_modules/csstype/",\ "packageDependencies": [\ - ["csstype", "npm:3.1.2"]\ + ["csstype", "npm:3.1.3"]\ ],\ "linkType": "HARD"\ }]\ @@ -4147,10 +4152,10 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ "linkType": "SOFT"\ }],\ - ["virtual:d5901c8fe9a0c32ef9bd30914b8624afdd53ad520846726499200f014090a72c0a1d5e3737654e39af21acf7bf6f0993bedc3c908b3b8804daa47faed23d0085#npm:2.0.0", {\ - "packageLocation": "./.yarn/__virtual__/date-fns-tz-virtual-b19bed24ca/0/cache/date-fns-tz-npm-2.0.0-9b7996f292-a6553603a9.zip/node_modules/date-fns-tz/",\ + ["virtual:9083f0b60f7ff3c9457189a27c2996ceed17cab3520ae1c32ab5e5244b992c3c8baaf999ad3c2b19ef13e1964e3197201ef68b1b3153ac72686293207b8892cf#npm:2.0.0", {\ + "packageLocation": "./.yarn/__virtual__/date-fns-tz-virtual-50a17dbf90/0/cache/date-fns-tz-npm-2.0.0-9b7996f292-a6553603a9.zip/node_modules/date-fns-tz/",\ "packageDependencies": [\ - ["date-fns-tz", "virtual:d5901c8fe9a0c32ef9bd30914b8624afdd53ad520846726499200f014090a72c0a1d5e3737654e39af21acf7bf6f0993bedc3c908b3b8804daa47faed23d0085#npm:2.0.0"],\ + ["date-fns-tz", "virtual:9083f0b60f7ff3c9457189a27c2996ceed17cab3520ae1c32ab5e5244b992c3c8baaf999ad3c2b19ef13e1964e3197201ef68b1b3153ac72686293207b8892cf#npm:2.0.0"],\ ["@types/date-fns", null],\ ["date-fns", "npm:2.30.0"]\ ],\ @@ -4500,6 +4505,13 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ["entities", "npm:3.0.1"]\ ],\ "linkType": "HARD"\ + }],\ + ["npm:4.5.0", {\ + "packageLocation": "./.yarn/cache/entities-npm-4.5.0-7cdb83b832-853f8ebd5b.zip/node_modules/entities/",\ + "packageDependencies": [\ + ["entities", "npm:4.5.0"]\ + ],\ + "linkType": "HARD"\ }]\ ]],\ ["env-paths", [\ @@ -4678,14 +4690,14 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["eslint", [\ - ["npm:8.52.0", {\ - "packageLocation": "./.yarn/cache/eslint-npm-8.52.0-e7f048a439-fd22d1e9bd.zip/node_modules/eslint/",\ + ["npm:8.56.0", {\ + "packageLocation": "./.yarn/cache/eslint-npm-8.56.0-6eec398a41-883436d1e8.zip/node_modules/eslint/",\ "packageDependencies": [\ - ["eslint", "npm:8.52.0"],\ - ["@eslint-community/eslint-utils", "virtual:e7f048a4398cf12bbd1cde95eff45a3327b9fe42e04c31ed99d0e926830d0b78ff78b511118c2bd3bc6add84782ab97a5b001e972071d6fdbfe85a86c150922a#npm:4.4.0"],\ + ["eslint", "npm:8.56.0"],\ + ["@eslint-community/eslint-utils", "virtual:6eec398a4132b5372ea5ffc0bc36d4c81602b7e444a89685d0d958016d8fd53df5c0c97c6a8bf99951469e2c6c06135dd192e9309f6e39b1a4c85e0faabe1f6b#npm:4.4.0"],\ ["@eslint-community/regexpp", "npm:4.8.0"],\ - ["@eslint/eslintrc", "npm:2.1.2"],\ - ["@eslint/js", "npm:8.52.0"],\ + ["@eslint/eslintrc", "npm:2.1.4"],\ + ["@eslint/js", "npm:8.56.0"],\ ["@humanwhocodes/config-array", "npm:0.11.13"],\ ["@humanwhocodes/module-importer", "npm:1.0.1"],\ ["@nodelib/fs.walk", "npm:1.2.8"],\ @@ -4724,6 +4736,28 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { "linkType": "HARD"\ }]\ ]],\ + ["eslint-compat-utils", [\ + ["npm:0.1.2", {\ + "packageLocation": "./.yarn/cache/eslint-compat-utils-npm-0.1.2-361c6992b1-2315d9db81.zip/node_modules/eslint-compat-utils/",\ + "packageDependencies": [\ + ["eslint-compat-utils", "npm:0.1.2"]\ + ],\ + "linkType": "SOFT"\ + }],\ + ["virtual:ff64d06f93654b25d9cae47199e62d111efde9ee7d408664ae44397cd2ddf7906aefd54fcc2557f4d5619d92da3af68c7898126469c2a57c381e05b06491f0da#npm:0.1.2", {\ + "packageLocation": "./.yarn/__virtual__/eslint-compat-utils-virtual-a5f7e6147b/0/cache/eslint-compat-utils-npm-0.1.2-361c6992b1-2315d9db81.zip/node_modules/eslint-compat-utils/",\ + "packageDependencies": [\ + ["eslint-compat-utils", "virtual:ff64d06f93654b25d9cae47199e62d111efde9ee7d408664ae44397cd2ddf7906aefd54fcc2557f4d5619d92da3af68c7898126469c2a57c381e05b06491f0da#npm:0.1.2"],\ + ["@types/eslint", null],\ + ["eslint", "npm:8.56.0"]\ + ],\ + "packagePeers": [\ + "@types/eslint",\ + "eslint"\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ ["eslint-config-standard", [\ ["npm:17.1.0", {\ "packageLocation": "./.yarn/cache/eslint-config-standard-npm-17.1.0-e72fd623cc-8ed14ffe42.zip/node_modules/eslint-config-standard/",\ @@ -4740,9 +4774,9 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ["@types/eslint-plugin-import", null],\ ["@types/eslint-plugin-n", null],\ ["@types/eslint-plugin-promise", null],\ - ["eslint", "npm:8.52.0"],\ - ["eslint-plugin-import", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:2.29.0"],\ - ["eslint-plugin-n", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:16.2.0"],\ + ["eslint", "npm:8.56.0"],\ + ["eslint-plugin-import", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:2.29.1"],\ + ["eslint-plugin-n", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:16.6.2"],\ ["eslint-plugin-promise", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:6.1.1"]\ ],\ "packagePeers": [\ @@ -4778,10 +4812,10 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ "linkType": "SOFT"\ }],\ - ["virtual:361651f3309db7531b781b9cf23ea5ff31cb68a9d2e5b7a3be36bfa256e5be480a2eee2a0bb0e03ad6f236a91b841e8cfc2d7af10d590e856ac79becc3546855#npm:2.8.0", {\ - "packageLocation": "./.yarn/__virtual__/eslint-module-utils-virtual-a2b14e4224/0/cache/eslint-module-utils-npm-2.8.0-05e42bcab0-74c6dfea76.zip/node_modules/eslint-module-utils/",\ + ["virtual:caddce79266c9767570f5c081ff9adaab1d8b040965749cfca6a3f3f4fbd011bf36f7d755f18ef80e67a5402a33b10c9e1ffc34efb6909461044fc5d60cfbcd0#npm:2.8.0", {\ + "packageLocation": "./.yarn/__virtual__/eslint-module-utils-virtual-d80573de1e/0/cache/eslint-module-utils-npm-2.8.0-05e42bcab0-74c6dfea76.zip/node_modules/eslint-module-utils/",\ "packageDependencies": [\ - ["eslint-module-utils", "virtual:361651f3309db7531b781b9cf23ea5ff31cb68a9d2e5b7a3be36bfa256e5be480a2eee2a0bb0e03ad6f236a91b841e8cfc2d7af10d590e856ac79becc3546855#npm:2.8.0"],\ + ["eslint-module-utils", "virtual:caddce79266c9767570f5c081ff9adaab1d8b040965749cfca6a3f3f4fbd011bf36f7d755f18ef80e67a5402a33b10c9e1ffc34efb6909461044fc5d60cfbcd0#npm:2.8.0"],\ ["@types/eslint", null],\ ["@types/eslint-import-resolver-node", null],\ ["@types/eslint-import-resolver-typescript", null],\ @@ -4789,7 +4823,7 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ["@types/typescript-eslint__parser", null],\ ["@typescript-eslint/parser", null],\ ["debug", "virtual:2a426afc4b2eef43db12a540d29c2b5476640459bfcd5c24f86bb401cf8cce97e63bd81794d206a5643057e7f662643afd5ce3dfc4d4bfd8e706006c6309c5fa#npm:3.2.7"],\ - ["eslint", "npm:8.52.0"],\ + ["eslint", "npm:8.56.0"],\ ["eslint-import-resolver-node", "npm:0.3.9"],\ ["eslint-import-resolver-typescript", null],\ ["eslint-import-resolver-webpack", null]\ @@ -4822,7 +4856,7 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { "packageDependencies": [\ ["eslint-plugin-cypress", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:2.15.1"],\ ["@types/eslint", null],\ - ["eslint", "npm:8.52.0"],\ + ["eslint", "npm:8.56.0"],\ ["globals", "npm:13.21.0"]\ ],\ "packagePeers": [\ @@ -4845,7 +4879,7 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { "packageDependencies": [\ ["eslint-plugin-es", "virtual:5cccaf00e87dfff96dbbb5eaf7a3055373358b8114d6a1adfb32f54ed6b40ba06068d3aa1fdd8062899a0cad040f68c17cc6b72bac2cdbe9700f3d6330d112f3#npm:3.0.1"],\ ["@types/eslint", null],\ - ["eslint", "npm:8.52.0"],\ + ["eslint", "npm:8.56.0"],\ ["eslint-utils", "npm:2.1.0"],\ ["regexpp", "npm:3.2.0"]\ ],\ @@ -4857,21 +4891,22 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["eslint-plugin-es-x", [\ - ["npm:7.1.0", {\ - "packageLocation": "./.yarn/cache/eslint-plugin-es-x-npm-7.1.0-35735e8bbc-a19924313c.zip/node_modules/eslint-plugin-es-x/",\ + ["npm:7.5.0", {\ + "packageLocation": "./.yarn/cache/eslint-plugin-es-x-npm-7.5.0-77e84d6e5d-e770e57df7.zip/node_modules/eslint-plugin-es-x/",\ "packageDependencies": [\ - ["eslint-plugin-es-x", "npm:7.1.0"]\ + ["eslint-plugin-es-x", "npm:7.5.0"]\ ],\ "linkType": "SOFT"\ }],\ - ["virtual:990a558e2898625aeb04d5e4d99c65569b456f1205bf2f887fd96310a4f502e48e83c1c993f5a46d1cb27cf7bf7d2b513e2850b2c2df904e744e7d8325464673#npm:7.1.0", {\ - "packageLocation": "./.yarn/__virtual__/eslint-plugin-es-x-virtual-c166cb743f/0/cache/eslint-plugin-es-x-npm-7.1.0-35735e8bbc-a19924313c.zip/node_modules/eslint-plugin-es-x/",\ + ["virtual:e72a0a9306438b1033938dd0da350cf9f4ec062648c9360382edaa21499b6290430f07b640481cdb3f67c818af79a821eb8f3071ebf7284ab09c47cb982d8502#npm:7.5.0", {\ + "packageLocation": "./.yarn/__virtual__/eslint-plugin-es-x-virtual-ff64d06f93/0/cache/eslint-plugin-es-x-npm-7.5.0-77e84d6e5d-e770e57df7.zip/node_modules/eslint-plugin-es-x/",\ "packageDependencies": [\ - ["eslint-plugin-es-x", "virtual:990a558e2898625aeb04d5e4d99c65569b456f1205bf2f887fd96310a4f502e48e83c1c993f5a46d1cb27cf7bf7d2b513e2850b2c2df904e744e7d8325464673#npm:7.1.0"],\ - ["@eslint-community/eslint-utils", "virtual:e7f048a4398cf12bbd1cde95eff45a3327b9fe42e04c31ed99d0e926830d0b78ff78b511118c2bd3bc6add84782ab97a5b001e972071d6fdbfe85a86c150922a#npm:4.4.0"],\ - ["@eslint-community/regexpp", "npm:4.5.1"],\ + ["eslint-plugin-es-x", "virtual:e72a0a9306438b1033938dd0da350cf9f4ec062648c9360382edaa21499b6290430f07b640481cdb3f67c818af79a821eb8f3071ebf7284ab09c47cb982d8502#npm:7.5.0"],\ + ["@eslint-community/eslint-utils", "virtual:6eec398a4132b5372ea5ffc0bc36d4c81602b7e444a89685d0d958016d8fd53df5c0c97c6a8bf99951469e2c6c06135dd192e9309f6e39b1a4c85e0faabe1f6b#npm:4.4.0"],\ + ["@eslint-community/regexpp", "npm:4.10.0"],\ ["@types/eslint", null],\ - ["eslint", "npm:8.52.0"]\ + ["eslint", "npm:8.56.0"],\ + ["eslint-compat-utils", "virtual:ff64d06f93654b25d9cae47199e62d111efde9ee7d408664ae44397cd2ddf7906aefd54fcc2557f4d5619d92da3af68c7898126469c2a57c381e05b06491f0da#npm:0.1.2"]\ ],\ "packagePeers": [\ "@types/eslint",\ @@ -4881,17 +4916,17 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["eslint-plugin-import", [\ - ["npm:2.29.0", {\ - "packageLocation": "./.yarn/cache/eslint-plugin-import-npm-2.29.0-9cd6da0b0a-19ee541fb9.zip/node_modules/eslint-plugin-import/",\ + ["npm:2.29.1", {\ + "packageLocation": "./.yarn/cache/eslint-plugin-import-npm-2.29.1-b94305f7dc-e65159aef8.zip/node_modules/eslint-plugin-import/",\ "packageDependencies": [\ - ["eslint-plugin-import", "npm:2.29.0"]\ + ["eslint-plugin-import", "npm:2.29.1"]\ ],\ "linkType": "SOFT"\ }],\ - ["virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:2.29.0", {\ - "packageLocation": "./.yarn/__virtual__/eslint-plugin-import-virtual-361651f330/0/cache/eslint-plugin-import-npm-2.29.0-9cd6da0b0a-19ee541fb9.zip/node_modules/eslint-plugin-import/",\ + ["virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:2.29.1", {\ + "packageLocation": "./.yarn/__virtual__/eslint-plugin-import-virtual-caddce7926/0/cache/eslint-plugin-import-npm-2.29.1-b94305f7dc-e65159aef8.zip/node_modules/eslint-plugin-import/",\ "packageDependencies": [\ - ["eslint-plugin-import", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:2.29.0"],\ + ["eslint-plugin-import", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:2.29.1"],\ ["@types/eslint", null],\ ["@types/typescript-eslint__parser", null],\ ["@typescript-eslint/parser", null],\ @@ -4901,9 +4936,9 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ["array.prototype.flatmap", "npm:1.3.2"],\ ["debug", "virtual:2a426afc4b2eef43db12a540d29c2b5476640459bfcd5c24f86bb401cf8cce97e63bd81794d206a5643057e7f662643afd5ce3dfc4d4bfd8e706006c6309c5fa#npm:3.2.7"],\ ["doctrine", "npm:2.1.0"],\ - ["eslint", "npm:8.52.0"],\ + ["eslint", "npm:8.56.0"],\ ["eslint-import-resolver-node", "npm:0.3.9"],\ - ["eslint-module-utils", "virtual:361651f3309db7531b781b9cf23ea5ff31cb68a9d2e5b7a3be36bfa256e5be480a2eee2a0bb0e03ad6f236a91b841e8cfc2d7af10d590e856ac79becc3546855#npm:2.8.0"],\ + ["eslint-module-utils", "virtual:caddce79266c9767570f5c081ff9adaab1d8b040965749cfca6a3f3f4fbd011bf36f7d755f18ef80e67a5402a33b10c9e1ffc34efb6909461044fc5d60cfbcd0#npm:2.8.0"],\ ["hasown", "npm:2.0.0"],\ ["is-core-module", "npm:2.13.1"],\ ["is-glob", "npm:4.0.3"],\ @@ -4912,7 +4947,7 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ["object.groupby", "npm:1.0.1"],\ ["object.values", "npm:1.1.7"],\ ["semver", "npm:6.3.1"],\ - ["tsconfig-paths", "npm:3.14.2"]\ + ["tsconfig-paths", "npm:3.15.0"]\ ],\ "packagePeers": [\ "@types/eslint",\ @@ -4924,24 +4959,26 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["eslint-plugin-n", [\ - ["npm:16.2.0", {\ - "packageLocation": "./.yarn/cache/eslint-plugin-n-npm-16.2.0-b2b8355312-124ba4f418.zip/node_modules/eslint-plugin-n/",\ + ["npm:16.6.2", {\ + "packageLocation": "./.yarn/cache/eslint-plugin-n-npm-16.6.2-77775852d0-3b468da003.zip/node_modules/eslint-plugin-n/",\ "packageDependencies": [\ - ["eslint-plugin-n", "npm:16.2.0"]\ + ["eslint-plugin-n", "npm:16.6.2"]\ ],\ "linkType": "SOFT"\ }],\ - ["virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:16.2.0", {\ - "packageLocation": "./.yarn/__virtual__/eslint-plugin-n-virtual-990a558e28/0/cache/eslint-plugin-n-npm-16.2.0-b2b8355312-124ba4f418.zip/node_modules/eslint-plugin-n/",\ + ["virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:16.6.2", {\ + "packageLocation": "./.yarn/__virtual__/eslint-plugin-n-virtual-e72a0a9306/0/cache/eslint-plugin-n-npm-16.6.2-77775852d0-3b468da003.zip/node_modules/eslint-plugin-n/",\ "packageDependencies": [\ - ["eslint-plugin-n", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:16.2.0"],\ - ["@eslint-community/eslint-utils", "virtual:e7f048a4398cf12bbd1cde95eff45a3327b9fe42e04c31ed99d0e926830d0b78ff78b511118c2bd3bc6add84782ab97a5b001e972071d6fdbfe85a86c150922a#npm:4.4.0"],\ + ["eslint-plugin-n", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:16.6.2"],\ + ["@eslint-community/eslint-utils", "virtual:6eec398a4132b5372ea5ffc0bc36d4c81602b7e444a89685d0d958016d8fd53df5c0c97c6a8bf99951469e2c6c06135dd192e9309f6e39b1a4c85e0faabe1f6b#npm:4.4.0"],\ ["@types/eslint", null],\ ["builtins", "npm:5.0.1"],\ - ["eslint", "npm:8.52.0"],\ - ["eslint-plugin-es-x", "virtual:990a558e2898625aeb04d5e4d99c65569b456f1205bf2f887fd96310a4f502e48e83c1c993f5a46d1cb27cf7bf7d2b513e2850b2c2df904e744e7d8325464673#npm:7.1.0"],\ + ["eslint", "npm:8.56.0"],\ + ["eslint-plugin-es-x", "virtual:e72a0a9306438b1033938dd0da350cf9f4ec062648c9360382edaa21499b6290430f07b640481cdb3f67c818af79a821eb8f3071ebf7284ab09c47cb982d8502#npm:7.5.0"],\ ["get-tsconfig", "npm:4.7.2"],\ + ["globals", "npm:13.24.0"],\ ["ignore", "npm:5.2.4"],\ + ["is-builtin-module", "npm:3.2.1"],\ ["is-core-module", "npm:2.12.1"],\ ["minimatch", "npm:3.1.2"],\ ["resolve", "patch:resolve@npm%3A1.22.3#~builtin::version=1.22.3&hash=07638b"],\ @@ -4967,7 +5004,7 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { "packageDependencies": [\ ["eslint-plugin-node", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:11.1.0"],\ ["@types/eslint", null],\ - ["eslint", "npm:8.52.0"],\ + ["eslint", "npm:8.56.0"],\ ["eslint-plugin-es", "virtual:5cccaf00e87dfff96dbbb5eaf7a3055373358b8114d6a1adfb32f54ed6b40ba06068d3aa1fdd8062899a0cad040f68c17cc6b72bac2cdbe9700f3d6330d112f3#npm:3.0.1"],\ ["eslint-utils", "npm:2.1.0"],\ ["ignore", "npm:5.2.0"],\ @@ -4995,7 +5032,7 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { "packageDependencies": [\ ["eslint-plugin-promise", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:6.1.1"],\ ["@types/eslint", null],\ - ["eslint", "npm:8.52.0"]\ + ["eslint", "npm:8.56.0"]\ ],\ "packagePeers": [\ "@types/eslint",\ @@ -5005,25 +5042,25 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["eslint-plugin-vue", [\ - ["npm:9.18.1", {\ - "packageLocation": "./.yarn/cache/eslint-plugin-vue-npm-9.18.1-69de725f8c-774c1e9163.zip/node_modules/eslint-plugin-vue/",\ + ["npm:9.20.1", {\ + "packageLocation": "./.yarn/cache/eslint-plugin-vue-npm-9.20.1-ec1d3386bd-fe50f4b842.zip/node_modules/eslint-plugin-vue/",\ "packageDependencies": [\ - ["eslint-plugin-vue", "npm:9.18.1"]\ + ["eslint-plugin-vue", "npm:9.20.1"]\ ],\ "linkType": "SOFT"\ }],\ - ["virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:9.18.1", {\ - "packageLocation": "./.yarn/__virtual__/eslint-plugin-vue-virtual-c049280e08/0/cache/eslint-plugin-vue-npm-9.18.1-69de725f8c-774c1e9163.zip/node_modules/eslint-plugin-vue/",\ + ["virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:9.20.1", {\ + "packageLocation": "./.yarn/__virtual__/eslint-plugin-vue-virtual-2b4f27d06a/0/cache/eslint-plugin-vue-npm-9.20.1-ec1d3386bd-fe50f4b842.zip/node_modules/eslint-plugin-vue/",\ "packageDependencies": [\ - ["eslint-plugin-vue", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:9.18.1"],\ - ["@eslint-community/eslint-utils", "virtual:e7f048a4398cf12bbd1cde95eff45a3327b9fe42e04c31ed99d0e926830d0b78ff78b511118c2bd3bc6add84782ab97a5b001e972071d6fdbfe85a86c150922a#npm:4.4.0"],\ + ["eslint-plugin-vue", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:9.20.1"],\ + ["@eslint-community/eslint-utils", "virtual:6eec398a4132b5372ea5ffc0bc36d4c81602b7e444a89685d0d958016d8fd53df5c0c97c6a8bf99951469e2c6c06135dd192e9309f6e39b1a4c85e0faabe1f6b#npm:4.4.0"],\ ["@types/eslint", null],\ - ["eslint", "npm:8.52.0"],\ + ["eslint", "npm:8.56.0"],\ ["natural-compare", "npm:1.4.0"],\ ["nth-check", "npm:2.1.1"],\ ["postcss-selector-parser", "npm:6.0.13"],\ ["semver", "npm:7.5.4"],\ - ["vue-eslint-parser", "virtual:c049280e085a5fbf364ae13382e78afc9030f197042e9af966e5a699f76ded15d4d96a25dcd6b57cec183d656bd2de42ea186e6a928204c48f8702503655cbd4#npm:9.3.1"],\ + ["vue-eslint-parser", "virtual:2b4f27d06a7cfda3abc993d9bc9ad4ae1e096241fb2f2e268ef190ab6fde2cae6795f9fa1e60e98bb9033ee6da1528cb45e9f336be633f59db8da1d4778c6a5c#npm:9.4.0"],\ ["xml-name-validator", "npm:4.0.0"]\ ],\ "packagePeers": [\ @@ -5303,15 +5340,6 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["foreground-child", [\ - ["npm:2.0.0", {\ - "packageLocation": "./.yarn/cache/foreground-child-npm-2.0.0-80c976b61e-f77ec9aff6.zip/node_modules/foreground-child/",\ - "packageDependencies": [\ - ["foreground-child", "npm:2.0.0"],\ - ["cross-spawn", "npm:7.0.3"],\ - ["signal-exit", "npm:3.0.7"]\ - ],\ - "linkType": "HARD"\ - }],\ ["npm:3.1.1", {\ "packageLocation": "./.yarn/cache/foreground-child-npm-3.1.1-77e78ed774-139d270bc8.zip/node_modules/foreground-child/",\ "packageDependencies": [\ @@ -5579,6 +5607,14 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ["type-fest", "npm:0.20.2"]\ ],\ "linkType": "HARD"\ + }],\ + ["npm:13.24.0", {\ + "packageLocation": "./.yarn/cache/globals-npm-13.24.0-cc7713139c-56066ef058.zip/node_modules/globals/",\ + "packageDependencies": [\ + ["globals", "npm:13.24.0"],\ + ["type-fest", "npm:0.20.2"]\ + ],\ + "linkType": "HARD"\ }]\ ]],\ ["globalthis", [\ @@ -5712,10 +5748,10 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["highcharts", [\ - ["npm:11.1.0", {\ - "packageLocation": "./.yarn/cache/highcharts-npm-11.1.0-0d42a04430-f9b8cdc38b.zip/node_modules/highcharts/",\ + ["npm:11.3.0", {\ + "packageLocation": "./.yarn/cache/highcharts-npm-11.3.0-d9aa04531f-6511a004f7.zip/node_modules/highcharts/",\ "packageDependencies": [\ - ["highcharts", "npm:11.1.0"]\ + ["highcharts", "npm:11.3.0"]\ ],\ "linkType": "HARD"\ }]\ @@ -5739,20 +5775,20 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["html-validate", [\ - ["npm:8.7.0", {\ - "packageLocation": "./.yarn/cache/html-validate-npm-8.7.0-7989d0b76e-f1b346bad8.zip/node_modules/html-validate/",\ + ["npm:8.9.1", {\ + "packageLocation": "./.yarn/cache/html-validate-npm-8.9.1-b3199a37b5-31d46f3779.zip/node_modules/html-validate/",\ "packageDependencies": [\ - ["html-validate", "npm:8.7.0"]\ + ["html-validate", "npm:8.9.1"]\ ],\ "linkType": "SOFT"\ }],\ - ["virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:8.7.0", {\ - "packageLocation": "./.yarn/__virtual__/html-validate-virtual-c83421120a/0/cache/html-validate-npm-8.7.0-7989d0b76e-f1b346bad8.zip/node_modules/html-validate/",\ + ["virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:8.9.1", {\ + "packageLocation": "./.yarn/__virtual__/html-validate-virtual-e087f95fa0/0/cache/html-validate-npm-8.9.1-b3199a37b5-31d46f3779.zip/node_modules/html-validate/",\ "packageDependencies": [\ - ["html-validate", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:8.7.0"],\ + ["html-validate", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:8.9.1"],\ ["@babel/code-frame", "npm:7.16.7"],\ ["@html-validate/stylish", "npm:4.1.0"],\ - ["@sidvind/better-ajv-errors", "virtual:c83421120a0d81573c2202cf177f92bb37ea59966baf7759b6fa4e9a2982e6fe336614d87630b5be4c85c00ef51834cf2a040f710a51f15e792d3dd3e2377e0f#npm:2.0.0"],\ + ["@sidvind/better-ajv-errors", "virtual:e087f95fa0950f6010a0851ab4d6d6011e967fc2646f5866c713d305b816f963a51a63b7bfd976893be3d9eb1e67e1b6f955dea5a0bcb511fbafc2a3f5511d6c#npm:2.1.3"],\ ["@types/jest", null],\ ["@types/jest-diff", null],\ ["@types/jest-snapshot", null],\ @@ -5760,7 +5796,7 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ["ajv", "npm:8.11.0"],\ ["deepmerge", "npm:4.3.1"],\ ["glob", "npm:10.2.4"],\ - ["ignore", "npm:5.2.4"],\ + ["ignore", "npm:5.3.0"],\ ["jest", null],\ ["jest-diff", null],\ ["jest-snapshot", null],\ @@ -5791,10 +5827,10 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ "linkType": "SOFT"\ }],\ - ["virtual:ee0243765cbdf501388f259b4f1148af5bb4df5c2fa392d4cf1f1d61d3475a9c15a5729ae4be6dd2e258041e618368d112e36aa7b208b01a51861aaaf92fa944#npm:2.0.2", {\ - "packageLocation": "./.yarn/__virtual__/htmlnano-virtual-cd24a048c0/0/cache/htmlnano-npm-2.0.2-a89803bfeb-41f9e0c0e5.zip/node_modules/htmlnano/",\ + ["virtual:3247e2fdd19c2c795e62631e70f3e3729802df34c67aae7c2f68650c81a102812badea2b63ad3d824f96ab40d31f4ec337238461392c7320e3bfdc126e76a6cc#npm:2.0.2", {\ + "packageLocation": "./.yarn/__virtual__/htmlnano-virtual-3b4ffd4e85/0/cache/htmlnano-npm-2.0.2-a89803bfeb-41f9e0c0e5.zip/node_modules/htmlnano/",\ "packageDependencies": [\ - ["htmlnano", "virtual:ee0243765cbdf501388f259b4f1148af5bb4df5c2fa392d4cf1f1d61d3475a9c15a5729ae4be6dd2e258041e618368d112e36aa7b208b01a51861aaaf92fa944#npm:2.0.2"],\ + ["htmlnano", "virtual:3247e2fdd19c2c795e62631e70f3e3729802df34c67aae7c2f68650c81a102812badea2b63ad3d824f96ab40d31f4ec337238461392c7320e3bfdc126e76a6cc#npm:2.0.2"],\ ["@types/cssnano", null],\ ["@types/postcss", null],\ ["@types/purgecss", null],\ @@ -5938,6 +5974,13 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ["ignore", "npm:5.2.4"]\ ],\ "linkType": "HARD"\ + }],\ + ["npm:5.3.0", {\ + "packageLocation": "./.yarn/cache/ignore-npm-5.3.0-fb0f5fa062-2736da6621.zip/node_modules/ignore/",\ + "packageDependencies": [\ + ["ignore", "npm:5.3.0"]\ + ],\ + "linkType": "HARD"\ }]\ ]],\ ["immutable", [\ @@ -6099,6 +6142,16 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { "linkType": "HARD"\ }]\ ]],\ + ["is-builtin-module", [\ + ["npm:3.2.1", {\ + "packageLocation": "./.yarn/cache/is-builtin-module-npm-3.2.1-2f92a5d353-e8f0ffc19a.zip/node_modules/is-builtin-module/",\ + "packageDependencies": [\ + ["is-builtin-module", "npm:3.2.1"],\ + ["builtin-modules", "npm:3.3.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ ["is-callable", [\ ["npm:1.2.4", {\ "packageLocation": "./.yarn/cache/is-callable-npm-1.2.4-03fc17459c-1a28d57dc4.zip/node_modules/is-callable/",\ @@ -6783,10 +6836,10 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["luxon", [\ - ["npm:3.4.3", {\ - "packageLocation": "./.yarn/cache/luxon-npm-3.4.3-1b54517fa6-3eade81506.zip/node_modules/luxon/",\ + ["npm:3.4.4", {\ + "packageLocation": "./.yarn/cache/luxon-npm-3.4.4-c93f95dde8-36c1f99c47.zip/node_modules/luxon/",\ "packageDependencies": [\ - ["luxon", "npm:3.4.3"]\ + ["luxon", "npm:3.4.4"]\ ],\ "linkType": "HARD"\ }]\ @@ -7001,13 +7054,20 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ["moment", "npm:2.29.4"]\ ],\ "linkType": "HARD"\ + }],\ + ["npm:2.30.1", {\ + "packageLocation": "./.yarn/cache/moment-npm-2.30.1-1c51a5c631-859236bab1.zip/node_modules/moment/",\ + "packageDependencies": [\ + ["moment", "npm:2.30.1"]\ + ],\ + "linkType": "HARD"\ }]\ ]],\ ["moment-timezone", [\ - ["npm:0.5.43", {\ - "packageLocation": "./.yarn/cache/moment-timezone-npm-0.5.43-1304d8602a-8075c897ed.zip/node_modules/moment-timezone/",\ + ["npm:0.5.44", {\ + "packageLocation": "./.yarn/cache/moment-timezone-npm-0.5.44-16af7889fb-2f1de58f14.zip/node_modules/moment-timezone/",\ "packageDependencies": [\ - ["moment-timezone", "npm:0.5.43"],\ + ["moment-timezone", "npm:0.5.44"],\ ["moment", "npm:2.29.4"]\ ],\ "linkType": "HARD"\ @@ -7037,6 +7097,14 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["msgpackr", [\ + ["npm:1.10.1", {\ + "packageLocation": "./.yarn/cache/msgpackr-npm-1.10.1-5c5ff5c553-e422d18b01.zip/node_modules/msgpackr/",\ + "packageDependencies": [\ + ["msgpackr", "npm:1.10.1"],\ + ["msgpackr-extract", "npm:3.0.2"]\ + ],\ + "linkType": "HARD"\ + }],\ ["npm:1.6.0", {\ "packageLocation": "./.yarn/cache/msgpackr-npm-1.6.0-de9303a46e-7f94acbe93.zip/node_modules/msgpackr/",\ "packageDependencies": [\ @@ -7096,37 +7164,38 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["naive-ui", [\ - ["npm:2.35.0", {\ - "packageLocation": "./.yarn/cache/naive-ui-npm-2.35.0-2bb3f5a46d-53239b8cbe.zip/node_modules/naive-ui/",\ + ["npm:2.37.3", {\ + "packageLocation": "./.yarn/cache/naive-ui-npm-2.37.3-fa382750ff-1a0e72cfb9.zip/node_modules/naive-ui/",\ "packageDependencies": [\ - ["naive-ui", "npm:2.35.0"]\ + ["naive-ui", "npm:2.37.3"]\ ],\ "linkType": "SOFT"\ }],\ - ["virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:2.35.0", {\ - "packageLocation": "./.yarn/__virtual__/naive-ui-virtual-d5901c8fe9/0/cache/naive-ui-npm-2.35.0-2bb3f5a46d-53239b8cbe.zip/node_modules/naive-ui/",\ + ["virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:2.37.3", {\ + "packageLocation": "./.yarn/__virtual__/naive-ui-virtual-9083f0b60f/0/cache/naive-ui-npm-2.37.3-fa382750ff-1a0e72cfb9.zip/node_modules/naive-ui/",\ "packageDependencies": [\ - ["naive-ui", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:2.35.0"],\ - ["@css-render/plugin-bem", "virtual:d5901c8fe9a0c32ef9bd30914b8624afdd53ad520846726499200f014090a72c0a1d5e3737654e39af21acf7bf6f0993bedc3c908b3b8804daa47faed23d0085#npm:0.15.12"],\ - ["@css-render/vue3-ssr", "virtual:d5901c8fe9a0c32ef9bd30914b8624afdd53ad520846726499200f014090a72c0a1d5e3737654e39af21acf7bf6f0993bedc3c908b3b8804daa47faed23d0085#npm:0.15.12"],\ + ["naive-ui", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:2.37.3"],\ + ["@css-render/plugin-bem", "virtual:9083f0b60f7ff3c9457189a27c2996ceed17cab3520ae1c32ab5e5244b992c3c8baaf999ad3c2b19ef13e1964e3197201ef68b1b3153ac72686293207b8892cf#npm:0.15.12"],\ + ["@css-render/vue3-ssr", "virtual:9083f0b60f7ff3c9457189a27c2996ceed17cab3520ae1c32ab5e5244b992c3c8baaf999ad3c2b19ef13e1964e3197201ef68b1b3153ac72686293207b8892cf#npm:0.15.12"],\ ["@types/katex", "npm:0.16.5"],\ ["@types/lodash", "npm:4.14.200"],\ ["@types/lodash-es", "npm:4.17.10"],\ ["@types/vue", null],\ ["async-validator", "npm:4.2.5"],\ ["css-render", "npm:0.15.12"],\ + ["csstype", "npm:3.1.3"],\ ["date-fns", "npm:2.30.0"],\ - ["date-fns-tz", "virtual:d5901c8fe9a0c32ef9bd30914b8624afdd53ad520846726499200f014090a72c0a1d5e3737654e39af21acf7bf6f0993bedc3c908b3b8804daa47faed23d0085#npm:2.0.0"],\ + ["date-fns-tz", "virtual:9083f0b60f7ff3c9457189a27c2996ceed17cab3520ae1c32ab5e5244b992c3c8baaf999ad3c2b19ef13e1964e3197201ef68b1b3153ac72686293207b8892cf#npm:2.0.0"],\ ["evtd", "npm:0.2.4"],\ ["highlight.js", "npm:11.9.0"],\ ["lodash", "npm:4.17.21"],\ ["lodash-es", "npm:4.17.21"],\ - ["seemly", "npm:0.3.6"],\ + ["seemly", "npm:0.3.8"],\ ["treemate", "npm:0.3.11"],\ - ["vdirs", "virtual:d5901c8fe9a0c32ef9bd30914b8624afdd53ad520846726499200f014090a72c0a1d5e3737654e39af21acf7bf6f0993bedc3c908b3b8804daa47faed23d0085#npm:0.1.8"],\ - ["vooks", "virtual:d5901c8fe9a0c32ef9bd30914b8624afdd53ad520846726499200f014090a72c0a1d5e3737654e39af21acf7bf6f0993bedc3c908b3b8804daa47faed23d0085#npm:0.2.12"],\ - ["vue", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:3.3.7"],\ - ["vueuc", "virtual:d5901c8fe9a0c32ef9bd30914b8624afdd53ad520846726499200f014090a72c0a1d5e3737654e39af21acf7bf6f0993bedc3c908b3b8804daa47faed23d0085#npm:0.4.51"]\ + ["vdirs", "virtual:9083f0b60f7ff3c9457189a27c2996ceed17cab3520ae1c32ab5e5244b992c3c8baaf999ad3c2b19ef13e1964e3197201ef68b1b3153ac72686293207b8892cf#npm:0.1.8"],\ + ["vooks", "virtual:9083f0b60f7ff3c9457189a27c2996ceed17cab3520ae1c32ab5e5244b992c3c8baaf999ad3c2b19ef13e1964e3197201ef68b1b3153ac72686293207b8892cf#npm:0.2.12"],\ + ["vue", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:3.4.13"],\ + ["vueuc", "virtual:9083f0b60f7ff3c9457189a27c2996ceed17cab3520ae1c32ab5e5244b992c3c8baaf999ad3c2b19ef13e1964e3197201ef68b1b3153ac72686293207b8892cf#npm:0.4.58"]\ ],\ "packagePeers": [\ "@types/vue",\ @@ -7136,10 +7205,10 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["nanoid", [\ - ["npm:3.3.6", {\ - "packageLocation": "./.yarn/cache/nanoid-npm-3.3.6-e6d6ae7e71-7d0eda6570.zip/node_modules/nanoid/",\ + ["npm:3.3.7", {\ + "packageLocation": "./.yarn/cache/nanoid-npm-3.3.7-98824ba130-d36c427e53.zip/node_modules/nanoid/",\ "packageDependencies": [\ - ["nanoid", "npm:3.3.6"]\ + ["nanoid", "npm:3.3.7"]\ ],\ "linkType": "HARD"\ }]\ @@ -7473,28 +7542,28 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["parcel", [\ - ["npm:2.10.0", {\ - "packageLocation": "./.yarn/cache/parcel-npm-2.10.0-8e794fc289-fe25ddcf2d.zip/node_modules/parcel/",\ + ["npm:2.11.0", {\ + "packageLocation": "./.yarn/cache/parcel-npm-2.11.0-a1f816e3ce-1990c72504.zip/node_modules/parcel/",\ "packageDependencies": [\ - ["parcel", "npm:2.10.0"]\ + ["parcel", "npm:2.11.0"]\ ],\ "linkType": "SOFT"\ }],\ - ["virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:2.10.0", {\ - "packageLocation": "./.yarn/__virtual__/parcel-virtual-71592776e8/0/cache/parcel-npm-2.10.0-8e794fc289-fe25ddcf2d.zip/node_modules/parcel/",\ - "packageDependencies": [\ - ["parcel", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:2.10.0"],\ - ["@parcel/config-default", "virtual:71592776e81a3a98123fea990d2adcb9a2eb4cc84ca35ac4be3a6f331fe8d1f764a124c4f9a2dad3afd35076e01667fb0ef9ccd5629fbe405b31f0d1b14a14fd#npm:2.10.0"],\ - ["@parcel/core", "npm:2.10.0"],\ - ["@parcel/diagnostic", "npm:2.10.0"],\ - ["@parcel/events", "npm:2.10.0"],\ - ["@parcel/fs", "virtual:59eaeeba7a5d21408bb7b40531b36a88648baa29ed841afea77b484ce4124f400b3aed2f6c7b6598bebbcce34fe625391a4c262c0e17b5a4f9e1ebbf693fa69b#npm:2.10.0"],\ - ["@parcel/logger", "npm:2.10.0"],\ - ["@parcel/package-manager", "virtual:59eaeeba7a5d21408bb7b40531b36a88648baa29ed841afea77b484ce4124f400b3aed2f6c7b6598bebbcce34fe625391a4c262c0e17b5a4f9e1ebbf693fa69b#npm:2.10.0"],\ - ["@parcel/reporter-cli", "npm:2.10.0"],\ - ["@parcel/reporter-dev-server", "npm:2.10.0"],\ - ["@parcel/reporter-tracer", "npm:2.10.0"],\ - ["@parcel/utils", "npm:2.10.0"],\ + ["virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:2.11.0", {\ + "packageLocation": "./.yarn/__virtual__/parcel-virtual-c9f0262485/0/cache/parcel-npm-2.11.0-a1f816e3ce-1990c72504.zip/node_modules/parcel/",\ + "packageDependencies": [\ + ["parcel", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:2.11.0"],\ + ["@parcel/config-default", "virtual:c9f026248511188f31a66a49228e3f4455ee6fa1ba906611f58030dac34821f723d23cba2ebe1e8ab700df88c35896372c56bbaaa523f30f901f0d6936cdb754#npm:2.11.0"],\ + ["@parcel/core", "npm:2.11.0"],\ + ["@parcel/diagnostic", "npm:2.11.0"],\ + ["@parcel/events", "npm:2.11.0"],\ + ["@parcel/fs", "virtual:6342e70419d23ded2f099abb73d52673ebe4aa5f7610a94b4cb189fdc9467b1f593741b0e4115e824ba71d89c6ceebe1edf27412aa7a6c4e52178845d92cdae2#npm:2.11.0"],\ + ["@parcel/logger", "npm:2.11.0"],\ + ["@parcel/package-manager", "virtual:6342e70419d23ded2f099abb73d52673ebe4aa5f7610a94b4cb189fdc9467b1f593741b0e4115e824ba71d89c6ceebe1edf27412aa7a6c4e52178845d92cdae2#npm:2.11.0"],\ + ["@parcel/reporter-cli", "npm:2.11.0"],\ + ["@parcel/reporter-dev-server", "npm:2.11.0"],\ + ["@parcel/reporter-tracer", "npm:2.11.0"],\ + ["@parcel/utils", "npm:2.11.0"],\ ["@types/parcel__core", null],\ ["chalk", "npm:4.1.2"],\ ["commander", "npm:7.2.0"],\ @@ -7621,7 +7690,7 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ["@vue/composition-api", null],\ ["@vue/devtools-api", "npm:6.5.0"],\ ["typescript", null],\ - ["vue", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:3.3.7"],\ + ["vue", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:3.4.13"],\ ["vue-demi", "virtual:cf6f7439ee76dfd2e7f8f2565ae847d76901434fc49c65702190cdf3d1c61e61c701a5c45b514c4bdeacb8f4bcac9c8a98bd4db3d0bc8e403d9e8db2cf14372a#npm:0.14.5"]\ ],\ "packagePeers": [\ @@ -7652,7 +7721,7 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ["@types/vue__composition-api", null],\ ["@vue/composition-api", null],\ ["pinia", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:2.1.7"],\ - ["vue", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:3.3.7"],\ + ["vue", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:3.4.13"],\ ["vue-demi", "virtual:f56fcf19bbebc2ada1b28955da8cc216b1e9a569a1a7337d2d1926c1ebd1bc7a5bd91aedae1d05c15c8562f33caf7c59bd3020a667340f6bdc6a7b13fc2ba847#npm:0.12.5"]\ ],\ "packagePeers": [\ @@ -7667,21 +7736,21 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["postcss", [\ - ["npm:8.4.27", {\ - "packageLocation": "./.yarn/cache/postcss-npm-8.4.27-2a9f5f8f40-1cdd0c2988.zip/node_modules/postcss/",\ + ["npm:8.4.32", {\ + "packageLocation": "./.yarn/cache/postcss-npm-8.4.32-2004ba88b8-220d9d0bf5.zip/node_modules/postcss/",\ "packageDependencies": [\ - ["postcss", "npm:8.4.27"],\ - ["nanoid", "npm:3.3.6"],\ + ["postcss", "npm:8.4.32"],\ + ["nanoid", "npm:3.3.7"],\ ["picocolors", "npm:1.0.0"],\ ["source-map-js", "npm:1.0.2"]\ ],\ "linkType": "HARD"\ }],\ - ["npm:8.4.31", {\ - "packageLocation": "./.yarn/cache/postcss-npm-8.4.31-385051a82b-1d8611341b.zip/node_modules/postcss/",\ + ["npm:8.4.33", {\ + "packageLocation": "./.yarn/cache/postcss-npm-8.4.33-6ba8157009-6f98b2af4b.zip/node_modules/postcss/",\ "packageDependencies": [\ - ["postcss", "npm:8.4.31"],\ - ["nanoid", "npm:3.3.6"],\ + ["postcss", "npm:8.4.33"],\ + ["nanoid", "npm:3.3.7"],\ ["picocolors", "npm:1.0.0"],\ ["source-map-js", "npm:1.0.2"]\ ],\ @@ -8171,10 +8240,10 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["rollup", [\ - ["npm:3.28.0", {\ - "packageLocation": "./.yarn/cache/rollup-npm-3.28.0-4ab1b4022e-6ded4a0d3c.zip/node_modules/rollup/",\ + ["npm:3.29.4", {\ + "packageLocation": "./.yarn/cache/rollup-npm-3.29.4-5e5e5f2087-8bb20a39c8.zip/node_modules/rollup/",\ "packageDependencies": [\ - ["rollup", "npm:3.28.0"],\ + ["rollup", "npm:3.29.4"],\ ["fsevents", "patch:fsevents@npm%3A2.3.2#~builtin::version=2.3.2&hash=18f3a7"]\ ],\ "linkType": "HARD"\ @@ -8185,40 +8254,40 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { "packageLocation": "./",\ "packageDependencies": [\ ["root-workspace-0b6124", "workspace:."],\ - ["@fullcalendar/bootstrap5", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:6.1.9"],\ - ["@fullcalendar/core", "npm:6.1.9"],\ - ["@fullcalendar/daygrid", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:6.1.9"],\ - ["@fullcalendar/icalendar", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:6.1.9"],\ - ["@fullcalendar/interaction", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:6.1.9"],\ - ["@fullcalendar/list", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:6.1.9"],\ - ["@fullcalendar/luxon3", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:6.1.9"],\ - ["@fullcalendar/timegrid", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:6.1.9"],\ - ["@fullcalendar/vue3", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:6.1.9"],\ - ["@parcel/optimizer-data-url", "npm:2.10.0"],\ - ["@parcel/transformer-inline-string", "npm:2.10.0"],\ - ["@parcel/transformer-sass", "npm:2.10.0"],\ + ["@fullcalendar/bootstrap5", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:6.1.10"],\ + ["@fullcalendar/core", "npm:6.1.10"],\ + ["@fullcalendar/daygrid", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:6.1.10"],\ + ["@fullcalendar/icalendar", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:6.1.10"],\ + ["@fullcalendar/interaction", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:6.1.10"],\ + ["@fullcalendar/list", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:6.1.10"],\ + ["@fullcalendar/luxon3", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:6.1.10"],\ + ["@fullcalendar/timegrid", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:6.1.10"],\ + ["@fullcalendar/vue3", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:6.1.10"],\ + ["@parcel/optimizer-data-url", "npm:2.11.0"],\ + ["@parcel/transformer-inline-string", "npm:2.11.0"],\ + ["@parcel/transformer-sass", "npm:2.11.0"],\ ["@popperjs/core", "npm:2.11.8"],\ - ["@rollup/pluginutils", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:5.0.5"],\ + ["@rollup/pluginutils", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:5.1.0"],\ ["@twuni/emojify", "npm:1.0.2"],\ - ["@vitejs/plugin-vue", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:4.4.0"],\ + ["@vitejs/plugin-vue", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:4.6.2"],\ ["bootstrap", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:5.3.2"],\ - ["bootstrap-icons", "npm:1.11.1"],\ + ["bootstrap-icons", "npm:1.11.3"],\ ["browser-fs-access", "npm:0.35.0"],\ ["browserlist", "npm:1.0.1"],\ - ["c8", "npm:8.0.1"],\ - ["caniuse-lite", "npm:1.0.30001538"],\ + ["c8", "npm:9.1.0"],\ + ["caniuse-lite", "npm:1.0.30001576"],\ ["d3", "npm:7.8.5"],\ - ["eslint", "npm:8.52.0"],\ + ["eslint", "npm:8.56.0"],\ ["eslint-config-standard", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:17.1.0"],\ ["eslint-plugin-cypress", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:2.15.1"],\ - ["eslint-plugin-import", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:2.29.0"],\ - ["eslint-plugin-n", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:16.2.0"],\ + ["eslint-plugin-import", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:2.29.1"],\ + ["eslint-plugin-n", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:16.6.2"],\ ["eslint-plugin-node", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:11.1.0"],\ ["eslint-plugin-promise", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:6.1.1"],\ - ["eslint-plugin-vue", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:9.18.1"],\ + ["eslint-plugin-vue", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:9.20.1"],\ ["file-saver", "npm:2.0.5"],\ - ["highcharts", "npm:11.1.0"],\ - ["html-validate", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:8.7.0"],\ + ["highcharts", "npm:11.3.0"],\ + ["html-validate", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:8.9.1"],\ ["ical.js", "npm:1.5.0"],\ ["jquery", "npm:3.7.1"],\ ["jquery-migrate", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:3.4.1"],\ @@ -8226,27 +8295,27 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ["list.js", "npm:2.3.1"],\ ["lodash", "npm:4.17.21"],\ ["lodash-es", "npm:4.17.21"],\ - ["luxon", "npm:3.4.3"],\ - ["moment", "npm:2.29.4"],\ - ["moment-timezone", "npm:0.5.43"],\ + ["luxon", "npm:3.4.4"],\ + ["moment", "npm:2.30.1"],\ + ["moment-timezone", "npm:0.5.44"],\ ["ms", "npm:2.1.3"],\ ["murmurhash-js", "npm:1.0.0"],\ - ["naive-ui", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:2.35.0"],\ - ["parcel", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:2.10.0"],\ + ["naive-ui", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:2.37.3"],\ + ["parcel", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:2.11.0"],\ ["pinia", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:2.1.7"],\ ["pinia-plugin-persist", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:1.0.0"],\ ["pug", "npm:3.0.2"],\ - ["sass", "npm:1.69.4"],\ + ["sass", "npm:1.69.7"],\ ["seedrandom", "npm:3.0.5"],\ ["select2", "npm:4.1.0-rc.0"],\ ["select2-bootstrap-5-theme", "npm:1.3.0"],\ ["send", "npm:0.18.0"],\ ["shepherd.js", "npm:11.2.0"],\ ["slugify", "npm:1.6.6"],\ - ["sortablejs", "npm:1.15.0"],\ + ["sortablejs", "npm:1.15.2"],\ ["vanillajs-datepicker", "npm:1.3.4"],\ - ["vite", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:4.5.0"],\ - ["vue", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:3.3.7"],\ + ["vite", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:4.5.1"],\ + ["vue", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:3.4.13"],\ ["vue-router", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:4.2.5"],\ ["zxcvbn", "npm:4.4.2"]\ ],\ @@ -8333,10 +8402,10 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ "linkType": "HARD"\ }],\ - ["npm:1.69.4", {\ - "packageLocation": "./.yarn/cache/sass-npm-1.69.4-bea57e4b30-ed5558445b.zip/node_modules/sass/",\ + ["npm:1.69.7", {\ + "packageLocation": "./.yarn/cache/sass-npm-1.69.7-ac434a094c-c67cd32b69.zip/node_modules/sass/",\ "packageDependencies": [\ - ["sass", "npm:1.69.4"],\ + ["sass", "npm:1.69.7"],\ ["chokidar", "npm:3.5.3"],\ ["immutable", "npm:4.0.0"],\ ["source-map-js", "npm:1.0.2"]\ @@ -8360,6 +8429,13 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ["seemly", "npm:0.3.6"]\ ],\ "linkType": "HARD"\ + }],\ + ["npm:0.3.8", {\ + "packageLocation": "./.yarn/cache/seemly-npm-0.3.8-4940336497-98171fd4d9.zip/node_modules/seemly/",\ + "packageDependencies": [\ + ["seemly", "npm:0.3.8"]\ + ],\ + "linkType": "HARD"\ }]\ ]],\ ["select2", [\ @@ -8603,10 +8679,10 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["sortablejs", [\ - ["npm:1.15.0", {\ - "packageLocation": "./.yarn/cache/sortablejs-npm-1.15.0-f3a393abcc-bb82223a66.zip/node_modules/sortablejs/",\ + ["npm:1.15.2", {\ + "packageLocation": "./.yarn/cache/sortablejs-npm-1.15.2-73347ae85a-36b20b144f.zip/node_modules/sortablejs/",\ "packageDependencies": [\ - ["sortablejs", "npm:1.15.0"]\ + ["sortablejs", "npm:1.15.2"]\ ],\ "linkType": "HARD"\ }]\ @@ -8923,10 +8999,10 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["tsconfig-paths", [\ - ["npm:3.14.2", {\ - "packageLocation": "./.yarn/cache/tsconfig-paths-npm-3.14.2-90ce75420d-a6162eaa1a.zip/node_modules/tsconfig-paths/",\ + ["npm:3.15.0", {\ + "packageLocation": "./.yarn/cache/tsconfig-paths-npm-3.15.0-ff68930e0e-59f35407a3.zip/node_modules/tsconfig-paths/",\ "packageDependencies": [\ - ["tsconfig-paths", "npm:3.14.2"],\ + ["tsconfig-paths", "npm:3.15.0"],\ ["@types/json5", "npm:0.0.29"],\ ["json5", "npm:1.0.2"],\ ["minimist", "npm:1.2.6"],\ @@ -9104,13 +9180,13 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ "linkType": "SOFT"\ }],\ - ["virtual:d5901c8fe9a0c32ef9bd30914b8624afdd53ad520846726499200f014090a72c0a1d5e3737654e39af21acf7bf6f0993bedc3c908b3b8804daa47faed23d0085#npm:0.1.8", {\ - "packageLocation": "./.yarn/__virtual__/vdirs-virtual-35aac8a6c6/0/cache/vdirs-npm-0.1.8-59a32a98d6-a7be8ccad3.zip/node_modules/vdirs/",\ + ["virtual:9083f0b60f7ff3c9457189a27c2996ceed17cab3520ae1c32ab5e5244b992c3c8baaf999ad3c2b19ef13e1964e3197201ef68b1b3153ac72686293207b8892cf#npm:0.1.8", {\ + "packageLocation": "./.yarn/__virtual__/vdirs-virtual-f6d0172130/0/cache/vdirs-npm-0.1.8-59a32a98d6-a7be8ccad3.zip/node_modules/vdirs/",\ "packageDependencies": [\ - ["vdirs", "virtual:d5901c8fe9a0c32ef9bd30914b8624afdd53ad520846726499200f014090a72c0a1d5e3737654e39af21acf7bf6f0993bedc3c908b3b8804daa47faed23d0085#npm:0.1.8"],\ + ["vdirs", "virtual:9083f0b60f7ff3c9457189a27c2996ceed17cab3520ae1c32ab5e5244b992c3c8baaf999ad3c2b19ef13e1964e3197201ef68b1b3153ac72686293207b8892cf#npm:0.1.8"],\ ["@types/vue", null],\ ["evtd", "npm:0.2.3"],\ - ["vue", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:3.3.7"]\ + ["vue", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:3.4.13"]\ ],\ "packagePeers": [\ "@types/vue",\ @@ -9120,17 +9196,17 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["vite", [\ - ["npm:4.5.0", {\ - "packageLocation": "./.yarn/cache/vite-npm-4.5.0-6fb40946d7-06f1a4c858.zip/node_modules/vite/",\ + ["npm:4.5.1", {\ + "packageLocation": "./.yarn/cache/vite-npm-4.5.1-567bbcf9ff-72b3584b3d.zip/node_modules/vite/",\ "packageDependencies": [\ - ["vite", "npm:4.5.0"]\ + ["vite", "npm:4.5.1"]\ ],\ "linkType": "SOFT"\ }],\ - ["virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:4.5.0", {\ - "packageLocation": "./.yarn/__virtual__/vite-virtual-48c4f851a8/0/cache/vite-npm-4.5.0-6fb40946d7-06f1a4c858.zip/node_modules/vite/",\ + ["virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:4.5.1", {\ + "packageLocation": "./.yarn/__virtual__/vite-virtual-a00c7b893c/0/cache/vite-npm-4.5.1-567bbcf9ff-72b3584b3d.zip/node_modules/vite/",\ "packageDependencies": [\ - ["vite", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:4.5.0"],\ + ["vite", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:4.5.1"],\ ["@types/less", null],\ ["@types/lightningcss", null],\ ["@types/node", null],\ @@ -9142,9 +9218,9 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ["fsevents", "patch:fsevents@npm%3A2.3.2#~builtin::version=2.3.2&hash=18f3a7"],\ ["less", null],\ ["lightningcss", null],\ - ["postcss", "npm:8.4.27"],\ - ["rollup", "npm:3.28.0"],\ - ["sass", "npm:1.69.4"],\ + ["postcss", "npm:8.4.33"],\ + ["rollup", "npm:3.29.4"],\ + ["sass", "npm:1.69.7"],\ ["stylus", null],\ ["sugarss", null],\ ["terser", null]\ @@ -9184,13 +9260,13 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ "linkType": "SOFT"\ }],\ - ["virtual:d5901c8fe9a0c32ef9bd30914b8624afdd53ad520846726499200f014090a72c0a1d5e3737654e39af21acf7bf6f0993bedc3c908b3b8804daa47faed23d0085#npm:0.2.12", {\ - "packageLocation": "./.yarn/__virtual__/vooks-virtual-f099143e8a/0/cache/vooks-npm-0.2.12-0d1a2d856b-e6841ec5b6.zip/node_modules/vooks/",\ + ["virtual:9083f0b60f7ff3c9457189a27c2996ceed17cab3520ae1c32ab5e5244b992c3c8baaf999ad3c2b19ef13e1964e3197201ef68b1b3153ac72686293207b8892cf#npm:0.2.12", {\ + "packageLocation": "./.yarn/__virtual__/vooks-virtual-01a66269d9/0/cache/vooks-npm-0.2.12-0d1a2d856b-e6841ec5b6.zip/node_modules/vooks/",\ "packageDependencies": [\ - ["vooks", "virtual:d5901c8fe9a0c32ef9bd30914b8624afdd53ad520846726499200f014090a72c0a1d5e3737654e39af21acf7bf6f0993bedc3c908b3b8804daa47faed23d0085#npm:0.2.12"],\ + ["vooks", "virtual:9083f0b60f7ff3c9457189a27c2996ceed17cab3520ae1c32ab5e5244b992c3c8baaf999ad3c2b19ef13e1964e3197201ef68b1b3153ac72686293207b8892cf#npm:0.2.12"],\ ["@types/vue", null],\ ["evtd", "npm:0.2.3"],\ - ["vue", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:3.3.7"]\ + ["vue", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:3.4.13"]\ ],\ "packagePeers": [\ "@types/vue",\ @@ -9200,23 +9276,23 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["vue", [\ - ["npm:3.3.7", {\ - "packageLocation": "./.yarn/cache/vue-npm-3.3.7-6f764474d4-463599d2a5.zip/node_modules/vue/",\ + ["npm:3.4.13", {\ + "packageLocation": "./.yarn/cache/vue-npm-3.4.13-668436a4a7-c9f8edf5fc.zip/node_modules/vue/",\ "packageDependencies": [\ - ["vue", "npm:3.3.7"]\ + ["vue", "npm:3.4.13"]\ ],\ "linkType": "SOFT"\ }],\ - ["virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:3.3.7", {\ - "packageLocation": "./.yarn/__virtual__/vue-virtual-3abdc07485/0/cache/vue-npm-3.3.7-6f764474d4-463599d2a5.zip/node_modules/vue/",\ + ["virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:3.4.13", {\ + "packageLocation": "./.yarn/__virtual__/vue-virtual-70f0bf839f/0/cache/vue-npm-3.4.13-668436a4a7-c9f8edf5fc.zip/node_modules/vue/",\ "packageDependencies": [\ - ["vue", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:3.3.7"],\ + ["vue", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:3.4.13"],\ ["@types/typescript", null],\ - ["@vue/compiler-dom", "npm:3.3.7"],\ - ["@vue/compiler-sfc", "npm:3.3.7"],\ - ["@vue/runtime-dom", "npm:3.3.7"],\ - ["@vue/server-renderer", "virtual:3abdc07485f088dc7c94fb6016205a603cbf92506f0de3d8b0b3c64fb975ecc9ffddafd33901d1bbe205fa301d19a0b5580e4aae44cfc80bff10566fc4d7e20b#npm:3.3.7"],\ - ["@vue/shared", "npm:3.3.7"],\ + ["@vue/compiler-dom", "npm:3.4.13"],\ + ["@vue/compiler-sfc", "npm:3.4.13"],\ + ["@vue/runtime-dom", "npm:3.4.13"],\ + ["@vue/server-renderer", "virtual:70f0bf839f9a0f4ee48fb830cbf74c97964359640d4a604894b35bec6c5aed7fce5a0f06c521ced0640b9b3ca30c78af522cffa59c4405403ad1ab0de99f65b1#npm:3.4.13"],\ + ["@vue/shared", "npm:3.4.13"],\ ["typescript", null]\ ],\ "packagePeers": [\ @@ -9248,7 +9324,7 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ["@types/vue", null],\ ["@types/vue__composition-api", null],\ ["@vue/composition-api", null],\ - ["vue", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:3.3.7"]\ + ["vue", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:3.4.13"]\ ],\ "packagePeers": [\ "@types/vue",\ @@ -9265,7 +9341,7 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ["@types/vue", null],\ ["@types/vue__composition-api", null],\ ["@vue/composition-api", null],\ - ["vue", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:3.3.7"]\ + ["vue", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:3.4.13"]\ ],\ "packagePeers": [\ "@types/vue",\ @@ -9277,20 +9353,20 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["vue-eslint-parser", [\ - ["npm:9.3.1", {\ - "packageLocation": "./.yarn/cache/vue-eslint-parser-npm-9.3.1-a0feb51670-6d1476b45f.zip/node_modules/vue-eslint-parser/",\ + ["npm:9.4.0", {\ + "packageLocation": "./.yarn/cache/vue-eslint-parser-npm-9.4.0-9f9ee7131a-b53d05d3ba.zip/node_modules/vue-eslint-parser/",\ "packageDependencies": [\ - ["vue-eslint-parser", "npm:9.3.1"]\ + ["vue-eslint-parser", "npm:9.4.0"]\ ],\ "linkType": "SOFT"\ }],\ - ["virtual:c049280e085a5fbf364ae13382e78afc9030f197042e9af966e5a699f76ded15d4d96a25dcd6b57cec183d656bd2de42ea186e6a928204c48f8702503655cbd4#npm:9.3.1", {\ - "packageLocation": "./.yarn/__virtual__/vue-eslint-parser-virtual-ac996f3737/0/cache/vue-eslint-parser-npm-9.3.1-a0feb51670-6d1476b45f.zip/node_modules/vue-eslint-parser/",\ + ["virtual:2b4f27d06a7cfda3abc993d9bc9ad4ae1e096241fb2f2e268ef190ab6fde2cae6795f9fa1e60e98bb9033ee6da1528cb45e9f336be633f59db8da1d4778c6a5c#npm:9.4.0", {\ + "packageLocation": "./.yarn/__virtual__/vue-eslint-parser-virtual-6df112c4ac/0/cache/vue-eslint-parser-npm-9.4.0-9f9ee7131a-b53d05d3ba.zip/node_modules/vue-eslint-parser/",\ "packageDependencies": [\ - ["vue-eslint-parser", "virtual:c049280e085a5fbf364ae13382e78afc9030f197042e9af966e5a699f76ded15d4d96a25dcd6b57cec183d656bd2de42ea186e6a928204c48f8702503655cbd4#npm:9.3.1"],\ + ["vue-eslint-parser", "virtual:2b4f27d06a7cfda3abc993d9bc9ad4ae1e096241fb2f2e268ef190ab6fde2cae6795f9fa1e60e98bb9033ee6da1528cb45e9f336be633f59db8da1d4778c6a5c#npm:9.4.0"],\ ["@types/eslint", null],\ ["debug", "virtual:b86a9fb34323a98c6519528ed55faa0d9b44ca8879307c0b29aa384bde47ff59a7d0c9051b31246f14521dfb71ba3c5d6d0b35c29fffc17bf875aa6ad977d9e8#npm:4.3.4"],\ - ["eslint", "npm:8.52.0"],\ + ["eslint", "npm:8.56.0"],\ ["eslint-scope", "npm:7.1.1"],\ ["eslint-visitor-keys", "npm:3.3.0"],\ ["espree", "npm:9.3.2"],\ @@ -9319,7 +9395,7 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ["vue-router", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:4.2.5"],\ ["@types/vue", null],\ ["@vue/devtools-api", "npm:6.5.0"],\ - ["vue", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:3.3.7"]\ + ["vue", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:3.4.13"]\ ],\ "packagePeers": [\ "@types/vue",\ @@ -9329,26 +9405,26 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["vueuc", [\ - ["npm:0.4.51", {\ - "packageLocation": "./.yarn/cache/vueuc-npm-0.4.51-794074113f-7969659fac.zip/node_modules/vueuc/",\ + ["npm:0.4.58", {\ + "packageLocation": "./.yarn/cache/vueuc-npm-0.4.58-be5584770c-fb0b9a69be.zip/node_modules/vueuc/",\ "packageDependencies": [\ - ["vueuc", "npm:0.4.51"]\ + ["vueuc", "npm:0.4.58"]\ ],\ "linkType": "SOFT"\ }],\ - ["virtual:d5901c8fe9a0c32ef9bd30914b8624afdd53ad520846726499200f014090a72c0a1d5e3737654e39af21acf7bf6f0993bedc3c908b3b8804daa47faed23d0085#npm:0.4.51", {\ - "packageLocation": "./.yarn/__virtual__/vueuc-virtual-07229bbf54/0/cache/vueuc-npm-0.4.51-794074113f-7969659fac.zip/node_modules/vueuc/",\ + ["virtual:9083f0b60f7ff3c9457189a27c2996ceed17cab3520ae1c32ab5e5244b992c3c8baaf999ad3c2b19ef13e1964e3197201ef68b1b3153ac72686293207b8892cf#npm:0.4.58", {\ + "packageLocation": "./.yarn/__virtual__/vueuc-virtual-535ce3a5bf/0/cache/vueuc-npm-0.4.58-be5584770c-fb0b9a69be.zip/node_modules/vueuc/",\ "packageDependencies": [\ - ["vueuc", "virtual:d5901c8fe9a0c32ef9bd30914b8624afdd53ad520846726499200f014090a72c0a1d5e3737654e39af21acf7bf6f0993bedc3c908b3b8804daa47faed23d0085#npm:0.4.51"],\ - ["@css-render/vue3-ssr", "virtual:07229bbf54bc488d21e48f65df3fcd2cdabd1e401dfffccce7403d04695be90e478a0d508694f896481602b0f9db804b9f384dfa051fe08e896fd18fd1fe0b6b#npm:0.15.10"],\ + ["vueuc", "virtual:9083f0b60f7ff3c9457189a27c2996ceed17cab3520ae1c32ab5e5244b992c3c8baaf999ad3c2b19ef13e1964e3197201ef68b1b3153ac72686293207b8892cf#npm:0.4.58"],\ + ["@css-render/vue3-ssr", "virtual:535ce3a5bf8429bbdd476b0f4bedb68cb91a1d57eac35720679464b7eeafc062414751fda54be317bf7e7886eec3b33992730a480671dc4d6974fd45406b1082#npm:0.15.10"],\ ["@juggle/resize-observer", "npm:3.3.1"],\ ["@types/vue", null],\ ["css-render", "npm:0.15.10"],\ ["evtd", "npm:0.2.4"],\ ["seemly", "npm:0.3.6"],\ - ["vdirs", "virtual:d5901c8fe9a0c32ef9bd30914b8624afdd53ad520846726499200f014090a72c0a1d5e3737654e39af21acf7bf6f0993bedc3c908b3b8804daa47faed23d0085#npm:0.1.8"],\ - ["vooks", "virtual:d5901c8fe9a0c32ef9bd30914b8624afdd53ad520846726499200f014090a72c0a1d5e3737654e39af21acf7bf6f0993bedc3c908b3b8804daa47faed23d0085#npm:0.2.12"],\ - ["vue", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:3.3.7"]\ + ["vdirs", "virtual:9083f0b60f7ff3c9457189a27c2996ceed17cab3520ae1c32ab5e5244b992c3c8baaf999ad3c2b19ef13e1964e3197201ef68b1b3153ac72686293207b8892cf#npm:0.1.8"],\ + ["vooks", "virtual:9083f0b60f7ff3c9457189a27c2996ceed17cab3520ae1c32ab5e5244b992c3c8baaf999ad3c2b19ef13e1964e3197201ef68b1b3153ac72686293207b8892cf#npm:0.2.12"],\ + ["vue", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:3.4.13"]\ ],\ "packagePeers": [\ "@types/vue",\ diff --git a/.yarn/cache/@babel-parser-npm-7.23.0-8a7b151672-453fdf8b9e.zip b/.yarn/cache/@babel-parser-npm-7.23.0-8a7b151672-453fdf8b9e.zip deleted file mode 100644 index d7543e4a61..0000000000 Binary files a/.yarn/cache/@babel-parser-npm-7.23.0-8a7b151672-453fdf8b9e.zip and /dev/null differ diff --git a/.yarn/cache/@babel-parser-npm-7.23.6-2fad283d6e-140801c437.zip b/.yarn/cache/@babel-parser-npm-7.23.6-2fad283d6e-140801c437.zip new file mode 100644 index 0000000000..5537b3ffb2 Binary files /dev/null and b/.yarn/cache/@babel-parser-npm-7.23.6-2fad283d6e-140801c437.zip differ diff --git a/.yarn/cache/@eslint-community-regexpp-npm-4.10.0-6bfb984c81-2a6e345429.zip b/.yarn/cache/@eslint-community-regexpp-npm-4.10.0-6bfb984c81-2a6e345429.zip new file mode 100644 index 0000000000..7ef5a48973 Binary files /dev/null and b/.yarn/cache/@eslint-community-regexpp-npm-4.10.0-6bfb984c81-2a6e345429.zip differ diff --git a/.yarn/cache/@eslint-community-regexpp-npm-4.5.1-bf72922237-6d901166d6.zip b/.yarn/cache/@eslint-community-regexpp-npm-4.5.1-bf72922237-6d901166d6.zip deleted file mode 100644 index 0f8176b616..0000000000 Binary files a/.yarn/cache/@eslint-community-regexpp-npm-4.5.1-bf72922237-6d901166d6.zip and /dev/null differ diff --git a/.yarn/cache/@eslint-eslintrc-npm-2.1.2-feb0771c9f-bc742a1e3b.zip b/.yarn/cache/@eslint-eslintrc-npm-2.1.2-feb0771c9f-bc742a1e3b.zip deleted file mode 100644 index 43f6713681..0000000000 Binary files a/.yarn/cache/@eslint-eslintrc-npm-2.1.2-feb0771c9f-bc742a1e3b.zip and /dev/null differ diff --git a/.yarn/cache/@eslint-eslintrc-npm-2.1.4-1ff4b5f908-10957c7592.zip b/.yarn/cache/@eslint-eslintrc-npm-2.1.4-1ff4b5f908-10957c7592.zip new file mode 100644 index 0000000000..58788ff7a6 Binary files /dev/null and b/.yarn/cache/@eslint-eslintrc-npm-2.1.4-1ff4b5f908-10957c7592.zip differ diff --git a/.yarn/cache/@eslint-js-npm-8.52.0-801dbdf7b0-490893b809.zip b/.yarn/cache/@eslint-js-npm-8.56.0-b1de08cbff-5804130574.zip similarity index 52% rename from .yarn/cache/@eslint-js-npm-8.52.0-801dbdf7b0-490893b809.zip rename to .yarn/cache/@eslint-js-npm-8.56.0-b1de08cbff-5804130574.zip index 1c059425f2..0bb729d5c8 100644 Binary files a/.yarn/cache/@eslint-js-npm-8.52.0-801dbdf7b0-490893b809.zip and b/.yarn/cache/@eslint-js-npm-8.56.0-b1de08cbff-5804130574.zip differ diff --git a/.yarn/cache/@fullcalendar-bootstrap5-npm-6.1.9-ef68c3c094-1d6168fafc.zip b/.yarn/cache/@fullcalendar-bootstrap5-npm-6.1.10-70ad258cef-f0f80125f2.zip similarity index 52% rename from .yarn/cache/@fullcalendar-bootstrap5-npm-6.1.9-ef68c3c094-1d6168fafc.zip rename to .yarn/cache/@fullcalendar-bootstrap5-npm-6.1.10-70ad258cef-f0f80125f2.zip index 22a51e35a1..6b0d4ec660 100644 Binary files a/.yarn/cache/@fullcalendar-bootstrap5-npm-6.1.9-ef68c3c094-1d6168fafc.zip and b/.yarn/cache/@fullcalendar-bootstrap5-npm-6.1.10-70ad258cef-f0f80125f2.zip differ diff --git a/.yarn/cache/@fullcalendar-core-npm-6.1.10-15efba3167-88f0feb447.zip b/.yarn/cache/@fullcalendar-core-npm-6.1.10-15efba3167-88f0feb447.zip new file mode 100644 index 0000000000..042d587025 Binary files /dev/null and b/.yarn/cache/@fullcalendar-core-npm-6.1.10-15efba3167-88f0feb447.zip differ diff --git a/.yarn/cache/@fullcalendar-core-npm-6.1.9-b4da84d4b8-836db3e40c.zip b/.yarn/cache/@fullcalendar-core-npm-6.1.9-b4da84d4b8-836db3e40c.zip deleted file mode 100644 index 4e27bfed69..0000000000 Binary files a/.yarn/cache/@fullcalendar-core-npm-6.1.9-b4da84d4b8-836db3e40c.zip and /dev/null differ diff --git a/.yarn/cache/@fullcalendar-daygrid-npm-6.1.10-398fef213d-4b125e57fa.zip b/.yarn/cache/@fullcalendar-daygrid-npm-6.1.10-398fef213d-4b125e57fa.zip new file mode 100644 index 0000000000..f034f770c8 Binary files /dev/null and b/.yarn/cache/@fullcalendar-daygrid-npm-6.1.10-398fef213d-4b125e57fa.zip differ diff --git a/.yarn/cache/@fullcalendar-daygrid-npm-6.1.9-4c0da59f84-3db55247c4.zip b/.yarn/cache/@fullcalendar-daygrid-npm-6.1.9-4c0da59f84-3db55247c4.zip deleted file mode 100644 index 5a0ad27421..0000000000 Binary files a/.yarn/cache/@fullcalendar-daygrid-npm-6.1.9-4c0da59f84-3db55247c4.zip and /dev/null differ diff --git a/.yarn/cache/@fullcalendar-icalendar-npm-6.1.9-92e390eda8-d47daf4ae0.zip b/.yarn/cache/@fullcalendar-icalendar-npm-6.1.10-2455be620e-db04224357.zip similarity index 53% rename from .yarn/cache/@fullcalendar-icalendar-npm-6.1.9-92e390eda8-d47daf4ae0.zip rename to .yarn/cache/@fullcalendar-icalendar-npm-6.1.10-2455be620e-db04224357.zip index 804279cbb4..4bcb560a91 100644 Binary files a/.yarn/cache/@fullcalendar-icalendar-npm-6.1.9-92e390eda8-d47daf4ae0.zip and b/.yarn/cache/@fullcalendar-icalendar-npm-6.1.10-2455be620e-db04224357.zip differ diff --git a/.yarn/cache/@fullcalendar-interaction-npm-6.1.9-f729b81a3d-787111ea6f.zip b/.yarn/cache/@fullcalendar-interaction-npm-6.1.10-4f44948d4e-b5bdfaa650.zip similarity index 57% rename from .yarn/cache/@fullcalendar-interaction-npm-6.1.9-f729b81a3d-787111ea6f.zip rename to .yarn/cache/@fullcalendar-interaction-npm-6.1.10-4f44948d4e-b5bdfaa650.zip index 43132b57e8..8aef7cf56d 100644 Binary files a/.yarn/cache/@fullcalendar-interaction-npm-6.1.9-f729b81a3d-787111ea6f.zip and b/.yarn/cache/@fullcalendar-interaction-npm-6.1.10-4f44948d4e-b5bdfaa650.zip differ diff --git a/.yarn/cache/@fullcalendar-list-npm-6.1.9-f76695c5ab-978dd54b71.zip b/.yarn/cache/@fullcalendar-list-npm-6.1.10-f92699f342-c1ae1de196.zip similarity index 53% rename from .yarn/cache/@fullcalendar-list-npm-6.1.9-f76695c5ab-978dd54b71.zip rename to .yarn/cache/@fullcalendar-list-npm-6.1.10-f92699f342-c1ae1de196.zip index 177ec564d1..c65c6fa50c 100644 Binary files a/.yarn/cache/@fullcalendar-list-npm-6.1.9-f76695c5ab-978dd54b71.zip and b/.yarn/cache/@fullcalendar-list-npm-6.1.10-f92699f342-c1ae1de196.zip differ diff --git a/.yarn/cache/@fullcalendar-luxon3-npm-6.1.10-8d3a3d8496-47d4c6dbd3.zip b/.yarn/cache/@fullcalendar-luxon3-npm-6.1.10-8d3a3d8496-47d4c6dbd3.zip new file mode 100644 index 0000000000..6832520a90 Binary files /dev/null and b/.yarn/cache/@fullcalendar-luxon3-npm-6.1.10-8d3a3d8496-47d4c6dbd3.zip differ diff --git a/.yarn/cache/@fullcalendar-luxon3-npm-6.1.9-d79fc8f961-25122126e2.zip b/.yarn/cache/@fullcalendar-luxon3-npm-6.1.9-d79fc8f961-25122126e2.zip deleted file mode 100644 index 097ca2265a..0000000000 Binary files a/.yarn/cache/@fullcalendar-luxon3-npm-6.1.9-d79fc8f961-25122126e2.zip and /dev/null differ diff --git a/.yarn/cache/@fullcalendar-timegrid-npm-6.1.9-b227fefa80-8c12a508f7.zip b/.yarn/cache/@fullcalendar-timegrid-npm-6.1.10-368eff5fc0-91875c12f2.zip similarity index 56% rename from .yarn/cache/@fullcalendar-timegrid-npm-6.1.9-b227fefa80-8c12a508f7.zip rename to .yarn/cache/@fullcalendar-timegrid-npm-6.1.10-368eff5fc0-91875c12f2.zip index 5d92af9ff1..580914a7e4 100644 Binary files a/.yarn/cache/@fullcalendar-timegrid-npm-6.1.9-b227fefa80-8c12a508f7.zip and b/.yarn/cache/@fullcalendar-timegrid-npm-6.1.10-368eff5fc0-91875c12f2.zip differ diff --git a/.yarn/cache/@fullcalendar-vue3-npm-6.1.9-3c150e259d-2c1c0fbe72.zip b/.yarn/cache/@fullcalendar-vue3-npm-6.1.10-6e1cdb4365-1ccc7efab9.zip similarity index 90% rename from .yarn/cache/@fullcalendar-vue3-npm-6.1.9-3c150e259d-2c1c0fbe72.zip rename to .yarn/cache/@fullcalendar-vue3-npm-6.1.10-6e1cdb4365-1ccc7efab9.zip index 0ca254a0d6..290d9889ca 100644 Binary files a/.yarn/cache/@fullcalendar-vue3-npm-6.1.9-3c150e259d-2c1c0fbe72.zip and b/.yarn/cache/@fullcalendar-vue3-npm-6.1.10-6e1cdb4365-1ccc7efab9.zip differ diff --git a/.yarn/cache/@parcel-bundler-default-npm-2.10.0-bf1aa01515-58d3619928.zip b/.yarn/cache/@parcel-bundler-default-npm-2.10.0-bf1aa01515-58d3619928.zip deleted file mode 100644 index 302219eaa0..0000000000 Binary files a/.yarn/cache/@parcel-bundler-default-npm-2.10.0-bf1aa01515-58d3619928.zip and /dev/null differ diff --git a/.yarn/cache/@parcel-bundler-default-npm-2.11.0-60cd122e71-6541cd9b82.zip b/.yarn/cache/@parcel-bundler-default-npm-2.11.0-60cd122e71-6541cd9b82.zip new file mode 100644 index 0000000000..421f79de07 Binary files /dev/null and b/.yarn/cache/@parcel-bundler-default-npm-2.11.0-60cd122e71-6541cd9b82.zip differ diff --git a/.yarn/cache/@parcel-cache-npm-2.10.0-37f1f83d32-209d474abd.zip b/.yarn/cache/@parcel-cache-npm-2.10.0-37f1f83d32-209d474abd.zip deleted file mode 100644 index 271d9d3f6f..0000000000 Binary files a/.yarn/cache/@parcel-cache-npm-2.10.0-37f1f83d32-209d474abd.zip and /dev/null differ diff --git a/.yarn/cache/@parcel-cache-npm-2.11.0-009ba90eaa-bcb6ce0224.zip b/.yarn/cache/@parcel-cache-npm-2.11.0-009ba90eaa-bcb6ce0224.zip new file mode 100644 index 0000000000..36c7027e5f Binary files /dev/null and b/.yarn/cache/@parcel-cache-npm-2.11.0-009ba90eaa-bcb6ce0224.zip differ diff --git a/.yarn/cache/@parcel-codeframe-npm-2.10.0-e8aa1b4ecc-d87b17d3ce.zip b/.yarn/cache/@parcel-codeframe-npm-2.11.0-ff6d4c7f59-abd6b7b444.zip similarity index 99% rename from .yarn/cache/@parcel-codeframe-npm-2.10.0-e8aa1b4ecc-d87b17d3ce.zip rename to .yarn/cache/@parcel-codeframe-npm-2.11.0-ff6d4c7f59-abd6b7b444.zip index 9058e68333..d64bc49b1a 100644 Binary files a/.yarn/cache/@parcel-codeframe-npm-2.10.0-e8aa1b4ecc-d87b17d3ce.zip and b/.yarn/cache/@parcel-codeframe-npm-2.11.0-ff6d4c7f59-abd6b7b444.zip differ diff --git a/.yarn/cache/@parcel-compressor-raw-npm-2.10.0-961e5d9fe0-043fca0ecb.zip b/.yarn/cache/@parcel-compressor-raw-npm-2.10.0-961e5d9fe0-043fca0ecb.zip deleted file mode 100644 index e6333b4084..0000000000 Binary files a/.yarn/cache/@parcel-compressor-raw-npm-2.10.0-961e5d9fe0-043fca0ecb.zip and /dev/null differ diff --git a/.yarn/cache/@parcel-compressor-raw-npm-2.11.0-c68d493841-90882f3afa.zip b/.yarn/cache/@parcel-compressor-raw-npm-2.11.0-c68d493841-90882f3afa.zip new file mode 100644 index 0000000000..7c8f93eeae Binary files /dev/null and b/.yarn/cache/@parcel-compressor-raw-npm-2.11.0-c68d493841-90882f3afa.zip differ diff --git a/.yarn/cache/@parcel-config-default-npm-2.10.0-2a1fbdf24b-d780d05021.zip b/.yarn/cache/@parcel-config-default-npm-2.11.0-7c94133b29-b35be2dcd3.zip similarity index 66% rename from .yarn/cache/@parcel-config-default-npm-2.10.0-2a1fbdf24b-d780d05021.zip rename to .yarn/cache/@parcel-config-default-npm-2.11.0-7c94133b29-b35be2dcd3.zip index d5a1840883..05726ca1ad 100644 Binary files a/.yarn/cache/@parcel-config-default-npm-2.10.0-2a1fbdf24b-d780d05021.zip and b/.yarn/cache/@parcel-config-default-npm-2.11.0-7c94133b29-b35be2dcd3.zip differ diff --git a/.yarn/cache/@parcel-core-npm-2.10.0-59eaeeba7a-c59c2971ea.zip b/.yarn/cache/@parcel-core-npm-2.10.0-59eaeeba7a-c59c2971ea.zip deleted file mode 100644 index 95a14ae902..0000000000 Binary files a/.yarn/cache/@parcel-core-npm-2.10.0-59eaeeba7a-c59c2971ea.zip and /dev/null differ diff --git a/.yarn/cache/@parcel-core-npm-2.11.0-6342e70419-22d4e1f3f5.zip b/.yarn/cache/@parcel-core-npm-2.11.0-6342e70419-22d4e1f3f5.zip new file mode 100644 index 0000000000..85c14981a9 Binary files /dev/null and b/.yarn/cache/@parcel-core-npm-2.11.0-6342e70419-22d4e1f3f5.zip differ diff --git a/.yarn/cache/@parcel-diagnostic-npm-2.10.0-1e389b369e-45c606ca52.zip b/.yarn/cache/@parcel-diagnostic-npm-2.11.0-639f597af7-bcfd74db92.zip similarity index 73% rename from .yarn/cache/@parcel-diagnostic-npm-2.10.0-1e389b369e-45c606ca52.zip rename to .yarn/cache/@parcel-diagnostic-npm-2.11.0-639f597af7-bcfd74db92.zip index c16d0b42f4..c20a7d360a 100644 Binary files a/.yarn/cache/@parcel-diagnostic-npm-2.10.0-1e389b369e-45c606ca52.zip and b/.yarn/cache/@parcel-diagnostic-npm-2.11.0-639f597af7-bcfd74db92.zip differ diff --git a/.yarn/cache/@parcel-events-npm-2.10.0-da42a4afa6-1d21cd4186.zip b/.yarn/cache/@parcel-events-npm-2.11.0-3a46d4530c-e757383143.zip similarity index 82% rename from .yarn/cache/@parcel-events-npm-2.10.0-da42a4afa6-1d21cd4186.zip rename to .yarn/cache/@parcel-events-npm-2.11.0-3a46d4530c-e757383143.zip index cf89807381..93ca0f6c7e 100644 Binary files a/.yarn/cache/@parcel-events-npm-2.10.0-da42a4afa6-1d21cd4186.zip and b/.yarn/cache/@parcel-events-npm-2.11.0-3a46d4530c-e757383143.zip differ diff --git a/.yarn/cache/@parcel-fs-npm-2.10.0-c959567f0f-10faae481c.zip b/.yarn/cache/@parcel-fs-npm-2.10.0-c959567f0f-10faae481c.zip deleted file mode 100644 index 0062d48c08..0000000000 Binary files a/.yarn/cache/@parcel-fs-npm-2.10.0-c959567f0f-10faae481c.zip and /dev/null differ diff --git a/.yarn/cache/@parcel-fs-npm-2.11.0-8d41c39e85-2702d29dd7.zip b/.yarn/cache/@parcel-fs-npm-2.11.0-8d41c39e85-2702d29dd7.zip new file mode 100644 index 0000000000..f619ebd6c9 Binary files /dev/null and b/.yarn/cache/@parcel-fs-npm-2.11.0-8d41c39e85-2702d29dd7.zip differ diff --git a/.yarn/cache/@parcel-graph-npm-3.0.0-9001abfefc-0a9d5017f6.zip b/.yarn/cache/@parcel-graph-npm-3.1.0-a0fd3eb642-6d645e3ab4.zip similarity index 64% rename from .yarn/cache/@parcel-graph-npm-3.0.0-9001abfefc-0a9d5017f6.zip rename to .yarn/cache/@parcel-graph-npm-3.1.0-a0fd3eb642-6d645e3ab4.zip index 164f2ff077..2e0f67d354 100644 Binary files a/.yarn/cache/@parcel-graph-npm-3.0.0-9001abfefc-0a9d5017f6.zip and b/.yarn/cache/@parcel-graph-npm-3.1.0-a0fd3eb642-6d645e3ab4.zip differ diff --git a/.yarn/cache/@parcel-logger-npm-2.10.0-41ac90e34c-52d0b5331d.zip b/.yarn/cache/@parcel-logger-npm-2.11.0-d801efc634-363cacf596.zip similarity index 56% rename from .yarn/cache/@parcel-logger-npm-2.10.0-41ac90e34c-52d0b5331d.zip rename to .yarn/cache/@parcel-logger-npm-2.11.0-d801efc634-363cacf596.zip index d7df80c7bf..a1aa003c41 100644 Binary files a/.yarn/cache/@parcel-logger-npm-2.10.0-41ac90e34c-52d0b5331d.zip and b/.yarn/cache/@parcel-logger-npm-2.11.0-d801efc634-363cacf596.zip differ diff --git a/.yarn/cache/@parcel-markdown-ansi-npm-2.10.0-4dd4da44f3-35e2d07ec8.zip b/.yarn/cache/@parcel-markdown-ansi-npm-2.11.0-fec39dc514-26bc69d6e2.zip similarity index 64% rename from .yarn/cache/@parcel-markdown-ansi-npm-2.10.0-4dd4da44f3-35e2d07ec8.zip rename to .yarn/cache/@parcel-markdown-ansi-npm-2.11.0-fec39dc514-26bc69d6e2.zip index f5a836e3cc..c25e6a9d88 100644 Binary files a/.yarn/cache/@parcel-markdown-ansi-npm-2.10.0-4dd4da44f3-35e2d07ec8.zip and b/.yarn/cache/@parcel-markdown-ansi-npm-2.11.0-fec39dc514-26bc69d6e2.zip differ diff --git a/.yarn/cache/@parcel-namer-default-npm-2.10.0-4b82db40fd-f2a32096d1.zip b/.yarn/cache/@parcel-namer-default-npm-2.10.0-4b82db40fd-f2a32096d1.zip deleted file mode 100644 index 46d6a52498..0000000000 Binary files a/.yarn/cache/@parcel-namer-default-npm-2.10.0-4b82db40fd-f2a32096d1.zip and /dev/null differ diff --git a/.yarn/cache/@parcel-namer-default-npm-2.11.0-b19d289c57-452978cb59.zip b/.yarn/cache/@parcel-namer-default-npm-2.11.0-b19d289c57-452978cb59.zip new file mode 100644 index 0000000000..e7ae842fe3 Binary files /dev/null and b/.yarn/cache/@parcel-namer-default-npm-2.11.0-b19d289c57-452978cb59.zip differ diff --git a/.yarn/cache/@parcel-node-resolver-core-npm-3.1.0-9c9ff3ab8b-dcdd39bc6a.zip b/.yarn/cache/@parcel-node-resolver-core-npm-3.1.0-9c9ff3ab8b-dcdd39bc6a.zip deleted file mode 100644 index 33ee38431b..0000000000 Binary files a/.yarn/cache/@parcel-node-resolver-core-npm-3.1.0-9c9ff3ab8b-dcdd39bc6a.zip and /dev/null differ diff --git a/.yarn/cache/@parcel-node-resolver-core-npm-3.2.0-d449d46e11-9a006b50b1.zip b/.yarn/cache/@parcel-node-resolver-core-npm-3.2.0-d449d46e11-9a006b50b1.zip new file mode 100644 index 0000000000..52953bab79 Binary files /dev/null and b/.yarn/cache/@parcel-node-resolver-core-npm-3.2.0-d449d46e11-9a006b50b1.zip differ diff --git a/.yarn/cache/@parcel-optimizer-css-npm-2.10.0-dbd5825b4e-ea15989512.zip b/.yarn/cache/@parcel-optimizer-css-npm-2.10.0-dbd5825b4e-ea15989512.zip deleted file mode 100644 index 9956afb109..0000000000 Binary files a/.yarn/cache/@parcel-optimizer-css-npm-2.10.0-dbd5825b4e-ea15989512.zip and /dev/null differ diff --git a/.yarn/cache/@parcel-optimizer-css-npm-2.11.0-9746660015-8407b5e864.zip b/.yarn/cache/@parcel-optimizer-css-npm-2.11.0-9746660015-8407b5e864.zip new file mode 100644 index 0000000000..c4d65ff216 Binary files /dev/null and b/.yarn/cache/@parcel-optimizer-css-npm-2.11.0-9746660015-8407b5e864.zip differ diff --git a/.yarn/cache/@parcel-optimizer-data-url-npm-2.10.0-700cb5aab6-ec9530be83.zip b/.yarn/cache/@parcel-optimizer-data-url-npm-2.10.0-700cb5aab6-ec9530be83.zip deleted file mode 100644 index 39c8d2b426..0000000000 Binary files a/.yarn/cache/@parcel-optimizer-data-url-npm-2.10.0-700cb5aab6-ec9530be83.zip and /dev/null differ diff --git a/.yarn/cache/@parcel-optimizer-data-url-npm-2.11.0-384ae33ee4-cf8680e676.zip b/.yarn/cache/@parcel-optimizer-data-url-npm-2.11.0-384ae33ee4-cf8680e676.zip new file mode 100644 index 0000000000..4b37fb1f1d Binary files /dev/null and b/.yarn/cache/@parcel-optimizer-data-url-npm-2.11.0-384ae33ee4-cf8680e676.zip differ diff --git a/.yarn/cache/@parcel-optimizer-htmlnano-npm-2.10.0-ee0243765c-1f6de13022.zip b/.yarn/cache/@parcel-optimizer-htmlnano-npm-2.10.0-ee0243765c-1f6de13022.zip deleted file mode 100644 index 7b7bff73e7..0000000000 Binary files a/.yarn/cache/@parcel-optimizer-htmlnano-npm-2.10.0-ee0243765c-1f6de13022.zip and /dev/null differ diff --git a/.yarn/cache/@parcel-optimizer-htmlnano-npm-2.11.0-3247e2fdd1-4943948a8f.zip b/.yarn/cache/@parcel-optimizer-htmlnano-npm-2.11.0-3247e2fdd1-4943948a8f.zip new file mode 100644 index 0000000000..098534a2c8 Binary files /dev/null and b/.yarn/cache/@parcel-optimizer-htmlnano-npm-2.11.0-3247e2fdd1-4943948a8f.zip differ diff --git a/.yarn/cache/@parcel-optimizer-image-npm-2.10.0-a581b60cbd-94d5db2837.zip b/.yarn/cache/@parcel-optimizer-image-npm-2.10.0-a581b60cbd-94d5db2837.zip deleted file mode 100644 index df6e165df9..0000000000 Binary files a/.yarn/cache/@parcel-optimizer-image-npm-2.10.0-a581b60cbd-94d5db2837.zip and /dev/null differ diff --git a/.yarn/cache/@parcel-optimizer-image-npm-2.11.0-49b9f44d2c-9c4d9d087f.zip b/.yarn/cache/@parcel-optimizer-image-npm-2.11.0-49b9f44d2c-9c4d9d087f.zip new file mode 100644 index 0000000000..83a3e127ba Binary files /dev/null and b/.yarn/cache/@parcel-optimizer-image-npm-2.11.0-49b9f44d2c-9c4d9d087f.zip differ diff --git a/.yarn/cache/@parcel-optimizer-svgo-npm-2.10.0-154d938969-7201c63222.zip b/.yarn/cache/@parcel-optimizer-svgo-npm-2.10.0-154d938969-7201c63222.zip deleted file mode 100644 index ba2a5ca11a..0000000000 Binary files a/.yarn/cache/@parcel-optimizer-svgo-npm-2.10.0-154d938969-7201c63222.zip and /dev/null differ diff --git a/.yarn/cache/@parcel-optimizer-svgo-npm-2.11.0-4c73051f7f-4e671856c2.zip b/.yarn/cache/@parcel-optimizer-svgo-npm-2.11.0-4c73051f7f-4e671856c2.zip new file mode 100644 index 0000000000..dcdb63def6 Binary files /dev/null and b/.yarn/cache/@parcel-optimizer-svgo-npm-2.11.0-4c73051f7f-4e671856c2.zip differ diff --git a/.yarn/cache/@parcel-optimizer-swc-npm-2.10.0-caf3bb9c02-1fe68ee6ff.zip b/.yarn/cache/@parcel-optimizer-swc-npm-2.10.0-caf3bb9c02-1fe68ee6ff.zip deleted file mode 100644 index ac83217658..0000000000 Binary files a/.yarn/cache/@parcel-optimizer-swc-npm-2.10.0-caf3bb9c02-1fe68ee6ff.zip and /dev/null differ diff --git a/.yarn/cache/@parcel-optimizer-swc-npm-2.11.0-4799184866-be4b8bc94a.zip b/.yarn/cache/@parcel-optimizer-swc-npm-2.11.0-4799184866-be4b8bc94a.zip new file mode 100644 index 0000000000..f6310bc2f6 Binary files /dev/null and b/.yarn/cache/@parcel-optimizer-swc-npm-2.11.0-4799184866-be4b8bc94a.zip differ diff --git a/.yarn/cache/@parcel-package-manager-npm-2.10.0-4f4a39adee-7c4a95d9df.zip b/.yarn/cache/@parcel-package-manager-npm-2.10.0-4f4a39adee-7c4a95d9df.zip deleted file mode 100644 index 77ba89e562..0000000000 Binary files a/.yarn/cache/@parcel-package-manager-npm-2.10.0-4f4a39adee-7c4a95d9df.zip and /dev/null differ diff --git a/.yarn/cache/@parcel-package-manager-npm-2.11.0-0093175155-3846542eb5.zip b/.yarn/cache/@parcel-package-manager-npm-2.11.0-0093175155-3846542eb5.zip new file mode 100644 index 0000000000..1bc43e746c Binary files /dev/null and b/.yarn/cache/@parcel-package-manager-npm-2.11.0-0093175155-3846542eb5.zip differ diff --git a/.yarn/cache/@parcel-packager-css-npm-2.10.0-cb31a968a8-11bf4cae4c.zip b/.yarn/cache/@parcel-packager-css-npm-2.11.0-d68345b85a-2aa8da12ca.zip similarity index 52% rename from .yarn/cache/@parcel-packager-css-npm-2.10.0-cb31a968a8-11bf4cae4c.zip rename to .yarn/cache/@parcel-packager-css-npm-2.11.0-d68345b85a-2aa8da12ca.zip index 71fc7e92a4..71a304a89a 100644 Binary files a/.yarn/cache/@parcel-packager-css-npm-2.10.0-cb31a968a8-11bf4cae4c.zip and b/.yarn/cache/@parcel-packager-css-npm-2.11.0-d68345b85a-2aa8da12ca.zip differ diff --git a/.yarn/cache/@parcel-packager-html-npm-2.10.0-d6f71e7e36-8dfd86e7d6.zip b/.yarn/cache/@parcel-packager-html-npm-2.11.0-cc99e7973c-a651b4f3cf.zip similarity index 50% rename from .yarn/cache/@parcel-packager-html-npm-2.10.0-d6f71e7e36-8dfd86e7d6.zip rename to .yarn/cache/@parcel-packager-html-npm-2.11.0-cc99e7973c-a651b4f3cf.zip index d3c871d581..cfcdfb608d 100644 Binary files a/.yarn/cache/@parcel-packager-html-npm-2.10.0-d6f71e7e36-8dfd86e7d6.zip and b/.yarn/cache/@parcel-packager-html-npm-2.11.0-cc99e7973c-a651b4f3cf.zip differ diff --git a/.yarn/cache/@parcel-packager-js-npm-2.10.0-f84ec4cc7b-9b62598864.zip b/.yarn/cache/@parcel-packager-js-npm-2.11.0-1b99c3cf17-63d96fb22b.zip similarity index 59% rename from .yarn/cache/@parcel-packager-js-npm-2.10.0-f84ec4cc7b-9b62598864.zip rename to .yarn/cache/@parcel-packager-js-npm-2.11.0-1b99c3cf17-63d96fb22b.zip index 9084795b65..2db972d092 100644 Binary files a/.yarn/cache/@parcel-packager-js-npm-2.10.0-f84ec4cc7b-9b62598864.zip and b/.yarn/cache/@parcel-packager-js-npm-2.11.0-1b99c3cf17-63d96fb22b.zip differ diff --git a/.yarn/cache/@parcel-packager-raw-npm-2.10.0-01ef1b8e3e-492fe07ae5.zip b/.yarn/cache/@parcel-packager-raw-npm-2.10.0-01ef1b8e3e-492fe07ae5.zip deleted file mode 100644 index 132ebb4043..0000000000 Binary files a/.yarn/cache/@parcel-packager-raw-npm-2.10.0-01ef1b8e3e-492fe07ae5.zip and /dev/null differ diff --git a/.yarn/cache/@parcel-packager-raw-npm-2.11.0-7b94e2b267-c36dbcc82a.zip b/.yarn/cache/@parcel-packager-raw-npm-2.11.0-7b94e2b267-c36dbcc82a.zip new file mode 100644 index 0000000000..2bffa38388 Binary files /dev/null and b/.yarn/cache/@parcel-packager-raw-npm-2.11.0-7b94e2b267-c36dbcc82a.zip differ diff --git a/.yarn/cache/@parcel-packager-svg-npm-2.10.0-22326715bd-f49d7f3b88.zip b/.yarn/cache/@parcel-packager-svg-npm-2.10.0-22326715bd-f49d7f3b88.zip deleted file mode 100644 index c3031c1920..0000000000 Binary files a/.yarn/cache/@parcel-packager-svg-npm-2.10.0-22326715bd-f49d7f3b88.zip and /dev/null differ diff --git a/.yarn/cache/@parcel-packager-svg-npm-2.11.0-8d1f3d908d-2d0394dd5e.zip b/.yarn/cache/@parcel-packager-svg-npm-2.11.0-8d1f3d908d-2d0394dd5e.zip new file mode 100644 index 0000000000..8f0ab16419 Binary files /dev/null and b/.yarn/cache/@parcel-packager-svg-npm-2.11.0-8d1f3d908d-2d0394dd5e.zip differ diff --git a/.yarn/cache/@parcel-packager-wasm-npm-2.10.0-b1d2cd8f88-d9a13eb838.zip b/.yarn/cache/@parcel-packager-wasm-npm-2.11.0-250c4c8045-4f0617fe51.zip similarity index 68% rename from .yarn/cache/@parcel-packager-wasm-npm-2.10.0-b1d2cd8f88-d9a13eb838.zip rename to .yarn/cache/@parcel-packager-wasm-npm-2.11.0-250c4c8045-4f0617fe51.zip index 2cde1a739e..2060cda63a 100644 Binary files a/.yarn/cache/@parcel-packager-wasm-npm-2.10.0-b1d2cd8f88-d9a13eb838.zip and b/.yarn/cache/@parcel-packager-wasm-npm-2.11.0-250c4c8045-4f0617fe51.zip differ diff --git a/.yarn/cache/@parcel-plugin-npm-2.10.0-efbc58a209-e13ba6e7e5.zip b/.yarn/cache/@parcel-plugin-npm-2.11.0-24c81a1d64-45344c3ac0.zip similarity index 77% rename from .yarn/cache/@parcel-plugin-npm-2.10.0-efbc58a209-e13ba6e7e5.zip rename to .yarn/cache/@parcel-plugin-npm-2.11.0-24c81a1d64-45344c3ac0.zip index 0c18974840..3599a1084d 100644 Binary files a/.yarn/cache/@parcel-plugin-npm-2.10.0-efbc58a209-e13ba6e7e5.zip and b/.yarn/cache/@parcel-plugin-npm-2.11.0-24c81a1d64-45344c3ac0.zip differ diff --git a/.yarn/cache/@parcel-profiler-npm-2.10.0-b1ba499bc1-78d545edb7.zip b/.yarn/cache/@parcel-profiler-npm-2.10.0-b1ba499bc1-78d545edb7.zip deleted file mode 100644 index 7a39442c82..0000000000 Binary files a/.yarn/cache/@parcel-profiler-npm-2.10.0-b1ba499bc1-78d545edb7.zip and /dev/null differ diff --git a/.yarn/cache/@parcel-profiler-npm-2.11.0-ddcb455e20-f5b5749786.zip b/.yarn/cache/@parcel-profiler-npm-2.11.0-ddcb455e20-f5b5749786.zip new file mode 100644 index 0000000000..752dcb7389 Binary files /dev/null and b/.yarn/cache/@parcel-profiler-npm-2.11.0-ddcb455e20-f5b5749786.zip differ diff --git a/.yarn/cache/@parcel-reporter-cli-npm-2.10.0-083fc2f2d6-0137a91e45.zip b/.yarn/cache/@parcel-reporter-cli-npm-2.10.0-083fc2f2d6-0137a91e45.zip deleted file mode 100644 index cafce4c242..0000000000 Binary files a/.yarn/cache/@parcel-reporter-cli-npm-2.10.0-083fc2f2d6-0137a91e45.zip and /dev/null differ diff --git a/.yarn/cache/@parcel-reporter-cli-npm-2.11.0-ab155d7a57-81e62144ad.zip b/.yarn/cache/@parcel-reporter-cli-npm-2.11.0-ab155d7a57-81e62144ad.zip new file mode 100644 index 0000000000..5281ab3a12 Binary files /dev/null and b/.yarn/cache/@parcel-reporter-cli-npm-2.11.0-ab155d7a57-81e62144ad.zip differ diff --git a/.yarn/cache/@parcel-reporter-dev-server-npm-2.10.0-2f19cb846e-e72fd6ec09.zip b/.yarn/cache/@parcel-reporter-dev-server-npm-2.10.0-2f19cb846e-e72fd6ec09.zip deleted file mode 100644 index 655d45cf19..0000000000 Binary files a/.yarn/cache/@parcel-reporter-dev-server-npm-2.10.0-2f19cb846e-e72fd6ec09.zip and /dev/null differ diff --git a/.yarn/cache/@parcel-reporter-dev-server-npm-2.11.0-5fc4b1fa22-ac8948c7f3.zip b/.yarn/cache/@parcel-reporter-dev-server-npm-2.11.0-5fc4b1fa22-ac8948c7f3.zip new file mode 100644 index 0000000000..6616a7028b Binary files /dev/null and b/.yarn/cache/@parcel-reporter-dev-server-npm-2.11.0-5fc4b1fa22-ac8948c7f3.zip differ diff --git a/.yarn/cache/@parcel-reporter-tracer-npm-2.10.0-184a89e262-0f8249b998.zip b/.yarn/cache/@parcel-reporter-tracer-npm-2.10.0-184a89e262-0f8249b998.zip deleted file mode 100644 index 533f83cc16..0000000000 Binary files a/.yarn/cache/@parcel-reporter-tracer-npm-2.10.0-184a89e262-0f8249b998.zip and /dev/null differ diff --git a/.yarn/cache/@parcel-reporter-tracer-npm-2.11.0-8a358255e3-83aedfc97d.zip b/.yarn/cache/@parcel-reporter-tracer-npm-2.11.0-8a358255e3-83aedfc97d.zip new file mode 100644 index 0000000000..159dbe132c Binary files /dev/null and b/.yarn/cache/@parcel-reporter-tracer-npm-2.11.0-8a358255e3-83aedfc97d.zip differ diff --git a/.yarn/cache/@parcel-resolver-default-npm-2.10.0-ca49f01a75-c82e2d3c4b.zip b/.yarn/cache/@parcel-resolver-default-npm-2.10.0-ca49f01a75-c82e2d3c4b.zip deleted file mode 100644 index 39ac48c80c..0000000000 Binary files a/.yarn/cache/@parcel-resolver-default-npm-2.10.0-ca49f01a75-c82e2d3c4b.zip and /dev/null differ diff --git a/.yarn/cache/@parcel-resolver-default-npm-2.11.0-d8f3f39d13-bbb5f6dfd6.zip b/.yarn/cache/@parcel-resolver-default-npm-2.11.0-d8f3f39d13-bbb5f6dfd6.zip new file mode 100644 index 0000000000..9bf07e775f Binary files /dev/null and b/.yarn/cache/@parcel-resolver-default-npm-2.11.0-d8f3f39d13-bbb5f6dfd6.zip differ diff --git a/.yarn/cache/@parcel-runtime-browser-hmr-npm-2.10.0-c6b7773a09-12928462c8.zip b/.yarn/cache/@parcel-runtime-browser-hmr-npm-2.10.0-c6b7773a09-12928462c8.zip deleted file mode 100644 index 7f1d968b8a..0000000000 Binary files a/.yarn/cache/@parcel-runtime-browser-hmr-npm-2.10.0-c6b7773a09-12928462c8.zip and /dev/null differ diff --git a/.yarn/cache/@parcel-runtime-browser-hmr-npm-2.11.0-f1e83d8dd6-ad7eba3210.zip b/.yarn/cache/@parcel-runtime-browser-hmr-npm-2.11.0-f1e83d8dd6-ad7eba3210.zip new file mode 100644 index 0000000000..e04f94c7c1 Binary files /dev/null and b/.yarn/cache/@parcel-runtime-browser-hmr-npm-2.11.0-f1e83d8dd6-ad7eba3210.zip differ diff --git a/.yarn/cache/@parcel-runtime-js-npm-2.10.0-6b4cf1576c-3bbd64c5b9.zip b/.yarn/cache/@parcel-runtime-js-npm-2.11.0-d9caebabcf-3cab5e6b62.zip similarity index 76% rename from .yarn/cache/@parcel-runtime-js-npm-2.10.0-6b4cf1576c-3bbd64c5b9.zip rename to .yarn/cache/@parcel-runtime-js-npm-2.11.0-d9caebabcf-3cab5e6b62.zip index 10fc3360d3..3df253df00 100644 Binary files a/.yarn/cache/@parcel-runtime-js-npm-2.10.0-6b4cf1576c-3bbd64c5b9.zip and b/.yarn/cache/@parcel-runtime-js-npm-2.11.0-d9caebabcf-3cab5e6b62.zip differ diff --git a/.yarn/cache/@parcel-runtime-react-refresh-npm-2.10.0-b1f6c62bdf-dc567474a1.zip b/.yarn/cache/@parcel-runtime-react-refresh-npm-2.10.0-b1f6c62bdf-dc567474a1.zip deleted file mode 100644 index 75e403b9dd..0000000000 Binary files a/.yarn/cache/@parcel-runtime-react-refresh-npm-2.10.0-b1f6c62bdf-dc567474a1.zip and /dev/null differ diff --git a/.yarn/cache/@parcel-runtime-react-refresh-npm-2.11.0-d4ea40f648-0a29d9e55a.zip b/.yarn/cache/@parcel-runtime-react-refresh-npm-2.11.0-d4ea40f648-0a29d9e55a.zip new file mode 100644 index 0000000000..8bcc1638e4 Binary files /dev/null and b/.yarn/cache/@parcel-runtime-react-refresh-npm-2.11.0-d4ea40f648-0a29d9e55a.zip differ diff --git a/.yarn/cache/@parcel-runtime-service-worker-npm-2.10.0-3ca99a5366-d0bfd113b9.zip b/.yarn/cache/@parcel-runtime-service-worker-npm-2.10.0-3ca99a5366-d0bfd113b9.zip deleted file mode 100644 index 8602ad88a3..0000000000 Binary files a/.yarn/cache/@parcel-runtime-service-worker-npm-2.10.0-3ca99a5366-d0bfd113b9.zip and /dev/null differ diff --git a/.yarn/cache/@parcel-runtime-service-worker-npm-2.11.0-a6c5146e82-da8d2b5a92.zip b/.yarn/cache/@parcel-runtime-service-worker-npm-2.11.0-a6c5146e82-da8d2b5a92.zip new file mode 100644 index 0000000000..0510bd4048 Binary files /dev/null and b/.yarn/cache/@parcel-runtime-service-worker-npm-2.11.0-a6c5146e82-da8d2b5a92.zip differ diff --git a/.yarn/cache/@parcel-rust-npm-2.10.0-99038406b0-466a78d27d.zip b/.yarn/cache/@parcel-rust-npm-2.11.0-8335cb8859-53a95b2356.zip similarity index 75% rename from .yarn/cache/@parcel-rust-npm-2.10.0-99038406b0-466a78d27d.zip rename to .yarn/cache/@parcel-rust-npm-2.11.0-8335cb8859-53a95b2356.zip index 22f9773a93..dd75ffc383 100644 Binary files a/.yarn/cache/@parcel-rust-npm-2.10.0-99038406b0-466a78d27d.zip and b/.yarn/cache/@parcel-rust-npm-2.11.0-8335cb8859-53a95b2356.zip differ diff --git a/.yarn/cache/@parcel-transformer-babel-npm-2.10.0-fb74ad8c73-fd64092c9c.zip b/.yarn/cache/@parcel-transformer-babel-npm-2.11.0-4f420dae94-f36c7973c6.zip similarity index 87% rename from .yarn/cache/@parcel-transformer-babel-npm-2.10.0-fb74ad8c73-fd64092c9c.zip rename to .yarn/cache/@parcel-transformer-babel-npm-2.11.0-4f420dae94-f36c7973c6.zip index df186d3d17..a9d2274bc9 100644 Binary files a/.yarn/cache/@parcel-transformer-babel-npm-2.10.0-fb74ad8c73-fd64092c9c.zip and b/.yarn/cache/@parcel-transformer-babel-npm-2.11.0-4f420dae94-f36c7973c6.zip differ diff --git a/.yarn/cache/@parcel-transformer-css-npm-2.10.0-4fc35c8005-acc26e9b3d.zip b/.yarn/cache/@parcel-transformer-css-npm-2.10.0-4fc35c8005-acc26e9b3d.zip deleted file mode 100644 index 9ad2a3992a..0000000000 Binary files a/.yarn/cache/@parcel-transformer-css-npm-2.10.0-4fc35c8005-acc26e9b3d.zip and /dev/null differ diff --git a/.yarn/cache/@parcel-transformer-css-npm-2.11.0-3686de070e-59b1893b94.zip b/.yarn/cache/@parcel-transformer-css-npm-2.11.0-3686de070e-59b1893b94.zip new file mode 100644 index 0000000000..685e0b8345 Binary files /dev/null and b/.yarn/cache/@parcel-transformer-css-npm-2.11.0-3686de070e-59b1893b94.zip differ diff --git a/.yarn/cache/@parcel-transformer-html-npm-2.10.0-b6d2228044-f28e0d3606.zip b/.yarn/cache/@parcel-transformer-html-npm-2.11.0-ee0c40ba5b-fd333e9a48.zip similarity index 79% rename from .yarn/cache/@parcel-transformer-html-npm-2.10.0-b6d2228044-f28e0d3606.zip rename to .yarn/cache/@parcel-transformer-html-npm-2.11.0-ee0c40ba5b-fd333e9a48.zip index 5a84fa37da..f4af5ffb51 100644 Binary files a/.yarn/cache/@parcel-transformer-html-npm-2.10.0-b6d2228044-f28e0d3606.zip and b/.yarn/cache/@parcel-transformer-html-npm-2.11.0-ee0c40ba5b-fd333e9a48.zip differ diff --git a/.yarn/cache/@parcel-transformer-image-npm-2.10.0-e63bd526ed-61a47d7d8e.zip b/.yarn/cache/@parcel-transformer-image-npm-2.11.0-056c5ef1d6-65e7fa4791.zip similarity index 51% rename from .yarn/cache/@parcel-transformer-image-npm-2.10.0-e63bd526ed-61a47d7d8e.zip rename to .yarn/cache/@parcel-transformer-image-npm-2.11.0-056c5ef1d6-65e7fa4791.zip index 18ec9cbd62..fea2570b9c 100644 Binary files a/.yarn/cache/@parcel-transformer-image-npm-2.10.0-e63bd526ed-61a47d7d8e.zip and b/.yarn/cache/@parcel-transformer-image-npm-2.11.0-056c5ef1d6-65e7fa4791.zip differ diff --git a/.yarn/cache/@parcel-transformer-inline-string-npm-2.10.0-44c9b349db-618c919108.zip b/.yarn/cache/@parcel-transformer-inline-string-npm-2.10.0-44c9b349db-618c919108.zip deleted file mode 100644 index 636b8cafdc..0000000000 Binary files a/.yarn/cache/@parcel-transformer-inline-string-npm-2.10.0-44c9b349db-618c919108.zip and /dev/null differ diff --git a/.yarn/cache/@parcel-transformer-inline-string-npm-2.11.0-5076b0e854-99e53f2939.zip b/.yarn/cache/@parcel-transformer-inline-string-npm-2.11.0-5076b0e854-99e53f2939.zip new file mode 100644 index 0000000000..fe46dea45b Binary files /dev/null and b/.yarn/cache/@parcel-transformer-inline-string-npm-2.11.0-5076b0e854-99e53f2939.zip differ diff --git a/.yarn/cache/@parcel-transformer-js-npm-2.10.0-132e460926-e9944ce77c.zip b/.yarn/cache/@parcel-transformer-js-npm-2.10.0-132e460926-e9944ce77c.zip deleted file mode 100644 index ff6263c541..0000000000 Binary files a/.yarn/cache/@parcel-transformer-js-npm-2.10.0-132e460926-e9944ce77c.zip and /dev/null differ diff --git a/.yarn/cache/@parcel-transformer-js-npm-2.11.0-dfce68b0df-ae75820a39.zip b/.yarn/cache/@parcel-transformer-js-npm-2.11.0-dfce68b0df-ae75820a39.zip new file mode 100644 index 0000000000..9fecaed986 Binary files /dev/null and b/.yarn/cache/@parcel-transformer-js-npm-2.11.0-dfce68b0df-ae75820a39.zip differ diff --git a/.yarn/cache/@parcel-transformer-json-npm-2.10.0-5525143f86-9c7aceb8e6.zip b/.yarn/cache/@parcel-transformer-json-npm-2.10.0-5525143f86-9c7aceb8e6.zip deleted file mode 100644 index e821a47649..0000000000 Binary files a/.yarn/cache/@parcel-transformer-json-npm-2.10.0-5525143f86-9c7aceb8e6.zip and /dev/null differ diff --git a/.yarn/cache/@parcel-transformer-json-npm-2.11.0-2bdc20c542-6e25561d09.zip b/.yarn/cache/@parcel-transformer-json-npm-2.11.0-2bdc20c542-6e25561d09.zip new file mode 100644 index 0000000000..dc982675e8 Binary files /dev/null and b/.yarn/cache/@parcel-transformer-json-npm-2.11.0-2bdc20c542-6e25561d09.zip differ diff --git a/.yarn/cache/@parcel-transformer-postcss-npm-2.10.0-c1f60c708a-2e524bd513.zip b/.yarn/cache/@parcel-transformer-postcss-npm-2.11.0-91cc8bafce-10f0054e5b.zip similarity index 64% rename from .yarn/cache/@parcel-transformer-postcss-npm-2.10.0-c1f60c708a-2e524bd513.zip rename to .yarn/cache/@parcel-transformer-postcss-npm-2.11.0-91cc8bafce-10f0054e5b.zip index 5e78f70b2d..c61f02a409 100644 Binary files a/.yarn/cache/@parcel-transformer-postcss-npm-2.10.0-c1f60c708a-2e524bd513.zip and b/.yarn/cache/@parcel-transformer-postcss-npm-2.11.0-91cc8bafce-10f0054e5b.zip differ diff --git a/.yarn/cache/@parcel-transformer-posthtml-npm-2.10.0-31d54ed3f0-7de343f0f9.zip b/.yarn/cache/@parcel-transformer-posthtml-npm-2.10.0-31d54ed3f0-7de343f0f9.zip deleted file mode 100644 index 5228dc9af8..0000000000 Binary files a/.yarn/cache/@parcel-transformer-posthtml-npm-2.10.0-31d54ed3f0-7de343f0f9.zip and /dev/null differ diff --git a/.yarn/cache/@parcel-transformer-posthtml-npm-2.11.0-988444d0fc-d79e3666ca.zip b/.yarn/cache/@parcel-transformer-posthtml-npm-2.11.0-988444d0fc-d79e3666ca.zip new file mode 100644 index 0000000000..2020e2e62f Binary files /dev/null and b/.yarn/cache/@parcel-transformer-posthtml-npm-2.11.0-988444d0fc-d79e3666ca.zip differ diff --git a/.yarn/cache/@parcel-transformer-raw-npm-2.10.0-d7cd50f767-c7b1b9c6f7.zip b/.yarn/cache/@parcel-transformer-raw-npm-2.10.0-d7cd50f767-c7b1b9c6f7.zip deleted file mode 100644 index 3c536f6417..0000000000 Binary files a/.yarn/cache/@parcel-transformer-raw-npm-2.10.0-d7cd50f767-c7b1b9c6f7.zip and /dev/null differ diff --git a/.yarn/cache/@parcel-transformer-raw-npm-2.11.0-642bbfc25f-b914665c09.zip b/.yarn/cache/@parcel-transformer-raw-npm-2.11.0-642bbfc25f-b914665c09.zip new file mode 100644 index 0000000000..92c1d3be44 Binary files /dev/null and b/.yarn/cache/@parcel-transformer-raw-npm-2.11.0-642bbfc25f-b914665c09.zip differ diff --git a/.yarn/cache/@parcel-transformer-react-refresh-wrap-npm-2.10.0-4c3ddcc095-fc3163bcb0.zip b/.yarn/cache/@parcel-transformer-react-refresh-wrap-npm-2.11.0-ae62731131-b17b7a151d.zip similarity index 62% rename from .yarn/cache/@parcel-transformer-react-refresh-wrap-npm-2.10.0-4c3ddcc095-fc3163bcb0.zip rename to .yarn/cache/@parcel-transformer-react-refresh-wrap-npm-2.11.0-ae62731131-b17b7a151d.zip index 67e2da6e22..ef5c3fb905 100644 Binary files a/.yarn/cache/@parcel-transformer-react-refresh-wrap-npm-2.10.0-4c3ddcc095-fc3163bcb0.zip and b/.yarn/cache/@parcel-transformer-react-refresh-wrap-npm-2.11.0-ae62731131-b17b7a151d.zip differ diff --git a/.yarn/cache/@parcel-transformer-sass-npm-2.10.0-6c5f188bcc-2d697077ac.zip b/.yarn/cache/@parcel-transformer-sass-npm-2.11.0-1bbd436614-8a7248969b.zip similarity index 51% rename from .yarn/cache/@parcel-transformer-sass-npm-2.10.0-6c5f188bcc-2d697077ac.zip rename to .yarn/cache/@parcel-transformer-sass-npm-2.11.0-1bbd436614-8a7248969b.zip index 3caad5c9a7..3756f95a97 100644 Binary files a/.yarn/cache/@parcel-transformer-sass-npm-2.10.0-6c5f188bcc-2d697077ac.zip and b/.yarn/cache/@parcel-transformer-sass-npm-2.11.0-1bbd436614-8a7248969b.zip differ diff --git a/.yarn/cache/@parcel-transformer-svg-npm-2.10.0-881c72cd1f-d5f55f6eee.zip b/.yarn/cache/@parcel-transformer-svg-npm-2.11.0-a17754ebb9-48bf4503de.zip similarity index 71% rename from .yarn/cache/@parcel-transformer-svg-npm-2.10.0-881c72cd1f-d5f55f6eee.zip rename to .yarn/cache/@parcel-transformer-svg-npm-2.11.0-a17754ebb9-48bf4503de.zip index b6ef15207c..fb9fd9cf56 100644 Binary files a/.yarn/cache/@parcel-transformer-svg-npm-2.10.0-881c72cd1f-d5f55f6eee.zip and b/.yarn/cache/@parcel-transformer-svg-npm-2.11.0-a17754ebb9-48bf4503de.zip differ diff --git a/.yarn/cache/@parcel-types-npm-2.10.0-270e786ba1-387aa07902.zip b/.yarn/cache/@parcel-types-npm-2.10.0-270e786ba1-387aa07902.zip deleted file mode 100644 index 59297ef889..0000000000 Binary files a/.yarn/cache/@parcel-types-npm-2.10.0-270e786ba1-387aa07902.zip and /dev/null differ diff --git a/.yarn/cache/@parcel-types-npm-2.11.0-888eab94f9-8534156caf.zip b/.yarn/cache/@parcel-types-npm-2.11.0-888eab94f9-8534156caf.zip new file mode 100644 index 0000000000..76811d9257 Binary files /dev/null and b/.yarn/cache/@parcel-types-npm-2.11.0-888eab94f9-8534156caf.zip differ diff --git a/.yarn/cache/@parcel-utils-npm-2.10.0-1f25fbc366-9f4953ff9a.zip b/.yarn/cache/@parcel-utils-npm-2.10.0-1f25fbc366-9f4953ff9a.zip deleted file mode 100644 index 5162312f75..0000000000 Binary files a/.yarn/cache/@parcel-utils-npm-2.10.0-1f25fbc366-9f4953ff9a.zip and /dev/null differ diff --git a/.yarn/cache/@parcel-utils-npm-2.11.0-401481d70b-e40f4bca04.zip b/.yarn/cache/@parcel-utils-npm-2.11.0-401481d70b-e40f4bca04.zip new file mode 100644 index 0000000000..64c1ded61e Binary files /dev/null and b/.yarn/cache/@parcel-utils-npm-2.11.0-401481d70b-e40f4bca04.zip differ diff --git a/.yarn/cache/@parcel-workers-npm-2.10.0-7f8aa5ad5a-e8b1701b53.zip b/.yarn/cache/@parcel-workers-npm-2.10.0-7f8aa5ad5a-e8b1701b53.zip deleted file mode 100644 index d3e73822e5..0000000000 Binary files a/.yarn/cache/@parcel-workers-npm-2.10.0-7f8aa5ad5a-e8b1701b53.zip and /dev/null differ diff --git a/.yarn/cache/@parcel-workers-npm-2.11.0-4f22c80d03-0771ad5372.zip b/.yarn/cache/@parcel-workers-npm-2.11.0-4f22c80d03-0771ad5372.zip new file mode 100644 index 0000000000..e05881315f Binary files /dev/null and b/.yarn/cache/@parcel-workers-npm-2.11.0-4f22c80d03-0771ad5372.zip differ diff --git a/.yarn/cache/@rollup-pluginutils-npm-5.0.5-cfa8fafc53-dcd4d6e3cb.zip b/.yarn/cache/@rollup-pluginutils-npm-5.0.5-cfa8fafc53-dcd4d6e3cb.zip deleted file mode 100644 index 91a5a69139..0000000000 Binary files a/.yarn/cache/@rollup-pluginutils-npm-5.0.5-cfa8fafc53-dcd4d6e3cb.zip and /dev/null differ diff --git a/.yarn/cache/@rollup-pluginutils-npm-5.1.0-6939820ef8-3cc5a6d914.zip b/.yarn/cache/@rollup-pluginutils-npm-5.1.0-6939820ef8-3cc5a6d914.zip new file mode 100644 index 0000000000..923a7a91a8 Binary files /dev/null and b/.yarn/cache/@rollup-pluginutils-npm-5.1.0-6939820ef8-3cc5a6d914.zip differ diff --git a/.yarn/cache/@sidvind-better-ajv-errors-npm-2.0.0-3531bddef9-12b0d87855.zip b/.yarn/cache/@sidvind-better-ajv-errors-npm-2.0.0-3531bddef9-12b0d87855.zip deleted file mode 100644 index 5990cc7604..0000000000 Binary files a/.yarn/cache/@sidvind-better-ajv-errors-npm-2.0.0-3531bddef9-12b0d87855.zip and /dev/null differ diff --git a/.yarn/cache/@sidvind-better-ajv-errors-npm-2.1.3-e3d1c524a8-949cb805a1.zip b/.yarn/cache/@sidvind-better-ajv-errors-npm-2.1.3-e3d1c524a8-949cb805a1.zip new file mode 100644 index 0000000000..ad36770e19 Binary files /dev/null and b/.yarn/cache/@sidvind-better-ajv-errors-npm-2.1.3-e3d1c524a8-949cb805a1.zip differ diff --git a/.yarn/cache/@vitejs-plugin-vue-npm-4.4.0-c33d65c6f6-37b6987951.zip b/.yarn/cache/@vitejs-plugin-vue-npm-4.4.0-c33d65c6f6-37b6987951.zip deleted file mode 100644 index 96bb8b3013..0000000000 Binary files a/.yarn/cache/@vitejs-plugin-vue-npm-4.4.0-c33d65c6f6-37b6987951.zip and /dev/null differ diff --git a/.yarn/cache/@vitejs-plugin-vue-npm-4.6.2-d7ace53203-01bc4ed643.zip b/.yarn/cache/@vitejs-plugin-vue-npm-4.6.2-d7ace53203-01bc4ed643.zip new file mode 100644 index 0000000000..7cf07fbe2d Binary files /dev/null and b/.yarn/cache/@vitejs-plugin-vue-npm-4.6.2-d7ace53203-01bc4ed643.zip differ diff --git a/.yarn/cache/@vue-compiler-core-npm-3.3.7-584a90831e-94ac56a5a8.zip b/.yarn/cache/@vue-compiler-core-npm-3.3.7-584a90831e-94ac56a5a8.zip deleted file mode 100644 index 7a97cc0f06..0000000000 Binary files a/.yarn/cache/@vue-compiler-core-npm-3.3.7-584a90831e-94ac56a5a8.zip and /dev/null differ diff --git a/.yarn/cache/@vue-compiler-core-npm-3.4.13-acb31588b3-5f486b5ca8.zip b/.yarn/cache/@vue-compiler-core-npm-3.4.13-acb31588b3-5f486b5ca8.zip new file mode 100644 index 0000000000..8c0efac5b6 Binary files /dev/null and b/.yarn/cache/@vue-compiler-core-npm-3.4.13-acb31588b3-5f486b5ca8.zip differ diff --git a/.yarn/cache/@vue-compiler-dom-npm-3.3.7-53a75677b1-d54c49fd82.zip b/.yarn/cache/@vue-compiler-dom-npm-3.3.7-53a75677b1-d54c49fd82.zip deleted file mode 100644 index e575fe111a..0000000000 Binary files a/.yarn/cache/@vue-compiler-dom-npm-3.3.7-53a75677b1-d54c49fd82.zip and /dev/null differ diff --git a/.yarn/cache/@vue-compiler-dom-npm-3.4.13-419b24ea95-2afdacc038.zip b/.yarn/cache/@vue-compiler-dom-npm-3.4.13-419b24ea95-2afdacc038.zip new file mode 100644 index 0000000000..7e378fb357 Binary files /dev/null and b/.yarn/cache/@vue-compiler-dom-npm-3.4.13-419b24ea95-2afdacc038.zip differ diff --git a/.yarn/cache/@vue-compiler-sfc-npm-3.3.7-57757e7ccc-593c0b00f3.zip b/.yarn/cache/@vue-compiler-sfc-npm-3.3.7-57757e7ccc-593c0b00f3.zip deleted file mode 100644 index 54122b57ef..0000000000 Binary files a/.yarn/cache/@vue-compiler-sfc-npm-3.3.7-57757e7ccc-593c0b00f3.zip and /dev/null differ diff --git a/.yarn/cache/@vue-compiler-sfc-npm-3.4.13-5fd28e3447-9252b9f10c.zip b/.yarn/cache/@vue-compiler-sfc-npm-3.4.13-5fd28e3447-9252b9f10c.zip new file mode 100644 index 0000000000..1eaed3fdac Binary files /dev/null and b/.yarn/cache/@vue-compiler-sfc-npm-3.4.13-5fd28e3447-9252b9f10c.zip differ diff --git a/.yarn/cache/@vue-compiler-ssr-npm-3.3.7-61efc0860e-42f8ddc9ff.zip b/.yarn/cache/@vue-compiler-ssr-npm-3.3.7-61efc0860e-42f8ddc9ff.zip deleted file mode 100644 index 31da201aef..0000000000 Binary files a/.yarn/cache/@vue-compiler-ssr-npm-3.3.7-61efc0860e-42f8ddc9ff.zip and /dev/null differ diff --git a/.yarn/cache/@vue-compiler-ssr-npm-3.4.13-f1c98d5a6b-99fae88e13.zip b/.yarn/cache/@vue-compiler-ssr-npm-3.4.13-f1c98d5a6b-99fae88e13.zip new file mode 100644 index 0000000000..d0ae2af949 Binary files /dev/null and b/.yarn/cache/@vue-compiler-ssr-npm-3.4.13-f1c98d5a6b-99fae88e13.zip differ diff --git a/.yarn/cache/@vue-reactivity-npm-3.3.7-0bf3bc7094-16b629c997.zip b/.yarn/cache/@vue-reactivity-npm-3.3.7-0bf3bc7094-16b629c997.zip deleted file mode 100644 index 38b5fa6d04..0000000000 Binary files a/.yarn/cache/@vue-reactivity-npm-3.3.7-0bf3bc7094-16b629c997.zip and /dev/null differ diff --git a/.yarn/cache/@vue-reactivity-npm-3.4.13-ad954039b3-883ba2fb31.zip b/.yarn/cache/@vue-reactivity-npm-3.4.13-ad954039b3-883ba2fb31.zip new file mode 100644 index 0000000000..7cbcdb15e5 Binary files /dev/null and b/.yarn/cache/@vue-reactivity-npm-3.4.13-ad954039b3-883ba2fb31.zip differ diff --git a/.yarn/cache/@vue-reactivity-transform-npm-3.3.7-7c404f0363-f88d39c8a4.zip b/.yarn/cache/@vue-reactivity-transform-npm-3.3.7-7c404f0363-f88d39c8a4.zip deleted file mode 100644 index 4575a9337f..0000000000 Binary files a/.yarn/cache/@vue-reactivity-transform-npm-3.3.7-7c404f0363-f88d39c8a4.zip and /dev/null differ diff --git a/.yarn/cache/@vue-runtime-core-npm-3.3.7-61d8aab53a-3fd38c6831.zip b/.yarn/cache/@vue-runtime-core-npm-3.3.7-61d8aab53a-3fd38c6831.zip deleted file mode 100644 index 368c70512c..0000000000 Binary files a/.yarn/cache/@vue-runtime-core-npm-3.3.7-61d8aab53a-3fd38c6831.zip and /dev/null differ diff --git a/.yarn/cache/@vue-runtime-core-npm-3.4.13-a92d1fdb22-196c6c894d.zip b/.yarn/cache/@vue-runtime-core-npm-3.4.13-a92d1fdb22-196c6c894d.zip new file mode 100644 index 0000000000..87d95bcd16 Binary files /dev/null and b/.yarn/cache/@vue-runtime-core-npm-3.4.13-a92d1fdb22-196c6c894d.zip differ diff --git a/.yarn/cache/@vue-runtime-dom-npm-3.3.7-07cf6cc840-9331ea0886.zip b/.yarn/cache/@vue-runtime-dom-npm-3.3.7-07cf6cc840-9331ea0886.zip deleted file mode 100644 index bd517fed0a..0000000000 Binary files a/.yarn/cache/@vue-runtime-dom-npm-3.3.7-07cf6cc840-9331ea0886.zip and /dev/null differ diff --git a/.yarn/cache/@vue-runtime-dom-npm-3.4.13-b9f911a017-8811687c23.zip b/.yarn/cache/@vue-runtime-dom-npm-3.4.13-b9f911a017-8811687c23.zip new file mode 100644 index 0000000000..ee082939c8 Binary files /dev/null and b/.yarn/cache/@vue-runtime-dom-npm-3.4.13-b9f911a017-8811687c23.zip differ diff --git a/.yarn/cache/@vue-server-renderer-npm-3.3.7-a66f8ec338-c2e673d6f7.zip b/.yarn/cache/@vue-server-renderer-npm-3.3.7-a66f8ec338-c2e673d6f7.zip deleted file mode 100644 index c037fccafd..0000000000 Binary files a/.yarn/cache/@vue-server-renderer-npm-3.3.7-a66f8ec338-c2e673d6f7.zip and /dev/null differ diff --git a/.yarn/cache/@vue-server-renderer-npm-3.4.13-6a75a1f39c-f17fff6af2.zip b/.yarn/cache/@vue-server-renderer-npm-3.4.13-6a75a1f39c-f17fff6af2.zip new file mode 100644 index 0000000000..8de98882d0 Binary files /dev/null and b/.yarn/cache/@vue-server-renderer-npm-3.4.13-6a75a1f39c-f17fff6af2.zip differ diff --git a/.yarn/cache/@vue-shared-npm-3.3.7-44832a6399-a6718f760b.zip b/.yarn/cache/@vue-shared-npm-3.3.7-44832a6399-a6718f760b.zip deleted file mode 100644 index c65bb7407a..0000000000 Binary files a/.yarn/cache/@vue-shared-npm-3.3.7-44832a6399-a6718f760b.zip and /dev/null differ diff --git a/.yarn/cache/@vue-shared-npm-3.4.13-4dcbacd500-c514944886.zip b/.yarn/cache/@vue-shared-npm-3.4.13-4dcbacd500-c514944886.zip new file mode 100644 index 0000000000..c9db579b23 Binary files /dev/null and b/.yarn/cache/@vue-shared-npm-3.4.13-4dcbacd500-c514944886.zip differ diff --git a/.yarn/cache/bootstrap-icons-npm-1.11.1-9f55aea76a-d78ff24a83.zip b/.yarn/cache/bootstrap-icons-npm-1.11.1-9f55aea76a-d78ff24a83.zip deleted file mode 100644 index 8124ba6569..0000000000 Binary files a/.yarn/cache/bootstrap-icons-npm-1.11.1-9f55aea76a-d78ff24a83.zip and /dev/null differ diff --git a/.yarn/cache/bootstrap-icons-npm-1.11.3-8d5387bef2-d5cdb90fe3.zip b/.yarn/cache/bootstrap-icons-npm-1.11.3-8d5387bef2-d5cdb90fe3.zip new file mode 100644 index 0000000000..e20ab2ecb3 Binary files /dev/null and b/.yarn/cache/bootstrap-icons-npm-1.11.3-8d5387bef2-d5cdb90fe3.zip differ diff --git a/.yarn/cache/builtin-modules-npm-3.3.0-db4f3d32de-db021755d7.zip b/.yarn/cache/builtin-modules-npm-3.3.0-db4f3d32de-db021755d7.zip new file mode 100644 index 0000000000..c7e20444c6 Binary files /dev/null and b/.yarn/cache/builtin-modules-npm-3.3.0-db4f3d32de-db021755d7.zip differ diff --git a/.yarn/cache/c8-npm-8.0.1-6462c8130b-2c47531d21.zip b/.yarn/cache/c8-npm-9.1.0-92c3d37f46-c5249bf9c3.zip similarity index 50% rename from .yarn/cache/c8-npm-8.0.1-6462c8130b-2c47531d21.zip rename to .yarn/cache/c8-npm-9.1.0-92c3d37f46-c5249bf9c3.zip index ff8bf91a24..1e5812b784 100644 Binary files a/.yarn/cache/c8-npm-8.0.1-6462c8130b-2c47531d21.zip and b/.yarn/cache/c8-npm-9.1.0-92c3d37f46-c5249bf9c3.zip differ diff --git a/.yarn/cache/caniuse-lite-npm-1.0.30001538-68bfe8259b-94c5d55757.zip b/.yarn/cache/caniuse-lite-npm-1.0.30001538-68bfe8259b-94c5d55757.zip deleted file mode 100644 index 12c494fb8d..0000000000 Binary files a/.yarn/cache/caniuse-lite-npm-1.0.30001538-68bfe8259b-94c5d55757.zip and /dev/null differ diff --git a/.yarn/cache/caniuse-lite-npm-1.0.30001576-3d0983cdce-b8b332675f.zip b/.yarn/cache/caniuse-lite-npm-1.0.30001576-3d0983cdce-b8b332675f.zip new file mode 100644 index 0000000000..16cdd4df78 Binary files /dev/null and b/.yarn/cache/caniuse-lite-npm-1.0.30001576-3d0983cdce-b8b332675f.zip differ diff --git a/.yarn/cache/cli-progress-npm-3.12.0-d686625154-e8390dc3cd.zip b/.yarn/cache/cli-progress-npm-3.12.0-d686625154-e8390dc3cd.zip new file mode 100644 index 0000000000..624eb987d3 Binary files /dev/null and b/.yarn/cache/cli-progress-npm-3.12.0-d686625154-e8390dc3cd.zip differ diff --git a/.yarn/cache/csstype-npm-3.1.2-cead7d99b2-e1a52e6c25.zip b/.yarn/cache/csstype-npm-3.1.2-cead7d99b2-e1a52e6c25.zip deleted file mode 100644 index 740042eb39..0000000000 Binary files a/.yarn/cache/csstype-npm-3.1.2-cead7d99b2-e1a52e6c25.zip and /dev/null differ diff --git a/.yarn/cache/csstype-npm-3.1.3-e9a1c85013-8db785cc92.zip b/.yarn/cache/csstype-npm-3.1.3-e9a1c85013-8db785cc92.zip new file mode 100644 index 0000000000..9853f0cf0b Binary files /dev/null and b/.yarn/cache/csstype-npm-3.1.3-e9a1c85013-8db785cc92.zip differ diff --git a/.yarn/cache/entities-npm-4.5.0-7cdb83b832-853f8ebd5b.zip b/.yarn/cache/entities-npm-4.5.0-7cdb83b832-853f8ebd5b.zip new file mode 100644 index 0000000000..3772a4510c Binary files /dev/null and b/.yarn/cache/entities-npm-4.5.0-7cdb83b832-853f8ebd5b.zip differ diff --git a/.yarn/cache/eslint-compat-utils-npm-0.1.2-361c6992b1-2315d9db81.zip b/.yarn/cache/eslint-compat-utils-npm-0.1.2-361c6992b1-2315d9db81.zip new file mode 100644 index 0000000000..505e336b08 Binary files /dev/null and b/.yarn/cache/eslint-compat-utils-npm-0.1.2-361c6992b1-2315d9db81.zip differ diff --git a/.yarn/cache/eslint-npm-8.52.0-e7f048a439-fd22d1e9bd.zip b/.yarn/cache/eslint-npm-8.56.0-6eec398a41-883436d1e8.zip similarity index 63% rename from .yarn/cache/eslint-npm-8.52.0-e7f048a439-fd22d1e9bd.zip rename to .yarn/cache/eslint-npm-8.56.0-6eec398a41-883436d1e8.zip index 625d3a60da..1b83bdbf8a 100644 Binary files a/.yarn/cache/eslint-npm-8.52.0-e7f048a439-fd22d1e9bd.zip and b/.yarn/cache/eslint-npm-8.56.0-6eec398a41-883436d1e8.zip differ diff --git a/.yarn/cache/eslint-plugin-es-x-npm-7.1.0-35735e8bbc-a19924313c.zip b/.yarn/cache/eslint-plugin-es-x-npm-7.1.0-35735e8bbc-a19924313c.zip deleted file mode 100644 index 4184ed69d2..0000000000 Binary files a/.yarn/cache/eslint-plugin-es-x-npm-7.1.0-35735e8bbc-a19924313c.zip and /dev/null differ diff --git a/.yarn/cache/eslint-plugin-es-x-npm-7.5.0-77e84d6e5d-e770e57df7.zip b/.yarn/cache/eslint-plugin-es-x-npm-7.5.0-77e84d6e5d-e770e57df7.zip new file mode 100644 index 0000000000..1d334e0a10 Binary files /dev/null and b/.yarn/cache/eslint-plugin-es-x-npm-7.5.0-77e84d6e5d-e770e57df7.zip differ diff --git a/.yarn/cache/eslint-plugin-import-npm-2.29.0-9cd6da0b0a-19ee541fb9.zip b/.yarn/cache/eslint-plugin-import-npm-2.29.1-b94305f7dc-e65159aef8.zip similarity index 83% rename from .yarn/cache/eslint-plugin-import-npm-2.29.0-9cd6da0b0a-19ee541fb9.zip rename to .yarn/cache/eslint-plugin-import-npm-2.29.1-b94305f7dc-e65159aef8.zip index ed15139635..bc424a6a64 100644 Binary files a/.yarn/cache/eslint-plugin-import-npm-2.29.0-9cd6da0b0a-19ee541fb9.zip and b/.yarn/cache/eslint-plugin-import-npm-2.29.1-b94305f7dc-e65159aef8.zip differ diff --git a/.yarn/cache/eslint-plugin-n-npm-16.2.0-b2b8355312-124ba4f418.zip b/.yarn/cache/eslint-plugin-n-npm-16.2.0-b2b8355312-124ba4f418.zip deleted file mode 100644 index 12357638c9..0000000000 Binary files a/.yarn/cache/eslint-plugin-n-npm-16.2.0-b2b8355312-124ba4f418.zip and /dev/null differ diff --git a/.yarn/cache/eslint-plugin-n-npm-16.6.2-77775852d0-3b468da003.zip b/.yarn/cache/eslint-plugin-n-npm-16.6.2-77775852d0-3b468da003.zip new file mode 100644 index 0000000000..9c7224993f Binary files /dev/null and b/.yarn/cache/eslint-plugin-n-npm-16.6.2-77775852d0-3b468da003.zip differ diff --git a/.yarn/cache/eslint-plugin-vue-npm-9.18.1-69de725f8c-774c1e9163.zip b/.yarn/cache/eslint-plugin-vue-npm-9.18.1-69de725f8c-774c1e9163.zip deleted file mode 100644 index d846217f1c..0000000000 Binary files a/.yarn/cache/eslint-plugin-vue-npm-9.18.1-69de725f8c-774c1e9163.zip and /dev/null differ diff --git a/.yarn/cache/eslint-plugin-vue-npm-9.20.1-ec1d3386bd-fe50f4b842.zip b/.yarn/cache/eslint-plugin-vue-npm-9.20.1-ec1d3386bd-fe50f4b842.zip new file mode 100644 index 0000000000..72337f34c3 Binary files /dev/null and b/.yarn/cache/eslint-plugin-vue-npm-9.20.1-ec1d3386bd-fe50f4b842.zip differ diff --git a/.yarn/cache/foreground-child-npm-2.0.0-80c976b61e-f77ec9aff6.zip b/.yarn/cache/foreground-child-npm-2.0.0-80c976b61e-f77ec9aff6.zip deleted file mode 100644 index d947311d1e..0000000000 Binary files a/.yarn/cache/foreground-child-npm-2.0.0-80c976b61e-f77ec9aff6.zip and /dev/null differ diff --git a/.yarn/cache/globals-npm-13.24.0-cc7713139c-56066ef058.zip b/.yarn/cache/globals-npm-13.24.0-cc7713139c-56066ef058.zip new file mode 100644 index 0000000000..c8cb0244af Binary files /dev/null and b/.yarn/cache/globals-npm-13.24.0-cc7713139c-56066ef058.zip differ diff --git a/.yarn/cache/highcharts-npm-11.1.0-0d42a04430-f9b8cdc38b.zip b/.yarn/cache/highcharts-npm-11.1.0-0d42a04430-f9b8cdc38b.zip deleted file mode 100644 index ccf9aece97..0000000000 Binary files a/.yarn/cache/highcharts-npm-11.1.0-0d42a04430-f9b8cdc38b.zip and /dev/null differ diff --git a/.yarn/cache/highcharts-npm-11.3.0-d9aa04531f-6511a004f7.zip b/.yarn/cache/highcharts-npm-11.3.0-d9aa04531f-6511a004f7.zip new file mode 100644 index 0000000000..2ec522d764 Binary files /dev/null and b/.yarn/cache/highcharts-npm-11.3.0-d9aa04531f-6511a004f7.zip differ diff --git a/.yarn/cache/html-validate-npm-8.7.0-7989d0b76e-f1b346bad8.zip b/.yarn/cache/html-validate-npm-8.7.0-7989d0b76e-f1b346bad8.zip deleted file mode 100644 index 632fbe666f..0000000000 Binary files a/.yarn/cache/html-validate-npm-8.7.0-7989d0b76e-f1b346bad8.zip and /dev/null differ diff --git a/.yarn/cache/html-validate-npm-8.9.1-b3199a37b5-31d46f3779.zip b/.yarn/cache/html-validate-npm-8.9.1-b3199a37b5-31d46f3779.zip new file mode 100644 index 0000000000..eef93cd57f Binary files /dev/null and b/.yarn/cache/html-validate-npm-8.9.1-b3199a37b5-31d46f3779.zip differ diff --git a/.yarn/cache/ignore-npm-5.3.0-fb0f5fa062-2736da6621.zip b/.yarn/cache/ignore-npm-5.3.0-fb0f5fa062-2736da6621.zip new file mode 100644 index 0000000000..87f79cff1f Binary files /dev/null and b/.yarn/cache/ignore-npm-5.3.0-fb0f5fa062-2736da6621.zip differ diff --git a/.yarn/cache/is-builtin-module-npm-3.2.1-2f92a5d353-e8f0ffc19a.zip b/.yarn/cache/is-builtin-module-npm-3.2.1-2f92a5d353-e8f0ffc19a.zip new file mode 100644 index 0000000000..be908976b5 Binary files /dev/null and b/.yarn/cache/is-builtin-module-npm-3.2.1-2f92a5d353-e8f0ffc19a.zip differ diff --git a/.yarn/cache/luxon-npm-3.4.3-1b54517fa6-3eade81506.zip b/.yarn/cache/luxon-npm-3.4.3-1b54517fa6-3eade81506.zip deleted file mode 100644 index 3089c36a81..0000000000 Binary files a/.yarn/cache/luxon-npm-3.4.3-1b54517fa6-3eade81506.zip and /dev/null differ diff --git a/.yarn/cache/luxon-npm-3.4.4-c93f95dde8-36c1f99c47.zip b/.yarn/cache/luxon-npm-3.4.4-c93f95dde8-36c1f99c47.zip new file mode 100644 index 0000000000..ed7709ee9e Binary files /dev/null and b/.yarn/cache/luxon-npm-3.4.4-c93f95dde8-36c1f99c47.zip differ diff --git a/.yarn/cache/moment-npm-2.30.1-1c51a5c631-859236bab1.zip b/.yarn/cache/moment-npm-2.30.1-1c51a5c631-859236bab1.zip new file mode 100644 index 0000000000..7454cc21af Binary files /dev/null and b/.yarn/cache/moment-npm-2.30.1-1c51a5c631-859236bab1.zip differ diff --git a/.yarn/cache/moment-timezone-npm-0.5.43-1304d8602a-8075c897ed.zip b/.yarn/cache/moment-timezone-npm-0.5.43-1304d8602a-8075c897ed.zip deleted file mode 100644 index 6200ccaec8..0000000000 Binary files a/.yarn/cache/moment-timezone-npm-0.5.43-1304d8602a-8075c897ed.zip and /dev/null differ diff --git a/.yarn/cache/moment-timezone-npm-0.5.44-16af7889fb-2f1de58f14.zip b/.yarn/cache/moment-timezone-npm-0.5.44-16af7889fb-2f1de58f14.zip new file mode 100644 index 0000000000..01896c17d2 Binary files /dev/null and b/.yarn/cache/moment-timezone-npm-0.5.44-16af7889fb-2f1de58f14.zip differ diff --git a/.yarn/cache/msgpackr-npm-1.10.1-5c5ff5c553-e422d18b01.zip b/.yarn/cache/msgpackr-npm-1.10.1-5c5ff5c553-e422d18b01.zip new file mode 100644 index 0000000000..12aaa36344 Binary files /dev/null and b/.yarn/cache/msgpackr-npm-1.10.1-5c5ff5c553-e422d18b01.zip differ diff --git a/.yarn/cache/naive-ui-npm-2.35.0-2bb3f5a46d-53239b8cbe.zip b/.yarn/cache/naive-ui-npm-2.35.0-2bb3f5a46d-53239b8cbe.zip deleted file mode 100644 index 79503fb7af..0000000000 Binary files a/.yarn/cache/naive-ui-npm-2.35.0-2bb3f5a46d-53239b8cbe.zip and /dev/null differ diff --git a/.yarn/cache/naive-ui-npm-2.37.3-fa382750ff-1a0e72cfb9.zip b/.yarn/cache/naive-ui-npm-2.37.3-fa382750ff-1a0e72cfb9.zip new file mode 100644 index 0000000000..373abe2c29 Binary files /dev/null and b/.yarn/cache/naive-ui-npm-2.37.3-fa382750ff-1a0e72cfb9.zip differ diff --git a/.yarn/cache/nanoid-npm-3.3.6-e6d6ae7e71-7d0eda6570.zip b/.yarn/cache/nanoid-npm-3.3.7-98824ba130-d36c427e53.zip similarity index 70% rename from .yarn/cache/nanoid-npm-3.3.6-e6d6ae7e71-7d0eda6570.zip rename to .yarn/cache/nanoid-npm-3.3.7-98824ba130-d36c427e53.zip index 8526acad72..7b2fd6e1b5 100644 Binary files a/.yarn/cache/nanoid-npm-3.3.6-e6d6ae7e71-7d0eda6570.zip and b/.yarn/cache/nanoid-npm-3.3.7-98824ba130-d36c427e53.zip differ diff --git a/.yarn/cache/parcel-npm-2.10.0-8e794fc289-fe25ddcf2d.zip b/.yarn/cache/parcel-npm-2.10.0-8e794fc289-fe25ddcf2d.zip deleted file mode 100644 index 018a98c3b8..0000000000 Binary files a/.yarn/cache/parcel-npm-2.10.0-8e794fc289-fe25ddcf2d.zip and /dev/null differ diff --git a/.yarn/cache/parcel-npm-2.11.0-a1f816e3ce-1990c72504.zip b/.yarn/cache/parcel-npm-2.11.0-a1f816e3ce-1990c72504.zip new file mode 100644 index 0000000000..cf2f43060f Binary files /dev/null and b/.yarn/cache/parcel-npm-2.11.0-a1f816e3ce-1990c72504.zip differ diff --git a/.yarn/cache/postcss-npm-8.4.27-2a9f5f8f40-1cdd0c2988.zip b/.yarn/cache/postcss-npm-8.4.27-2a9f5f8f40-1cdd0c2988.zip deleted file mode 100644 index 11d492b6c1..0000000000 Binary files a/.yarn/cache/postcss-npm-8.4.27-2a9f5f8f40-1cdd0c2988.zip and /dev/null differ diff --git a/.yarn/cache/postcss-npm-8.4.31-385051a82b-1d8611341b.zip b/.yarn/cache/postcss-npm-8.4.32-2004ba88b8-220d9d0bf5.zip similarity index 92% rename from .yarn/cache/postcss-npm-8.4.31-385051a82b-1d8611341b.zip rename to .yarn/cache/postcss-npm-8.4.32-2004ba88b8-220d9d0bf5.zip index dc7dd6671c..ec7d3de78b 100644 Binary files a/.yarn/cache/postcss-npm-8.4.31-385051a82b-1d8611341b.zip and b/.yarn/cache/postcss-npm-8.4.32-2004ba88b8-220d9d0bf5.zip differ diff --git a/.yarn/cache/postcss-npm-8.4.33-6ba8157009-6f98b2af4b.zip b/.yarn/cache/postcss-npm-8.4.33-6ba8157009-6f98b2af4b.zip new file mode 100644 index 0000000000..57638cbd81 Binary files /dev/null and b/.yarn/cache/postcss-npm-8.4.33-6ba8157009-6f98b2af4b.zip differ diff --git a/.yarn/cache/rollup-npm-3.28.0-4ab1b4022e-6ded4a0d3c.zip b/.yarn/cache/rollup-npm-3.28.0-4ab1b4022e-6ded4a0d3c.zip deleted file mode 100644 index fba58d7eec..0000000000 Binary files a/.yarn/cache/rollup-npm-3.28.0-4ab1b4022e-6ded4a0d3c.zip and /dev/null differ diff --git a/.yarn/cache/rollup-npm-3.29.4-5e5e5f2087-8bb20a39c8.zip b/.yarn/cache/rollup-npm-3.29.4-5e5e5f2087-8bb20a39c8.zip new file mode 100644 index 0000000000..9f6628aa42 Binary files /dev/null and b/.yarn/cache/rollup-npm-3.29.4-5e5e5f2087-8bb20a39c8.zip differ diff --git a/.yarn/cache/sass-npm-1.69.4-bea57e4b30-ed5558445b.zip b/.yarn/cache/sass-npm-1.69.4-bea57e4b30-ed5558445b.zip deleted file mode 100644 index e9db6b0c8c..0000000000 Binary files a/.yarn/cache/sass-npm-1.69.4-bea57e4b30-ed5558445b.zip and /dev/null differ diff --git a/.yarn/cache/sass-npm-1.69.7-ac434a094c-c67cd32b69.zip b/.yarn/cache/sass-npm-1.69.7-ac434a094c-c67cd32b69.zip new file mode 100644 index 0000000000..143170a1b0 Binary files /dev/null and b/.yarn/cache/sass-npm-1.69.7-ac434a094c-c67cd32b69.zip differ diff --git a/.yarn/cache/seemly-npm-0.3.8-4940336497-98171fd4d9.zip b/.yarn/cache/seemly-npm-0.3.8-4940336497-98171fd4d9.zip new file mode 100644 index 0000000000..03ae0a8f50 Binary files /dev/null and b/.yarn/cache/seemly-npm-0.3.8-4940336497-98171fd4d9.zip differ diff --git a/.yarn/cache/sortablejs-npm-1.15.0-f3a393abcc-bb82223a66.zip b/.yarn/cache/sortablejs-npm-1.15.0-f3a393abcc-bb82223a66.zip deleted file mode 100644 index 9028b71d1c..0000000000 Binary files a/.yarn/cache/sortablejs-npm-1.15.0-f3a393abcc-bb82223a66.zip and /dev/null differ diff --git a/.yarn/cache/sortablejs-npm-1.15.2-73347ae85a-36b20b144f.zip b/.yarn/cache/sortablejs-npm-1.15.2-73347ae85a-36b20b144f.zip new file mode 100644 index 0000000000..b303125761 Binary files /dev/null and b/.yarn/cache/sortablejs-npm-1.15.2-73347ae85a-36b20b144f.zip differ diff --git a/.yarn/cache/tsconfig-paths-npm-3.14.2-90ce75420d-a6162eaa1a.zip b/.yarn/cache/tsconfig-paths-npm-3.15.0-ff68930e0e-59f35407a3.zip similarity index 69% rename from .yarn/cache/tsconfig-paths-npm-3.14.2-90ce75420d-a6162eaa1a.zip rename to .yarn/cache/tsconfig-paths-npm-3.15.0-ff68930e0e-59f35407a3.zip index 0b76788258..abfe8dd47e 100644 Binary files a/.yarn/cache/tsconfig-paths-npm-3.14.2-90ce75420d-a6162eaa1a.zip and b/.yarn/cache/tsconfig-paths-npm-3.15.0-ff68930e0e-59f35407a3.zip differ diff --git a/.yarn/cache/vite-npm-4.5.0-6fb40946d7-06f1a4c858.zip b/.yarn/cache/vite-npm-4.5.1-567bbcf9ff-72b3584b3d.zip similarity index 61% rename from .yarn/cache/vite-npm-4.5.0-6fb40946d7-06f1a4c858.zip rename to .yarn/cache/vite-npm-4.5.1-567bbcf9ff-72b3584b3d.zip index 3c0f689f94..f26c6ea104 100644 Binary files a/.yarn/cache/vite-npm-4.5.0-6fb40946d7-06f1a4c858.zip and b/.yarn/cache/vite-npm-4.5.1-567bbcf9ff-72b3584b3d.zip differ diff --git a/.yarn/cache/vue-eslint-parser-npm-9.3.1-a0feb51670-6d1476b45f.zip b/.yarn/cache/vue-eslint-parser-npm-9.3.1-a0feb51670-6d1476b45f.zip deleted file mode 100644 index 82eadd1443..0000000000 Binary files a/.yarn/cache/vue-eslint-parser-npm-9.3.1-a0feb51670-6d1476b45f.zip and /dev/null differ diff --git a/.yarn/cache/vue-eslint-parser-npm-9.4.0-9f9ee7131a-b53d05d3ba.zip b/.yarn/cache/vue-eslint-parser-npm-9.4.0-9f9ee7131a-b53d05d3ba.zip new file mode 100644 index 0000000000..ab19b7c6f3 Binary files /dev/null and b/.yarn/cache/vue-eslint-parser-npm-9.4.0-9f9ee7131a-b53d05d3ba.zip differ diff --git a/.yarn/cache/vue-npm-3.3.7-6f764474d4-463599d2a5.zip b/.yarn/cache/vue-npm-3.3.7-6f764474d4-463599d2a5.zip deleted file mode 100644 index c1406a0878..0000000000 Binary files a/.yarn/cache/vue-npm-3.3.7-6f764474d4-463599d2a5.zip and /dev/null differ diff --git a/.yarn/cache/vue-npm-3.4.13-668436a4a7-c9f8edf5fc.zip b/.yarn/cache/vue-npm-3.4.13-668436a4a7-c9f8edf5fc.zip new file mode 100644 index 0000000000..e9c802d0ac Binary files /dev/null and b/.yarn/cache/vue-npm-3.4.13-668436a4a7-c9f8edf5fc.zip differ diff --git a/.yarn/cache/vueuc-npm-0.4.51-794074113f-7969659fac.zip b/.yarn/cache/vueuc-npm-0.4.58-be5584770c-fb0b9a69be.zip similarity index 66% rename from .yarn/cache/vueuc-npm-0.4.51-794074113f-7969659fac.zip rename to .yarn/cache/vueuc-npm-0.4.58-be5584770c-fb0b9a69be.zip index 4a273f8340..f62e5e32e8 100644 Binary files a/.yarn/cache/vueuc-npm-0.4.51-794074113f-7969659fac.zip and b/.yarn/cache/vueuc-npm-0.4.58-be5584770c-fb0b9a69be.zip differ diff --git a/dev/INSTALL b/dev/INSTALL index 15c7472972..9a8004010d 100644 --- a/dev/INSTALL +++ b/dev/INSTALL @@ -62,9 +62,11 @@ General Instructions for Deployment of a New Release docker-compose down - 9. Stop the datatracker + 9. Stop the datatracker and remove the web link so cron or other applications + don't run code in the older deployment. sudo systemctl stop datatracker.socket datatracker.service + rm /a/www/ietf-datatracker/web 10. Return to the release directory and run migrations as wwwrun: @@ -77,7 +79,7 @@ General Instructions for Deployment of a New Release 11. Back out one directory level, then re-point the 'web' symlink:: cd .. - rm ./web; ln -s ${releasenumber} web + ln -s ${releasenumber} web 12. Start the datatracker service (it is no longer necessary to restart apache) :: diff --git a/dev/coverage-action/package-lock.json b/dev/coverage-action/package-lock.json index 53ceb53d48..a968d69adb 100644 --- a/dev/coverage-action/package-lock.json +++ b/dev/coverage-action/package-lock.json @@ -11,18 +11,18 @@ "dependencies": { "@actions/core": "1.10.1", "@actions/github": "6.0.0", - "chart.js": "3.5.1", + "chart.js": "3.9.1", "chartjs-node-canvas": "4.1.6", "lodash": "4.17.21", "luxon": "3.4.4" }, "devDependencies": { - "eslint": "8.53.0", + "eslint": "8.56.0", "eslint-config-standard": "17.1.0", - "eslint-plugin-import": "2.29.0", + "eslint-plugin-import": "2.29.1", "eslint-plugin-node": "11.1.0", "eslint-plugin-promise": "6.1.1", - "npm-check-updates": "16.14.6" + "npm-check-updates": "16.14.12" } }, "node_modules/@aashutoshrathi/word-wrap": { @@ -98,9 +98,9 @@ } }, "node_modules/@eslint/eslintrc": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.3.tgz", - "integrity": "sha512-yZzuIG+jnVu6hNSzFEN07e8BxF3uAzYtQb6uDkaYZLo6oYZDCq454c5kB8zxnzfCYyP4MIuyBn10L0DqwujTmA==", + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.4.tgz", + "integrity": "sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==", "dev": true, "dependencies": { "ajv": "^6.12.4", @@ -121,9 +121,9 @@ } }, "node_modules/@eslint/js": { - "version": "8.53.0", - "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.53.0.tgz", - "integrity": "sha512-Kn7K8dx/5U6+cT1yEhpX1w4PCSg0M+XyRILPgvwcEBjerFWCwQj5sbr3/VmxqV0JGHCBCzyd6LxypEuehypY1w==", + "version": "8.56.0", + "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.56.0.tgz", + "integrity": "sha512-gMsVel9D7f2HLkBma9VbtzZRehRogVRfbr++f06nL2vnCGCNlzOD+/MUov/F4p8myyAHspEhVobgjpX64q5m6A==", "dev": true, "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" @@ -737,9 +737,9 @@ "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==" }, "node_modules/acorn": { - "version": "8.11.2", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.11.2.tgz", - "integrity": "sha512-nc0Axzp/0FILLEVsm4fNwLCwMttvhEI263QtVPQcbpfZZ3ts0hLsZGOpE6czNlid7CJ9MlyH8reXkpsf3YUY4w==", + "version": "8.11.3", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.11.3.tgz", + "integrity": "sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==", "dev": true, "bin": { "acorn": "bin/acorn" @@ -1341,9 +1341,9 @@ } }, "node_modules/chart.js": { - "version": "3.5.1", - "resolved": "https://registry.npmjs.org/chart.js/-/chart.js-3.5.1.tgz", - "integrity": "sha512-m5kzt72I1WQ9LILwQC4syla/LD/N413RYv2Dx2nnTkRS9iv/ey1xLTt0DnPc/eWV4zI+BgEgDYBIzbQhZHc/PQ==" + "version": "3.9.1", + "resolved": "https://registry.npmjs.org/chart.js/-/chart.js-3.9.1.tgz", + "integrity": "sha512-Ro2JbLmvg83gXF5F4sniaQ+lTbSv18E+TIf2cOeiH1Iqd2PGFOtem+DUufMZsCJwFE7ywPOpfXFBwRTGq7dh6w==" }, "node_modules/chartjs-node-canvas": { "version": "4.1.6", @@ -1841,15 +1841,15 @@ } }, "node_modules/eslint": { - "version": "8.53.0", - "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.53.0.tgz", - "integrity": "sha512-N4VuiPjXDUa4xVeV/GC/RV3hQW9Nw+Y463lkWaKKXKYMvmRiRDAtfpuPFLN+E1/6ZhyR8J2ig+eVREnYgUsiag==", + "version": "8.56.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.56.0.tgz", + "integrity": "sha512-Go19xM6T9puCOWntie1/P997aXxFsOi37JIHRWI514Hc6ZnaHGKY9xFhrU65RT6CcBEzZoGG1e6Nq+DT04ZtZQ==", "dev": true, "dependencies": { "@eslint-community/eslint-utils": "^4.2.0", "@eslint-community/regexpp": "^4.6.1", - "@eslint/eslintrc": "^2.1.3", - "@eslint/js": "8.53.0", + "@eslint/eslintrc": "^2.1.4", + "@eslint/js": "8.56.0", "@humanwhocodes/config-array": "^0.11.13", "@humanwhocodes/module-importer": "^1.0.1", "@nodelib/fs.walk": "^1.2.8", @@ -1990,9 +1990,9 @@ } }, "node_modules/eslint-plugin-import": { - "version": "2.29.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.29.0.tgz", - "integrity": "sha512-QPOO5NO6Odv5lpoTkddtutccQjysJuFxoPS7fAHO+9m9udNHvTCPSAMW9zGAYj8lAIdr40I8yPCdUYrncXtrwg==", + "version": "2.29.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.29.1.tgz", + "integrity": "sha512-BbPC0cuExzhiMo4Ff1BTVwHpjjv28C5R+btTOGaCRC7UEz801up0JadwkeSk5Ued6TG34uaczuVuH6qyy5YUxw==", "dev": true, "dependencies": { "array-includes": "^3.1.7", @@ -2011,7 +2011,7 @@ "object.groupby": "^1.0.1", "object.values": "^1.1.7", "semver": "^6.3.1", - "tsconfig-paths": "^3.14.2" + "tsconfig-paths": "^3.15.0" }, "engines": { "node": ">=4" @@ -2666,9 +2666,9 @@ } }, "node_modules/globals": { - "version": "13.23.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.23.0.tgz", - "integrity": "sha512-XAmF0RjlrjY23MA51q3HltdlGxUpXPvg0GioKiD9X6HD28iMjo2dKC8Vqwm7lne4GNr78+RHTfliktR6ZH09wA==", + "version": "13.24.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", + "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", "dev": true, "dependencies": { "type-fest": "^0.20.2" @@ -4079,9 +4079,9 @@ } }, "node_modules/npm-check-updates": { - "version": "16.14.6", - "resolved": "https://registry.npmjs.org/npm-check-updates/-/npm-check-updates-16.14.6.tgz", - "integrity": "sha512-sJ6w4AmSDP7YzBXah94Ul2JhiIbjBDfx9XYgib15um2wtiQkOyjE7Lov3MNUSQ84Ry7T81mE4ynMbl/mGbK4HQ==", + "version": "16.14.12", + "resolved": "https://registry.npmjs.org/npm-check-updates/-/npm-check-updates-16.14.12.tgz", + "integrity": "sha512-5FvqaDX8AqWWTDQFbBllgLwoRXTvzlqVIRSKl9Kg8bYZTfNwMnrp1Zlmb5e/ocf11UjPTc+ShBFjYQ7kg6FL0w==", "dev": true, "dependencies": { "chalk": "^5.3.0", @@ -5710,9 +5710,9 @@ "integrity": "sha1-gYT9NH2snNwYWZLzpmIuFLnZq2o=" }, "node_modules/tsconfig-paths": { - "version": "3.14.2", - "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.14.2.tgz", - "integrity": "sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g==", + "version": "3.15.0", + "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.15.0.tgz", + "integrity": "sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==", "dev": true, "dependencies": { "@types/json5": "^0.0.29", @@ -6349,9 +6349,9 @@ "dev": true }, "@eslint/eslintrc": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.3.tgz", - "integrity": "sha512-yZzuIG+jnVu6hNSzFEN07e8BxF3uAzYtQb6uDkaYZLo6oYZDCq454c5kB8zxnzfCYyP4MIuyBn10L0DqwujTmA==", + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.4.tgz", + "integrity": "sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==", "dev": true, "requires": { "ajv": "^6.12.4", @@ -6366,9 +6366,9 @@ } }, "@eslint/js": { - "version": "8.53.0", - "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.53.0.tgz", - "integrity": "sha512-Kn7K8dx/5U6+cT1yEhpX1w4PCSg0M+XyRILPgvwcEBjerFWCwQj5sbr3/VmxqV0JGHCBCzyd6LxypEuehypY1w==", + "version": "8.56.0", + "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.56.0.tgz", + "integrity": "sha512-gMsVel9D7f2HLkBma9VbtzZRehRogVRfbr++f06nL2vnCGCNlzOD+/MUov/F4p8myyAHspEhVobgjpX64q5m6A==", "dev": true }, "@fastify/busboy": { @@ -6828,9 +6828,9 @@ "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==" }, "acorn": { - "version": "8.11.2", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.11.2.tgz", - "integrity": "sha512-nc0Axzp/0FILLEVsm4fNwLCwMttvhEI263QtVPQcbpfZZ3ts0hLsZGOpE6czNlid7CJ9MlyH8reXkpsf3YUY4w==", + "version": "8.11.3", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.11.3.tgz", + "integrity": "sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==", "dev": true }, "acorn-jsx": { @@ -7263,9 +7263,9 @@ } }, "chart.js": { - "version": "3.5.1", - "resolved": "https://registry.npmjs.org/chart.js/-/chart.js-3.5.1.tgz", - "integrity": "sha512-m5kzt72I1WQ9LILwQC4syla/LD/N413RYv2Dx2nnTkRS9iv/ey1xLTt0DnPc/eWV4zI+BgEgDYBIzbQhZHc/PQ==" + "version": "3.9.1", + "resolved": "https://registry.npmjs.org/chart.js/-/chart.js-3.9.1.tgz", + "integrity": "sha512-Ro2JbLmvg83gXF5F4sniaQ+lTbSv18E+TIf2cOeiH1Iqd2PGFOtem+DUufMZsCJwFE7ywPOpfXFBwRTGq7dh6w==" }, "chartjs-node-canvas": { "version": "4.1.6", @@ -7631,15 +7631,15 @@ "dev": true }, "eslint": { - "version": "8.53.0", - "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.53.0.tgz", - "integrity": "sha512-N4VuiPjXDUa4xVeV/GC/RV3hQW9Nw+Y463lkWaKKXKYMvmRiRDAtfpuPFLN+E1/6ZhyR8J2ig+eVREnYgUsiag==", + "version": "8.56.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.56.0.tgz", + "integrity": "sha512-Go19xM6T9puCOWntie1/P997aXxFsOi37JIHRWI514Hc6ZnaHGKY9xFhrU65RT6CcBEzZoGG1e6Nq+DT04ZtZQ==", "dev": true, "requires": { "@eslint-community/eslint-utils": "^4.2.0", "@eslint-community/regexpp": "^4.6.1", - "@eslint/eslintrc": "^2.1.3", - "@eslint/js": "8.53.0", + "@eslint/eslintrc": "^2.1.4", + "@eslint/js": "8.56.0", "@humanwhocodes/config-array": "^0.11.13", "@humanwhocodes/module-importer": "^1.0.1", "@nodelib/fs.walk": "^1.2.8", @@ -7747,9 +7747,9 @@ } }, "eslint-plugin-import": { - "version": "2.29.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.29.0.tgz", - "integrity": "sha512-QPOO5NO6Odv5lpoTkddtutccQjysJuFxoPS7fAHO+9m9udNHvTCPSAMW9zGAYj8lAIdr40I8yPCdUYrncXtrwg==", + "version": "2.29.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.29.1.tgz", + "integrity": "sha512-BbPC0cuExzhiMo4Ff1BTVwHpjjv28C5R+btTOGaCRC7UEz801up0JadwkeSk5Ued6TG34uaczuVuH6qyy5YUxw==", "dev": true, "requires": { "array-includes": "^3.1.7", @@ -7768,7 +7768,7 @@ "object.groupby": "^1.0.1", "object.values": "^1.1.7", "semver": "^6.3.1", - "tsconfig-paths": "^3.14.2" + "tsconfig-paths": "^3.15.0" }, "dependencies": { "debug": { @@ -8228,9 +8228,9 @@ } }, "globals": { - "version": "13.23.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.23.0.tgz", - "integrity": "sha512-XAmF0RjlrjY23MA51q3HltdlGxUpXPvg0GioKiD9X6HD28iMjo2dKC8Vqwm7lne4GNr78+RHTfliktR6ZH09wA==", + "version": "13.24.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", + "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", "dev": true, "requires": { "type-fest": "^0.20.2" @@ -9249,9 +9249,9 @@ } }, "npm-check-updates": { - "version": "16.14.6", - "resolved": "https://registry.npmjs.org/npm-check-updates/-/npm-check-updates-16.14.6.tgz", - "integrity": "sha512-sJ6w4AmSDP7YzBXah94Ul2JhiIbjBDfx9XYgib15um2wtiQkOyjE7Lov3MNUSQ84Ry7T81mE4ynMbl/mGbK4HQ==", + "version": "16.14.12", + "resolved": "https://registry.npmjs.org/npm-check-updates/-/npm-check-updates-16.14.12.tgz", + "integrity": "sha512-5FvqaDX8AqWWTDQFbBllgLwoRXTvzlqVIRSKl9Kg8bYZTfNwMnrp1Zlmb5e/ocf11UjPTc+ShBFjYQ7kg6FL0w==", "dev": true, "requires": { "chalk": "^5.3.0", @@ -10407,9 +10407,9 @@ "integrity": "sha1-gYT9NH2snNwYWZLzpmIuFLnZq2o=" }, "tsconfig-paths": { - "version": "3.14.2", - "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.14.2.tgz", - "integrity": "sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g==", + "version": "3.15.0", + "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.15.0.tgz", + "integrity": "sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==", "dev": true, "requires": { "@types/json5": "^0.0.29", diff --git a/dev/coverage-action/package.json b/dev/coverage-action/package.json index b5279df694..4ed77a4730 100644 --- a/dev/coverage-action/package.json +++ b/dev/coverage-action/package.json @@ -8,17 +8,17 @@ "dependencies": { "@actions/core": "1.10.1", "@actions/github": "6.0.0", - "chart.js": "3.5.1", + "chart.js": "3.9.1", "chartjs-node-canvas": "4.1.6", "lodash": "4.17.21", "luxon": "3.4.4" }, "devDependencies": { - "eslint": "8.53.0", + "eslint": "8.56.0", "eslint-config-standard": "17.1.0", - "eslint-plugin-import": "2.29.0", + "eslint-plugin-import": "2.29.1", "eslint-plugin-node": "11.1.0", "eslint-plugin-promise": "6.1.1", - "npm-check-updates": "16.14.6" + "npm-check-updates": "16.14.12" } } diff --git a/dev/deploy-to-container/cli.js b/dev/deploy-to-container/cli.js index a22c746ae2..f6b243d4e3 100644 --- a/dev/deploy-to-container/cli.js +++ b/dev/deploy-to-container/cli.js @@ -175,6 +175,9 @@ async function main () { Image: 'ghcr.io/ietf-tools/datatracker-db:latest', name: `dt-db-${branch}`, Hostname: `dt-db-${branch}`, + Labels: { + ...argv.nodbrefresh === 'true' && { nodbrefresh: '1' } + }, HostConfig: { NetworkMode: 'shared', RestartPolicy: { @@ -194,6 +197,9 @@ async function main () { Env: [ `CELERY_PASSWORD=${mqKey}` ], + Labels: { + ...argv.nodbrefresh === 'true' && { nodbrefresh: '1' } + }, HostConfig: { Memory: 4 * (1024 ** 3), // in bytes NetworkMode: 'shared', @@ -222,6 +228,9 @@ async function main () { `CELERY_ROLE=${conConf.role}`, 'UPDATE_REQUIREMENTS_FROM=requirements.txt' ], + Labels: { + ...argv.nodbrefresh === 'true' && { nodbrefresh: '1' } + }, HostConfig: { Binds: [ 'dt-assets:/assets', @@ -254,7 +263,8 @@ async function main () { appversion: `${argv.appversion}` ?? '0.0.0', commit: `${argv.commit}` ?? 'unknown', ghrunid: `${argv.ghrunid}` ?? '0', - hostname + hostname, + ...argv.nodbrefresh === 'true' && { nodbrefresh: '1' } }, HostConfig: { Binds: [ diff --git a/dev/deploy-to-container/package-lock.json b/dev/deploy-to-container/package-lock.json index 7ea0235073..6ef15a2b79 100644 --- a/dev/deploy-to-container/package-lock.json +++ b/dev/deploy-to-container/package-lock.json @@ -6,9 +6,9 @@ "": { "name": "deploy-to-container", "dependencies": { - "dockerode": "^4.0.0", - "fs-extra": "^11.1.1", - "nanoid": "5.0.3", + "dockerode": "^4.0.2", + "fs-extra": "^11.2.0", + "nanoid": "5.0.4", "nanoid-dictionary": "5.0.0-beta.1", "slugify": "1.6.6", "tar": "^6.2.0", @@ -154,26 +154,26 @@ } }, "node_modules/docker-modem": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/docker-modem/-/docker-modem-5.0.1.tgz", - "integrity": "sha512-vqrE/nrweCyzmCpVpdFRC41qS+tfTF+IoUKlTZr52O82urbUqdfyJBGWMvT01pYUprWepLr8IkyVTEWJKRTQSg==", + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/docker-modem/-/docker-modem-5.0.3.tgz", + "integrity": "sha512-89zhop5YVhcPEt5FpUFGr3cDyceGhq/F9J+ZndQ4KfqNvfbJpPMfgeixFgUj5OjCYAboElqODxY5Z1EBsSa6sg==", "dependencies": { "debug": "^4.1.1", "readable-stream": "^3.5.0", "split-ca": "^1.0.1", - "ssh2": "^1.11.0" + "ssh2": "^1.15.0" }, "engines": { "node": ">= 8.0" } }, "node_modules/dockerode": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/dockerode/-/dockerode-4.0.0.tgz", - "integrity": "sha512-3LF7/3MPz5+9RsUo91rD0MCcx0yxjC9bnbtgtVjOLKyKxlZSJ7/Kk3OPAgARlwlWHqXwAGYhmkAHYx7IwD0tJQ==", + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/dockerode/-/dockerode-4.0.2.tgz", + "integrity": "sha512-9wM1BVpVMFr2Pw3eJNXrYYt6DT9k0xMcsSCjtPvyQ+xa1iPg/Mo3T/gUcwI0B2cczqCeCYRPF8yFYDwtFXT0+w==", "dependencies": { "@balena/dockerignore": "^1.0.2", - "docker-modem": "^5.0.0", + "docker-modem": "^5.0.3", "tar-fs": "~2.0.1" }, "engines": { @@ -207,9 +207,9 @@ "integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==" }, "node_modules/fs-extra": { - "version": "11.1.1", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.1.1.tgz", - "integrity": "sha512-MGIE4HOvQCeUCzmlHs0vXpih4ysz4wg9qiSAu6cd42lVwPbTM1TjV7RusoyQqMmk/95gdQZX72u+YW+c3eEpFQ==", + "version": "11.2.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.2.0.tgz", + "integrity": "sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==", "dependencies": { "graceful-fs": "^4.2.0", "jsonfile": "^6.0.1", @@ -337,9 +337,9 @@ "optional": true }, "node_modules/nanoid": { - "version": "5.0.3", - "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-5.0.3.tgz", - "integrity": "sha512-I7X2b22cxA4LIHXPSqbBCEQSL+1wv8TuoefejsX4HFWyC6jc5JG7CEaxOltiKjc1M+YCS2YkrZZcj4+dytw9GA==", + "version": "5.0.4", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-5.0.4.tgz", + "integrity": "sha512-vAjmBf13gsmhXSgBrtIclinISzFFy22WwCYoyilZlsrRXNIHSwgFQ1bEdjRwMT3aoadeIF6HMuDRlOxzfXV8ig==", "funding": [ { "type": "github", @@ -434,9 +434,9 @@ "integrity": "sha512-Q5thBSxp5t8WPTTJQS59LrGqOZqOsrhDGDVm8azCqIBjSBd7nd9o2PM+mDulQQkh8h//4U6hFZnc/mul8t5pWQ==" }, "node_modules/ssh2": { - "version": "1.14.0", - "resolved": "https://registry.npmjs.org/ssh2/-/ssh2-1.14.0.tgz", - "integrity": "sha512-AqzD1UCqit8tbOKoj6ztDDi1ffJZ2rV2SwlgrVVrHPkV5vWqGJOVp5pmtj18PunkPJAuKQsnInyKV+/Nb2bUnA==", + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/ssh2/-/ssh2-1.15.0.tgz", + "integrity": "sha512-C0PHgX4h6lBxYx7hcXwu3QWdh4tg6tZZsTfXcdvc5caW/EMxaB4H9dWsl7qk+F7LAW762hp8VbXOX7x4xUYvEw==", "hasInstallScript": true, "dependencies": { "asn1": "^0.2.6", @@ -446,8 +446,8 @@ "node": ">=10.16.0" }, "optionalDependencies": { - "cpu-features": "~0.0.8", - "nan": "^2.17.0" + "cpu-features": "~0.0.9", + "nan": "^2.18.0" } }, "node_modules/string_decoder": { @@ -744,23 +744,23 @@ } }, "docker-modem": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/docker-modem/-/docker-modem-5.0.1.tgz", - "integrity": "sha512-vqrE/nrweCyzmCpVpdFRC41qS+tfTF+IoUKlTZr52O82urbUqdfyJBGWMvT01pYUprWepLr8IkyVTEWJKRTQSg==", + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/docker-modem/-/docker-modem-5.0.3.tgz", + "integrity": "sha512-89zhop5YVhcPEt5FpUFGr3cDyceGhq/F9J+ZndQ4KfqNvfbJpPMfgeixFgUj5OjCYAboElqODxY5Z1EBsSa6sg==", "requires": { "debug": "^4.1.1", "readable-stream": "^3.5.0", "split-ca": "^1.0.1", - "ssh2": "^1.11.0" + "ssh2": "^1.15.0" } }, "dockerode": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/dockerode/-/dockerode-4.0.0.tgz", - "integrity": "sha512-3LF7/3MPz5+9RsUo91rD0MCcx0yxjC9bnbtgtVjOLKyKxlZSJ7/Kk3OPAgARlwlWHqXwAGYhmkAHYx7IwD0tJQ==", + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/dockerode/-/dockerode-4.0.2.tgz", + "integrity": "sha512-9wM1BVpVMFr2Pw3eJNXrYYt6DT9k0xMcsSCjtPvyQ+xa1iPg/Mo3T/gUcwI0B2cczqCeCYRPF8yFYDwtFXT0+w==", "requires": { "@balena/dockerignore": "^1.0.2", - "docker-modem": "^5.0.0", + "docker-modem": "^5.0.3", "tar-fs": "~2.0.1" } }, @@ -788,9 +788,9 @@ "integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==" }, "fs-extra": { - "version": "11.1.1", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.1.1.tgz", - "integrity": "sha512-MGIE4HOvQCeUCzmlHs0vXpih4ysz4wg9qiSAu6cd42lVwPbTM1TjV7RusoyQqMmk/95gdQZX72u+YW+c3eEpFQ==", + "version": "11.2.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.2.0.tgz", + "integrity": "sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==", "requires": { "graceful-fs": "^4.2.0", "jsonfile": "^6.0.1", @@ -878,9 +878,9 @@ "optional": true }, "nanoid": { - "version": "5.0.3", - "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-5.0.3.tgz", - "integrity": "sha512-I7X2b22cxA4LIHXPSqbBCEQSL+1wv8TuoefejsX4HFWyC6jc5JG7CEaxOltiKjc1M+YCS2YkrZZcj4+dytw9GA==" + "version": "5.0.4", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-5.0.4.tgz", + "integrity": "sha512-vAjmBf13gsmhXSgBrtIclinISzFFy22WwCYoyilZlsrRXNIHSwgFQ1bEdjRwMT3aoadeIF6HMuDRlOxzfXV8ig==" }, "nanoid-dictionary": { "version": "5.0.0-beta.1", @@ -940,14 +940,14 @@ "integrity": "sha512-Q5thBSxp5t8WPTTJQS59LrGqOZqOsrhDGDVm8azCqIBjSBd7nd9o2PM+mDulQQkh8h//4U6hFZnc/mul8t5pWQ==" }, "ssh2": { - "version": "1.14.0", - "resolved": "https://registry.npmjs.org/ssh2/-/ssh2-1.14.0.tgz", - "integrity": "sha512-AqzD1UCqit8tbOKoj6ztDDi1ffJZ2rV2SwlgrVVrHPkV5vWqGJOVp5pmtj18PunkPJAuKQsnInyKV+/Nb2bUnA==", + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/ssh2/-/ssh2-1.15.0.tgz", + "integrity": "sha512-C0PHgX4h6lBxYx7hcXwu3QWdh4tg6tZZsTfXcdvc5caW/EMxaB4H9dWsl7qk+F7LAW762hp8VbXOX7x4xUYvEw==", "requires": { "asn1": "^0.2.6", "bcrypt-pbkdf": "^1.0.2", - "cpu-features": "~0.0.8", - "nan": "^2.17.0" + "cpu-features": "~0.0.9", + "nan": "^2.18.0" } }, "string_decoder": { diff --git a/dev/deploy-to-container/package.json b/dev/deploy-to-container/package.json index 509e578663..575268bbf8 100644 --- a/dev/deploy-to-container/package.json +++ b/dev/deploy-to-container/package.json @@ -2,9 +2,9 @@ "name": "deploy-to-container", "type": "module", "dependencies": { - "dockerode": "^4.0.0", - "fs-extra": "^11.1.1", - "nanoid": "5.0.3", + "dockerode": "^4.0.2", + "fs-extra": "^11.2.0", + "nanoid": "5.0.4", "nanoid-dictionary": "5.0.0-beta.1", "slugify": "1.6.6", "tar": "^6.2.0", diff --git a/dev/deploy-to-container/refresh.js b/dev/deploy-to-container/refresh.js index 827d85de6c..7ea13c885a 100644 --- a/dev/deploy-to-container/refresh.js +++ b/dev/deploy-to-container/refresh.js @@ -24,7 +24,8 @@ async function main () { const containersToRestart = [] for (const container of containers) { if ( - container.Names.some(n => n.startsWith('/dt-db-')) + container.Names.some(n => n.startsWith('/dt-db-')) && + container.Labels?.nodbrefresh !== '1' ) { console.info(`Terminating DB container ${container.Id}...`) dbContainersToCreate.push(container.Names.find(n => n.startsWith('/dt-db-')).substring(1)) @@ -37,9 +38,11 @@ async function main () { v: true }) } else if ( - container.Names.some(n => n.startsWith('/dt-app-')) || - container.Names.some(n => n.startsWith('/dt-celery-')) || - container.Names.some(n => n.startsWith('/dt-beat-')) + ( + container.Names.some(n => n.startsWith('/dt-app-')) || + container.Names.some(n => n.startsWith('/dt-celery-')) || + container.Names.some(n => n.startsWith('/dt-beat-')) + ) && container.Labels?.nodbrefresh !== '1' ) { if (container.State === 'running') { const appContainer = dock.getContainer(container.Id) diff --git a/dev/deploy/collectstatics.sh b/dev/deploy/collectstatics.sh new file mode 100644 index 0000000000..0d1c683ded --- /dev/null +++ b/dev/deploy/collectstatics.sh @@ -0,0 +1,9 @@ +#!/bin/bash + +cp dev/deploy/settings_local_collectstatics.py ietf/settings_local.py + +# Install Python dependencies +pip --disable-pip-version-check --no-cache-dir install -r requirements.txt + +# Collect statics +ietf/manage.py collectstatic \ No newline at end of file diff --git a/dev/deploy/settings_local_collectstatics.py b/dev/deploy/settings_local_collectstatics.py new file mode 100644 index 0000000000..016b3f934a --- /dev/null +++ b/dev/deploy/settings_local_collectstatics.py @@ -0,0 +1,8 @@ +# Copyright The IETF Trust 2007-2019, All Rights Reserved +# -*- coding: utf-8 -*- + +from ietf import __version__ +from ietf.settings import * # pyflakes:ignore + +STATIC_URL = "https://static.ietf.org/dt/%s/"%__version__ +STATIC_ROOT = os.path.abspath(BASE_DIR + "/../static/") diff --git a/dev/diff/package-lock.json b/dev/diff/package-lock.json index 1cd1632063..b8f007baf1 100644 --- a/dev/diff/package-lock.json +++ b/dev/diff/package-lock.json @@ -7,10 +7,10 @@ "name": "diff", "dependencies": { "chalk": "^5.3.0", - "dockerode": "^4.0.0", + "dockerode": "^4.0.2", "enquirer": "^2.4.1", "extract-zip": "^2.0.1", - "fs-extra": "^11.1.1", + "fs-extra": "^11.2.0", "got": "^13.0.0", "keypress": "^0.2.1", "listr2": "^6.6.1", @@ -381,26 +381,26 @@ } }, "node_modules/docker-modem": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/docker-modem/-/docker-modem-5.0.1.tgz", - "integrity": "sha512-vqrE/nrweCyzmCpVpdFRC41qS+tfTF+IoUKlTZr52O82urbUqdfyJBGWMvT01pYUprWepLr8IkyVTEWJKRTQSg==", + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/docker-modem/-/docker-modem-5.0.3.tgz", + "integrity": "sha512-89zhop5YVhcPEt5FpUFGr3cDyceGhq/F9J+ZndQ4KfqNvfbJpPMfgeixFgUj5OjCYAboElqODxY5Z1EBsSa6sg==", "dependencies": { "debug": "^4.1.1", "readable-stream": "^3.5.0", "split-ca": "^1.0.1", - "ssh2": "^1.11.0" + "ssh2": "^1.15.0" }, "engines": { "node": ">= 8.0" } }, "node_modules/dockerode": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/dockerode/-/dockerode-4.0.0.tgz", - "integrity": "sha512-3LF7/3MPz5+9RsUo91rD0MCcx0yxjC9bnbtgtVjOLKyKxlZSJ7/Kk3OPAgARlwlWHqXwAGYhmkAHYx7IwD0tJQ==", + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/dockerode/-/dockerode-4.0.2.tgz", + "integrity": "sha512-9wM1BVpVMFr2Pw3eJNXrYYt6DT9k0xMcsSCjtPvyQ+xa1iPg/Mo3T/gUcwI0B2cczqCeCYRPF8yFYDwtFXT0+w==", "dependencies": { "@balena/dockerignore": "^1.0.2", - "docker-modem": "^5.0.0", + "docker-modem": "^5.0.3", "tar-fs": "~2.0.1" }, "engines": { @@ -505,9 +505,9 @@ "integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==" }, "node_modules/fs-extra": { - "version": "11.1.1", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.1.1.tgz", - "integrity": "sha512-MGIE4HOvQCeUCzmlHs0vXpih4ysz4wg9qiSAu6cd42lVwPbTM1TjV7RusoyQqMmk/95gdQZX72u+YW+c3eEpFQ==", + "version": "11.2.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.2.0.tgz", + "integrity": "sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==", "dependencies": { "graceful-fs": "^4.2.0", "jsonfile": "^6.0.1", @@ -1144,9 +1144,9 @@ "integrity": "sha512-Q5thBSxp5t8WPTTJQS59LrGqOZqOsrhDGDVm8azCqIBjSBd7nd9o2PM+mDulQQkh8h//4U6hFZnc/mul8t5pWQ==" }, "node_modules/ssh2": { - "version": "1.14.0", - "resolved": "https://registry.npmjs.org/ssh2/-/ssh2-1.14.0.tgz", - "integrity": "sha512-AqzD1UCqit8tbOKoj6ztDDi1ffJZ2rV2SwlgrVVrHPkV5vWqGJOVp5pmtj18PunkPJAuKQsnInyKV+/Nb2bUnA==", + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/ssh2/-/ssh2-1.15.0.tgz", + "integrity": "sha512-C0PHgX4h6lBxYx7hcXwu3QWdh4tg6tZZsTfXcdvc5caW/EMxaB4H9dWsl7qk+F7LAW762hp8VbXOX7x4xUYvEw==", "hasInstallScript": true, "dependencies": { "asn1": "^0.2.6", @@ -1156,8 +1156,8 @@ "node": ">=10.16.0" }, "optionalDependencies": { - "cpu-features": "~0.0.8", - "nan": "^2.17.0" + "cpu-features": "~0.0.9", + "nan": "^2.18.0" } }, "node_modules/string_decoder": { @@ -1621,23 +1621,23 @@ "integrity": "sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==" }, "docker-modem": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/docker-modem/-/docker-modem-5.0.1.tgz", - "integrity": "sha512-vqrE/nrweCyzmCpVpdFRC41qS+tfTF+IoUKlTZr52O82urbUqdfyJBGWMvT01pYUprWepLr8IkyVTEWJKRTQSg==", + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/docker-modem/-/docker-modem-5.0.3.tgz", + "integrity": "sha512-89zhop5YVhcPEt5FpUFGr3cDyceGhq/F9J+ZndQ4KfqNvfbJpPMfgeixFgUj5OjCYAboElqODxY5Z1EBsSa6sg==", "requires": { "debug": "^4.1.1", "readable-stream": "^3.5.0", "split-ca": "^1.0.1", - "ssh2": "^1.11.0" + "ssh2": "^1.15.0" } }, "dockerode": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/dockerode/-/dockerode-4.0.0.tgz", - "integrity": "sha512-3LF7/3MPz5+9RsUo91rD0MCcx0yxjC9bnbtgtVjOLKyKxlZSJ7/Kk3OPAgARlwlWHqXwAGYhmkAHYx7IwD0tJQ==", + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/dockerode/-/dockerode-4.0.2.tgz", + "integrity": "sha512-9wM1BVpVMFr2Pw3eJNXrYYt6DT9k0xMcsSCjtPvyQ+xa1iPg/Mo3T/gUcwI0B2cczqCeCYRPF8yFYDwtFXT0+w==", "requires": { "@balena/dockerignore": "^1.0.2", - "docker-modem": "^5.0.0", + "docker-modem": "^5.0.3", "tar-fs": "~2.0.1" } }, @@ -1718,9 +1718,9 @@ "integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==" }, "fs-extra": { - "version": "11.1.1", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.1.1.tgz", - "integrity": "sha512-MGIE4HOvQCeUCzmlHs0vXpih4ysz4wg9qiSAu6cd42lVwPbTM1TjV7RusoyQqMmk/95gdQZX72u+YW+c3eEpFQ==", + "version": "11.2.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.2.0.tgz", + "integrity": "sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==", "requires": { "graceful-fs": "^4.2.0", "jsonfile": "^6.0.1", @@ -2136,14 +2136,14 @@ "integrity": "sha512-Q5thBSxp5t8WPTTJQS59LrGqOZqOsrhDGDVm8azCqIBjSBd7nd9o2PM+mDulQQkh8h//4U6hFZnc/mul8t5pWQ==" }, "ssh2": { - "version": "1.14.0", - "resolved": "https://registry.npmjs.org/ssh2/-/ssh2-1.14.0.tgz", - "integrity": "sha512-AqzD1UCqit8tbOKoj6ztDDi1ffJZ2rV2SwlgrVVrHPkV5vWqGJOVp5pmtj18PunkPJAuKQsnInyKV+/Nb2bUnA==", + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/ssh2/-/ssh2-1.15.0.tgz", + "integrity": "sha512-C0PHgX4h6lBxYx7hcXwu3QWdh4tg6tZZsTfXcdvc5caW/EMxaB4H9dWsl7qk+F7LAW762hp8VbXOX7x4xUYvEw==", "requires": { "asn1": "^0.2.6", "bcrypt-pbkdf": "^1.0.2", - "cpu-features": "~0.0.8", - "nan": "^2.17.0" + "cpu-features": "~0.0.9", + "nan": "^2.18.0" } }, "string_decoder": { diff --git a/dev/diff/package.json b/dev/diff/package.json index 4d1a562a06..cd59f2655d 100644 --- a/dev/diff/package.json +++ b/dev/diff/package.json @@ -3,10 +3,10 @@ "type": "module", "dependencies": { "chalk": "^5.3.0", - "dockerode": "^4.0.0", + "dockerode": "^4.0.2", "enquirer": "^2.4.1", "extract-zip": "^2.0.1", - "fs-extra": "^11.1.1", + "fs-extra": "^11.2.0", "got": "^13.0.0", "keypress": "^0.2.1", "listr2": "^6.6.1", diff --git a/ietf/doc/models.py b/ietf/doc/models.py index e53717cb7d..536e3e3493 100644 --- a/ietf/doc/models.py +++ b/ietf/doc/models.py @@ -83,7 +83,7 @@ class State(models.Model): desc = models.TextField(blank=True) order = models.IntegerField(default=0) - next_states = models.ManyToManyField('State', related_name="previous_states", blank=True) + next_states = models.ManyToManyField('doc.State', related_name="previous_states", blank=True) def __str__(self): return self.name diff --git a/ietf/doc/templatetags/ietf_filters.py b/ietf/doc/templatetags/ietf_filters.py index 8d9336b536..cfed7aa1db 100644 --- a/ietf/doc/templatetags/ietf_filters.py +++ b/ietf/doc/templatetags/ietf_filters.py @@ -539,6 +539,10 @@ def ics_date_time(dt, tzname): return f':{timestamp}Z' else: return f';TZID={ics_esc(tzname)}:{timestamp}' + +@register.filter +def next_day(value): + return value + datetime.timedelta(days=1) @register.filter diff --git a/ietf/doc/tests.py b/ietf/doc/tests.py index 0b5a651060..63953876aa 100644 --- a/ietf/doc/tests.py +++ b/ietf/doc/tests.py @@ -840,6 +840,10 @@ def test_document_draft(self): updated_by = IndividualRfcFactory() updated_by.relateddocument_set.create(relationship_id='updates',target=rfc) + r = self.client.get(urlreverse("ietf.doc.views_doc.document_main", kwargs=dict(name=draft.name, rev=draft.rev))) + self.assertEqual(r.status_code, 200) + self.assertContains(r, "This is an older version of an Internet-Draft that was ultimately published as") + r = self.client.get(urlreverse("ietf.doc.views_doc.document_main", kwargs=dict(name=draft.name))) self.assertEqual(r.status_code, 302) diff --git a/ietf/doc/utils_search.py b/ietf/doc/utils_search.py index 5a6a43a63b..8e89139e31 100644 --- a/ietf/doc/utils_search.py +++ b/ietf/doc/utils_search.py @@ -181,7 +181,7 @@ def augment_docs_with_related_docs_info(docs): originalDoc = d.related_that_doc('conflrev')[0] d.pages = originalDoc.pages -def prepare_document_table(request, docs, query=None, max_results=200): +def prepare_document_table(request, docs, query=None, max_results=200, show_ad_and_shepherd=True): """Take a queryset of documents and a QueryDict with sorting info and return list of documents with attributes filled in for displaying a full table of information about the documents, plus @@ -259,12 +259,14 @@ def num(i): if len(docs) == max_results: meta['max'] = max_results - meta['headers'] = [{'title': 'Document', 'key':'document'}, - {'title': 'Title', 'key':'title'}, - {'title': 'Date', 'key':'date'}, - {'title': 'Status', 'key':'status'}, - {'title': 'IPR', 'key':'ipr'}, - {'title': 'AD / Shepherd', 'key':'ad'}] + meta['headers'] = [{'title': 'Document', 'key': 'document'}, + {'title': 'Title', 'key': 'title'}, + {'title': 'Date', 'key': 'date'}, + {'title': 'Status', 'key': 'status'}, + {'title': 'IPR', 'key': 'ipr'}] + if show_ad_and_shepherd: + meta['headers'].append({'title': 'AD / Shepherd', 'key': 'ad'}) + meta['show_ad_and_shepherd'] = show_ad_and_shepherd if query and hasattr(query, "urlencode"): # fed a Django QueryDict d = query.copy() diff --git a/ietf/doc/views_search.py b/ietf/doc/views_search.py index 964894bff9..422e38f7dd 100644 --- a/ietf/doc/views_search.py +++ b/ietf/doc/views_search.py @@ -39,7 +39,9 @@ import copy import operator +from collections import defaultdict from functools import reduce + from django import forms from django.conf import settings from django.core.cache import cache, caches @@ -360,32 +362,52 @@ def cached_redirect(cache_key, url): return cached_redirect(cache_key, urlreverse('ietf.doc.views_search.search') + search_args) -def state_name(doc_type, state, shorten=True): - name = "" - # Note doc_type rfc here is _not_ necessarily Document.type - for some callers - # it is a type derived from draft... The ad_workload view needs more rework so that - # the code isn't having to shadow-box so much. - if doc_type == "rfc": - if state == "rfc": - name = "RFC" - if name == "": - s = State.objects.filter(type="rfc",slug=state).first() - if s: - name = s.name - if name == "": - name = State.objects.get(type__in=["draft", "draft-iesg"], slug=state).name - elif doc_type == "draft" and state not in ["rfc", "expired"]: - name = State.objects.get(type__in=["draft", "draft-iesg"], slug=state).name - elif doc_type == "draft" and state == "rfc": - name = "RFC" - elif doc_type == "conflrev" and state.startswith("appr"): - name = "Approved" - else: - name = State.objects.get(type=doc_type, slug=state).name +def get_state_name_calculator(): + """Get a function to calculate state names + + Queries the database once when called, then uses cached look-up table for name calculations. + """ + # state_lut always has at least rfc, draft, and draft-iesg keys + state_lut = defaultdict(dict, **{"rfc": {}, "draft":{}, "draft-iesg": {}}) + for state in State.objects.filter(used=True): + state_lut[state.type_id][state.slug] = state.name + state_lut = dict(state_lut) # convert to dict to freeze key changes + + def _get_state_name(doc_type, state_slug): + """Get display name for a doc type / state slug + + Note doc_type rfc here is _not_ necessarily Document.type - for some callers + it is a type derived from draft... The ad_workload view needs more rework so that + the code isn't having to shadow-box so much. + """ + if doc_type == "rfc": + if state_slug == "rfc": + return "RFC" + elif state_slug in state_lut["rfc"]: + return state_lut["rfc"][state_slug] + else: + return state_lut["draft"].get( + state_slug, + state_lut["draft-iesg"][state_slug], + ) + elif doc_type == "draft" and state_slug not in ["rfc", "expired"]: + return state_lut["draft"].get( + state_slug, + state_lut["draft-iesg"][state_slug], + ) + elif doc_type == "draft" and state_slug == "rfc": + return "RFC" + elif doc_type == "conflrev" and state_slug.startswith("appr"): + return "Approved" + else: + return state_lut[doc_type][state_slug] + + # return the function as a closure + return _get_state_name - if not shorten: - return name +def shorten_state_name(name): + """Get abbreviated display name for a state""" for pat, sub in [ (r" \(Internal Steering Group/IAB Review\)", ""), ("Writeup", "Write-up"), @@ -412,31 +434,27 @@ def state_name(doc_type, state, shorten=True): (r"\(Message to Community, Selected by Secretariat\)", ""), ]: name = re.sub(pat, sub, name) - return name.strip() -STATE_SLUGS = { - dt: {state_name(dt, ds, shorten=False): ds for ds in AD_WORKLOAD[dt]} # type: ignore - for dt in AD_WORKLOAD -} - - -def state_to_doc_type(state): - for dt in STATE_SLUGS: - if state in STATE_SLUGS[dt]: - return dt - return None - - -IESG_STATES = State.objects.filter(type="draft-iesg").values_list("name", flat=True) - - def date_to_bucket(date, now, num_buckets): return num_buckets - int((now.date() - date.date()).total_seconds() / 60 / 60 / 24) def ad_workload(request): + _calculate_state_name = get_state_name_calculator() + IESG_STATES = State.objects.filter(type="draft-iesg").values_list("name", flat=True) + STATE_SLUGS = { + dt: {_calculate_state_name(dt, ds): ds for ds in AD_WORKLOAD[dt]} # type: ignore + for dt in AD_WORKLOAD.keys() + } + + def _state_to_doc_type(state): + for dt in STATE_SLUGS: + if state in STATE_SLUGS[dt]: + return dt + return None + # number of days (= buckets) to show in the graphs days = 120 if has_role(request.user, ["Area Director", "Secretariat"]) else 1 now = timezone.now() @@ -483,7 +501,7 @@ def ad_workload(request): to_state = None if dt == "charter": if e.type == "closed_ballot": - to_state = state_name(dt, state, shorten=False) + to_state = _calculate_state_name(dt, state) elif e.desc.endswith("has been replaced"): # stop tracking last = e.time @@ -512,7 +530,7 @@ def ad_workload(request): to_state = "RFC" if dt == "rfc": - new_dt = state_to_doc_type(to_state) + new_dt = _state_to_doc_type(to_state) if new_dt is not None and new_dt != dt: dt = new_dt @@ -549,7 +567,9 @@ def ad_workload(request): metadata = [ { "type": (dt, doc_type_name(dt)), - "states": [(state, state_name(dt, state)) for state in ad.buckets[dt]], + "states": [ + (state, shorten_state_name(_calculate_state_name(dt, state))) for state in ad.buckets[dt] + ], "ads": ads, } for dt in AD_WORKLOAD @@ -591,9 +611,10 @@ def sort_key(doc): if not ad: raise Http404 - results, meta = prepare_document_table(request, Document.objects.filter(ad=ad)) + results, meta = prepare_document_table( + request, Document.objects.filter(ad=ad), max_results=500, show_ad_and_shepherd=False + ) results.sort(key=lambda d: sort_key(d)) - del meta["headers"][-1] # filter out some results results = [ @@ -611,13 +632,15 @@ def sort_key(doc): and ( r.get_state_slug("draft-iesg") == "dead" or r.get_state_slug("draft") == "repl" + or r.get_state_slug("draft") == "rfc" ) ) ] + _calculate_state_name = get_state_name_calculator() for d in results: dt = d.type.slug - d.search_heading = state_name(dt, doc_state(d), shorten=False) + d.search_heading = _calculate_state_name(dt, doc_state(d)) if d.search_heading != "RFC": d.search_heading += f" {doc_type_name(dt)}" @@ -690,7 +713,7 @@ def sort_key(doc): { "docs": results, "meta": meta, - "ad_name": ad.name, + "ad": ad, "blocked_docs": blocked_docs, "not_balloted_docs": not_balloted_docs, }, diff --git a/ietf/group/migrations/0004_modern_list_archive.py b/ietf/group/migrations/0004_modern_list_archive.py new file mode 100644 index 0000000000..91c2fd23e2 --- /dev/null +++ b/ietf/group/migrations/0004_modern_list_archive.py @@ -0,0 +1,24 @@ +# Copyright The IETF Trust 2023, All Rights Reserved + +from django.conf import settings +from django.db import migrations +from django.db.models import Value +from django.db.models.functions import Replace + + +def forward(apps, schema_editor): + Group = apps.get_model("group", "Group") + old_pattern = f"{settings.MAILING_LIST_ARCHIVE_URL}/arch/search/?email_list=" + new_pattern = f"{settings.MAILING_LIST_ARCHIVE_URL}/arch/browse/" + + Group.objects.filter(list_archive__startswith=old_pattern).update( + list_archive=Replace("list_archive", Value(old_pattern), Value(new_pattern)) + ) + + +class Migration(migrations.Migration): + dependencies = [ + ("group", "0003_iabworkshops"), + ] + + operations = [migrations.RunPython(forward)] diff --git a/ietf/ipr/models.py b/ietf/ipr/models.py index a3c917747e..693f19abe9 100644 --- a/ietf/ipr/models.py +++ b/ietf/ipr/models.py @@ -16,11 +16,11 @@ class IprDisclosureBase(models.Model): by = ForeignKey(Person) # who was logged in, or System if nobody was logged in compliant = models.BooleanField("Complies to RFC3979", default=True) - docs = models.ManyToManyField(Document, through='IprDocRel') + docs = models.ManyToManyField(Document, through='ipr.IprDocRel') holder_legal_name = models.CharField(max_length=255) notes = models.TextField("Additional notes", blank=True) other_designations = models.CharField("Designations for other contributions", blank=True, max_length=255) - rel = models.ManyToManyField('self', through='RelatedIpr', symmetrical=False) + rel = models.ManyToManyField('self', through='ipr.RelatedIpr', symmetrical=False) state = ForeignKey(IprDisclosureStateName) submitter_name = models.CharField(max_length=255,blank=True) submitter_email = models.EmailField(blank=True) diff --git a/ietf/liaisons/models.py b/ietf/liaisons/models.py index 6302bea779..f357d6cf8c 100644 --- a/ietf/liaisons/models.py +++ b/ietf/liaisons/models.py @@ -44,7 +44,7 @@ class LiaisonStatement(models.Model): body = models.TextField(blank=True) tags = models.ManyToManyField(LiaisonStatementTagName, blank=True) - attachments = models.ManyToManyField(Document, through='LiaisonStatementAttachment', blank=True) + attachments = models.ManyToManyField(Document, through='liaisons.LiaisonStatementAttachment', blank=True) state = ForeignKey(LiaisonStatementState, default='pending') class Meta: diff --git a/ietf/mailtrigger/models.py b/ietf/mailtrigger/models.py index 1cf84033b3..aea530083a 100644 --- a/ietf/mailtrigger/models.py +++ b/ietf/mailtrigger/models.py @@ -36,8 +36,8 @@ def clean_duplicates(addrlist): class MailTrigger(models.Model): slug = models.CharField(max_length=64, primary_key=True) desc = models.TextField(blank=True) - to = models.ManyToManyField('Recipient', blank=True, related_name='used_in_to') - cc = models.ManyToManyField('Recipient', blank=True, related_name='used_in_cc') + to = models.ManyToManyField('mailtrigger.Recipient', blank=True, related_name='used_in_to') + cc = models.ManyToManyField('mailtrigger.Recipient', blank=True, related_name='used_in_cc') class Meta: ordering = ["slug"] diff --git a/ietf/meeting/models.py b/ietf/meeting/models.py index 20fa9cf1bb..11a9982283 100644 --- a/ietf/meeting/models.py +++ b/ietf/meeting/models.py @@ -569,7 +569,7 @@ class TimeSlot(models.Model): duration = models.DurationField(default=datetime.timedelta(0)) location = ForeignKey(Room, blank=True, null=True) show_location = models.BooleanField(default=True, help_text="Show location in agenda.") - sessions = models.ManyToManyField('Session', related_name='slots', through='SchedTimeSessAssignment', blank=True, help_text="Scheduled session, if any.") + sessions = models.ManyToManyField('meeting.Session', related_name='slots', through='meeting.SchedTimeSessAssignment', blank=True, help_text="Scheduled session, if any.") modified = models.DateTimeField(auto_now=True) # diff --git a/ietf/meeting/urls.py b/ietf/meeting/urls.py index d7a623899e..7c79a80257 100644 --- a/ietf/meeting/urls.py +++ b/ietf/meeting/urls.py @@ -79,7 +79,6 @@ def get_redirect_url(self, *args, **kwargs): url(r'^agenda.json$', views.agenda_json), url(r'^agenda/week-view(?:.html)?/?$', AgendaRedirectView.as_view(pattern_name='agenda', permanent=True)), url(r'^floor-plan/?$', views.agenda, name='floor-plan'), - url(r'^floor-plan/(?P[-a-z0-9_]+)/?$', RedirectView.as_view(pattern_name='floor-plan', permanent=True)), url(r'^week-view(?:.html)?/?$', AgendaRedirectView.as_view(pattern_name='agenda', permanent=True)), url(r'^materials(?:.html)?/?$', views.materials), url(r'^request_minutes/?$', views.request_minutes), diff --git a/ietf/meeting/views.py b/ietf/meeting/views.py index 9d07df103e..eae9b145e8 100644 --- a/ietf/meeting/views.py +++ b/ietf/meeting/views.py @@ -970,6 +970,7 @@ def cubehelix(i, total, hue=1.2, start_angle=0.5): 'rtg' : { 'dark' : (222, 219, 124) , 'light' : (247, 247, 233) }, 'sec' : { 'dark' : (0, 114, 178) , 'light' : (245, 252, 248) }, 'tsv' : { 'dark' : (117,201,119) , 'light' : (251, 252, 255) }, + 'wit' : { 'dark' : (117,201,119) , 'light' : (251, 252, 255) }, # intentionally the same as tsv } for i, p in enumerate(session_parents): if p.acronym in liz_preferred_colors: diff --git a/ietf/name/models.py b/ietf/name/models.py index 9bedd6cc2b..d4d53def87 100644 --- a/ietf/name/models.py +++ b/ietf/name/models.py @@ -101,7 +101,7 @@ class DraftSubmissionStateName(NameModel): """Uploaded, Awaiting Submitter Authentication, Awaiting Approval from Previous Version Authors, Awaiting Initial Version Approval, Awaiting Manual Post, Cancelled, Posted""" - next_states = models.ManyToManyField('DraftSubmissionStateName', related_name="previous_states", blank=True) + next_states = models.ManyToManyField('name.DraftSubmissionStateName', related_name="previous_states", blank=True) class RoomResourceName(NameModel): "Room resources: Audio Stream, Meetecho, . . ." class IprDisclosureStateName(NameModel): diff --git a/ietf/nomcom/models.py b/ietf/nomcom/models.py index 51006a227e..b514f4fb1f 100644 --- a/ietf/nomcom/models.py +++ b/ietf/nomcom/models.py @@ -148,7 +148,7 @@ class Nominee(models.Model): email = ForeignKey(Email) person = ForeignKey(Person, blank=True, null=True) - nominee_position = models.ManyToManyField('Position', through='NomineePosition') + nominee_position = models.ManyToManyField('nomcom.Position', through='nomcom.NomineePosition') duplicated = ForeignKey('Nominee', blank=True, null=True) nomcom = ForeignKey('NomCom') @@ -293,9 +293,9 @@ def get_description(self): class Feedback(models.Model): nomcom = ForeignKey('NomCom') author = models.EmailField(verbose_name='Author', blank=True) - positions = models.ManyToManyField('Position', blank=True) - nominees = models.ManyToManyField('Nominee', blank=True) - topics = models.ManyToManyField('Topic', blank=True) + positions = models.ManyToManyField('nomcom.Position', blank=True) + nominees = models.ManyToManyField('nomcom.Nominee', blank=True) + topics = models.ManyToManyField('nomcom.Topic', blank=True) subject = models.TextField(verbose_name='Subject', blank=True) comments = models.BinaryField(verbose_name='Comments') type = ForeignKey(FeedbackTypeName, blank=True, null=True) diff --git a/ietf/static/css/custom-bs-import.scss b/ietf/static/css/custom-bs-import.scss index e124b56875..644efdcf10 100644 --- a/ietf/static/css/custom-bs-import.scss +++ b/ietf/static/css/custom-bs-import.scss @@ -46,6 +46,9 @@ $h4-font-size: $font-size-base * 1.4; $h5-font-size: $font-size-base * 1.2; $h6-font-size: $font-size-base; +// Default is gray-800, which is the same as the range slider background. +$light-bg-subtle-dark: mix($gray-800, $black); + @import "bootstrap/scss/maps"; @import "bootstrap/scss/mixins"; @import "bootstrap/scss/utilities"; diff --git a/ietf/templates/base/menu.html b/ietf/templates/base/menu.html index 714c98b57d..5a0ba2ba5d 100644 --- a/ietf/templates/base/menu.html +++ b/ietf/templates/base/menu.html @@ -140,7 +140,7 @@
  • - {{ g.acronym }} {{ g.type.slug }} docs + {{ g.acronym }} {{ g.type_id }} docs
  • {% endfor %} @@ -309,7 +309,7 @@
  • - {{ g.acronym }} {{ g.type.slug }} meetings + {{ g.acronym }} {{ g.type_id }} meetings
  • {% endfor %} diff --git a/ietf/templates/doc/document_draft.html b/ietf/templates/doc/document_draft.html index 6eeacfc387..8d9abf284f 100644 --- a/ietf/templates/doc/document_draft.html +++ b/ietf/templates/doc/document_draft.html @@ -31,7 +31,7 @@ {% if doc.rev != latest_rev %}
    The information below is for an old version of the document.
    {% else %} - {% if doc.type_id == "rfc" and snapshot %} + {% if doc.became_rfc %}
    The information below is for an old version of the document that is already published as an RFC.
    @@ -751,7 +751,7 @@ {% endfor %} {% endif %} - {% if doc.get_state_slug == "active" or doc.type_id == "rfc" %} + {% if doc.get_state_slug == "active" or doc.type_id == "rfc" or doc.became_rfc %}
    {% if doc.type_id == "rfc" and not snapshot %} diff --git a/ietf/templates/doc/document_info.html b/ietf/templates/doc/document_info.html index 61b1574337..e30656e165 100644 --- a/ietf/templates/doc/document_info.html +++ b/ietf/templates/doc/document_info.html @@ -1,4 +1,4 @@ -{# Copyright The IETF Trust 2016-2020, All Rights Reserved #} +{# Copyright The IETF Trust 2016-2023, All Rights Reserved #} {% load origin %} {% load static %} {% load ietf_filters %} @@ -60,8 +60,8 @@
    {% endif %} {% else %} - {% if snapshot and doc.doc.became_rfc %} - This is an older version of an Internet-Draft that was ultimately published as {{doc.doc.became_rfc.name|prettystdname}}.
    + {% if doc.became_rfc %} + This is an older version of an Internet-Draft that was ultimately published as {{doc.became_rfc.name|prettystdname}}. {% elif snapshot and doc.rev != latest_rev %} This is an older version of an Internet-Draft whose latest revision state is "{{ doc.doc.get_state }}". {% else %} @@ -70,7 +70,7 @@ {% if resurrected_by %}- resurrect requested by {{ resurrected_by }}{% endif %} {% endif %} {% endif %} - {% if doc.get_state_slug != "active" and doc.type_id != "rfc" %} + {% if doc.get_state_slug != "active" and doc.get_state_slug != "rfc" and doc.type_id != "rfc" %}
    Expired & archived
    @@ -431,7 +431,7 @@ {% endfor %} {% if doc.group and doc.group.list_archive %} {% if doc.group.list_archive|startswith:settings.MAILING_LIST_ARCHIVE_URL %} - + Mailing list discussion {% elif doc.group.list_archive|is_valid_url %} diff --git a/ietf/templates/doc/drafts_for_ad.html b/ietf/templates/doc/drafts_for_ad.html index 28ebb2225b..18e5960e81 100644 --- a/ietf/templates/doc/drafts_for_ad.html +++ b/ietf/templates/doc/drafts_for_ad.html @@ -6,13 +6,13 @@ {% block pagehead %} {% endblock %} -{% block title %}Documents for {{ ad_name }}{% endblock %} +{% block title %}Documents for {{ ad.name }}{% endblock %} {% block content %} {% origin %} -

    Documents for {{ ad_name }}

    +

    Documents for {{ ad.name }}

    IESG dashboard {% if blocked_docs %} -

    Blocking positions held by {{ ad_name }}

    +

    Blocking positions held by {{ ad.name }}

    @@ -54,7 +54,7 @@

    Blocking positions held by {{ ad_name }}

    {% endif %} {% if not_balloted_docs %} -

    Missing ballot positions for {{ ad_name }}

    +

    Missing ballot positions for {{ ad.name }}

    @@ -80,7 +80,7 @@

    Missing ballot positions for {{ ad_name }}

    {% endif %} -

    Documents for {{ ad_name }}

    +

    Documents for {{ ad.name }}

    {% include "doc/search/search_results.html" with start_table=True end_table=True %} {% endblock %} {% block js %} diff --git a/ietf/templates/doc/search/search_result_row.html b/ietf/templates/doc/search/search_result_row.html index 57ad1f01a0..c273153466 100644 --- a/ietf/templates/doc/search/search_result_row.html +++ b/ietf/templates/doc/search/search_result_row.html @@ -142,7 +142,7 @@ {% endif %} - {% if ad_name == None or ad_name != doc.ad.plain_name %} + {% if show_ad_and_shepherd %} {% if doc.ad %} {% person_link doc.ad title="Area Director" %} diff --git a/ietf/templates/doc/search/search_results.html b/ietf/templates/doc/search/search_results.html index 7a1e149a58..bd6b072f0d 100644 --- a/ietf/templates/doc/search/search_results.html +++ b/ietf/templates/doc/search/search_results.html @@ -55,7 +55,7 @@ {% for doc in doc_group.list %} - {% include "doc/search/search_result_row.html" %} + {% include "doc/search/search_result_row.html" with show_ad_and_shepherd=meta.show_ad_and_shepherd %} {% endfor %} {% endfor %} diff --git a/ietf/templates/iesg/agenda_documents.html b/ietf/templates/iesg/agenda_documents.html index c388c16baf..80dd9956fa 100644 --- a/ietf/templates/iesg/agenda_documents.html +++ b/ietf/templates/iesg/agenda_documents.html @@ -55,7 +55,7 @@

    {% for doc in section.docs %} - {% include "doc/search/search_result_row.html" with color_ad_position=True %} + {% include "doc/search/search_result_row.html" with color_ad_position=True show_ad_and_shepherd=True %} {% endfor %} diff --git a/ietf/templates/meeting/upcoming.ics b/ietf/templates/meeting/upcoming.ics index fb5b37d772..5eca7ec81d 100644 --- a/ietf/templates/meeting/upcoming.ics +++ b/ietf/templates/meeting/upcoming.ics @@ -25,7 +25,7 @@ SUMMARY:IETF {{ meeting.number }}{% if meeting.city %} LOCATION:{{ meeting.city }},{{ meeting.country }}{% endif %} CLASS:PUBLIC DTSTART;VALUE=DATE{% if meeting.time_zone %};TZID={{ meeting.time_zone|ics_esc }}{% endif %}:{{ meeting.date|date:"Ymd" }} -DTEND;VALUE=DATE{% if meeting.time_zone %};TZID={{ meeting.time_zone|ics_esc }}{% endif %}:{{ meeting.end_date|date:"Ymd" }} +DTEND;VALUE=DATE{% if meeting.time_zone %};TZID={{ meeting.time_zone|ics_esc }}{% endif %}:{{ meeting.end_date|next_day|date:"Ymd" }} DTSTAMP{% ics_date_time meeting.cached_updated|utc 'utc' %} URL:{{ request.scheme }}://{{ request.get_host }}{% url 'agenda' num=meeting.number %} END:VEVENT diff --git a/ietf/utils/test_runner.py b/ietf/utils/test_runner.py index 5901da8060..49d53e1e1d 100644 --- a/ietf/utils/test_runner.py +++ b/ietf/utils/test_runner.py @@ -891,6 +891,10 @@ def setup_test_environment(self, **kwargs): "form-dup-name": "off", # Don't trip over unused disable blocks "no-unused-disable": "off", + # Ignore focusable elements in aria-hidden elements + "hidden-focusable": "off", + # Ignore missing unique identifier for page "landmarks" + "unique-landmark": "off", }, } diff --git a/package.json b/package.json index a87d5ac131..4d6ad2fb87 100644 --- a/package.json +++ b/package.json @@ -7,36 +7,36 @@ "legacy:build": "parcel build" }, "dependencies": { - "@fullcalendar/bootstrap5": "6.1.9", - "@fullcalendar/core": "6.1.9", - "@fullcalendar/daygrid": "6.1.9", - "@fullcalendar/icalendar": "6.1.9", - "@fullcalendar/interaction": "6.1.9", - "@fullcalendar/list": "6.1.9", - "@fullcalendar/luxon3": "6.1.9", - "@fullcalendar/timegrid": "6.1.9", - "@fullcalendar/vue3": "6.1.9", + "@fullcalendar/bootstrap5": "6.1.10", + "@fullcalendar/core": "6.1.10", + "@fullcalendar/daygrid": "6.1.10", + "@fullcalendar/icalendar": "6.1.10", + "@fullcalendar/interaction": "6.1.10", + "@fullcalendar/list": "6.1.10", + "@fullcalendar/luxon3": "6.1.10", + "@fullcalendar/timegrid": "6.1.10", + "@fullcalendar/vue3": "6.1.10", "@popperjs/core": "2.11.8", "@twuni/emojify": "1.0.2", "bootstrap": "5.3.2", - "bootstrap-icons": "1.11.1", + "bootstrap-icons": "1.11.3", "browser-fs-access": "0.35.0", - "caniuse-lite": "1.0.30001538", + "caniuse-lite": "1.0.30001576", "d3": "7.8.5", "file-saver": "2.0.5", - "highcharts": "11.1.0", + "highcharts": "11.3.0", "ical.js": "1.5.0", "jquery": "3.7.1", "js-cookie": "3.0.5", "list.js": "2.3.1", "lodash": "4.17.21", "lodash-es": "4.17.21", - "luxon": "3.4.3", - "moment": "2.29.4", - "moment-timezone": "0.5.43", + "luxon": "3.4.4", + "moment": "2.30.1", + "moment-timezone": "0.5.44", "ms": "2.1.3", "murmurhash-js": "1.0.0", - "naive-ui": "2.35.0", + "naive-ui": "2.37.3", "pinia": "2.1.7", "pinia-plugin-persist": "1.0.0", "select2": "4.1.0-rc.0", @@ -44,35 +44,35 @@ "send": "0.18.0", "shepherd.js": "11.2.0", "slugify": "1.6.6", - "sortablejs": "1.15.0", + "sortablejs": "1.15.2", "vanillajs-datepicker": "1.3.4", - "vue": "3.3.7", + "vue": "3.4.13", "vue-router": "4.2.5", "zxcvbn": "4.4.2" }, "devDependencies": { - "@parcel/optimizer-data-url": "2.10.0", - "@parcel/transformer-inline-string": "2.10.0", - "@parcel/transformer-sass": "2.10.0", - "@rollup/pluginutils": "5.0.5", - "@vitejs/plugin-vue": "4.4.0", + "@parcel/optimizer-data-url": "2.11.0", + "@parcel/transformer-inline-string": "2.11.0", + "@parcel/transformer-sass": "2.11.0", + "@rollup/pluginutils": "5.1.0", + "@vitejs/plugin-vue": "4.6.2", "browserlist": "latest", - "c8": "8.0.1", - "eslint": "8.52.0", + "c8": "9.1.0", + "eslint": "8.56.0", "eslint-config-standard": "17.1.0", "eslint-plugin-cypress": "2.15.1", - "eslint-plugin-import": "2.29.0", - "eslint-plugin-n": "16.2.0", + "eslint-plugin-import": "2.29.1", + "eslint-plugin-n": "16.6.2", "eslint-plugin-node": "11.1.0", "eslint-plugin-promise": "6.1.1", - "eslint-plugin-vue": "9.18.1", - "html-validate": "8.7.0", + "eslint-plugin-vue": "9.20.1", + "html-validate": "8.9.1", "jquery-migrate": "3.4.1", - "parcel": "2.10.0", + "parcel": "2.11.0", "pug": "3.0.2", - "sass": "1.69.4", + "sass": "1.69.7", "seedrandom": "3.0.5", - "vite": "4.5.0" + "vite": "4.5.1" }, "targets": { "ietf": { diff --git a/playwright/package-lock.json b/playwright/package-lock.json index 815c884b16..f7ae6e8ddc 100644 --- a/playwright/package-lock.json +++ b/playwright/package-lock.json @@ -6,7 +6,7 @@ "packages": { "": { "dependencies": { - "@faker-js/faker": "8.2.0", + "@faker-js/faker": "8.3.1", "lodash": "4.17.21", "lodash-es": "4.17.21", "luxon": "3.4.4", @@ -15,14 +15,14 @@ "slugify": "1.6.6" }, "devDependencies": { - "@playwright/test": "1.39.0", - "eslint": "8.53.0", + "@playwright/test": "1.40.1", + "eslint": "8.56.0", "eslint-config-standard": "17.1.0", - "eslint-plugin-import": "2.29.0", - "eslint-plugin-n": "16.3.1", + "eslint-plugin-import": "2.29.1", + "eslint-plugin-n": "16.6.2", "eslint-plugin-node": "11.1.0", "eslint-plugin-promise": "6.1.1", - "npm-check-updates": "16.14.6" + "npm-check-updates": "16.14.12" } }, "node_modules/@aashutoshrathi/word-wrap": { @@ -69,9 +69,9 @@ } }, "node_modules/@eslint/eslintrc": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.3.tgz", - "integrity": "sha512-yZzuIG+jnVu6hNSzFEN07e8BxF3uAzYtQb6uDkaYZLo6oYZDCq454c5kB8zxnzfCYyP4MIuyBn10L0DqwujTmA==", + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.4.tgz", + "integrity": "sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==", "dev": true, "dependencies": { "ajv": "^6.12.4", @@ -92,18 +92,18 @@ } }, "node_modules/@eslint/js": { - "version": "8.53.0", - "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.53.0.tgz", - "integrity": "sha512-Kn7K8dx/5U6+cT1yEhpX1w4PCSg0M+XyRILPgvwcEBjerFWCwQj5sbr3/VmxqV0JGHCBCzyd6LxypEuehypY1w==", + "version": "8.56.0", + "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.56.0.tgz", + "integrity": "sha512-gMsVel9D7f2HLkBma9VbtzZRehRogVRfbr++f06nL2vnCGCNlzOD+/MUov/F4p8myyAHspEhVobgjpX64q5m6A==", "dev": true, "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" } }, "node_modules/@faker-js/faker": { - "version": "8.2.0", - "resolved": "https://registry.npmjs.org/@faker-js/faker/-/faker-8.2.0.tgz", - "integrity": "sha512-VacmzZqVxdWdf9y64lDOMZNDMM/FQdtM9IsaOPKOm2suYwEatb8VkdHqOzXcDnZbk7YDE2BmsJmy/2Hmkn563g==", + "version": "8.3.1", + "resolved": "https://registry.npmjs.org/@faker-js/faker/-/faker-8.3.1.tgz", + "integrity": "sha512-FdgpFxY6V6rLZE9mmIBb9hM0xpfvQOSNOLnzolzKwsE1DH+gC7lEKV1p1IbR0lAYyvYd5a4u3qWJzowUkw1bIw==", "funding": [ { "type": "opencollective", @@ -399,12 +399,12 @@ } }, "node_modules/@playwright/test": { - "version": "1.39.0", - "resolved": "https://registry.npmjs.org/@playwright/test/-/test-1.39.0.tgz", - "integrity": "sha512-3u1iFqgzl7zr004bGPYiN/5EZpRUSFddQBra8Rqll5N0/vfpqlP9I9EXqAoGacuAbX6c9Ulg/Cjqglp5VkK6UQ==", + "version": "1.40.1", + "resolved": "https://registry.npmjs.org/@playwright/test/-/test-1.40.1.tgz", + "integrity": "sha512-EaaawMTOeEItCRvfmkI9v6rBkF1svM8wjl/YPRrg2N2Wmp+4qJYkWtJsbew1szfKKDm6fPLy4YAanBhIlf9dWw==", "dev": true, "dependencies": { - "playwright": "1.39.0" + "playwright": "1.40.1" }, "bin": { "playwright": "cli.js" @@ -576,9 +576,9 @@ "dev": true }, "node_modules/acorn": { - "version": "8.11.2", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.11.2.tgz", - "integrity": "sha512-nc0Axzp/0FILLEVsm4fNwLCwMttvhEI263QtVPQcbpfZZ3ts0hLsZGOpE6czNlid7CJ9MlyH8reXkpsf3YUY4w==", + "version": "8.11.3", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.11.3.tgz", + "integrity": "sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==", "dev": true, "bin": { "acorn": "bin/acorn" @@ -1637,15 +1637,15 @@ } }, "node_modules/eslint": { - "version": "8.53.0", - "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.53.0.tgz", - "integrity": "sha512-N4VuiPjXDUa4xVeV/GC/RV3hQW9Nw+Y463lkWaKKXKYMvmRiRDAtfpuPFLN+E1/6ZhyR8J2ig+eVREnYgUsiag==", + "version": "8.56.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.56.0.tgz", + "integrity": "sha512-Go19xM6T9puCOWntie1/P997aXxFsOi37JIHRWI514Hc6ZnaHGKY9xFhrU65RT6CcBEzZoGG1e6Nq+DT04ZtZQ==", "dev": true, "dependencies": { "@eslint-community/eslint-utils": "^4.2.0", "@eslint-community/regexpp": "^4.6.1", - "@eslint/eslintrc": "^2.1.3", - "@eslint/js": "8.53.0", + "@eslint/eslintrc": "^2.1.4", + "@eslint/js": "8.56.0", "@humanwhocodes/config-array": "^0.11.13", "@humanwhocodes/module-importer": "^1.0.1", "@nodelib/fs.walk": "^1.2.8", @@ -1691,6 +1691,18 @@ "url": "https://opencollective.com/eslint" } }, + "node_modules/eslint-compat-utils": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/eslint-compat-utils/-/eslint-compat-utils-0.1.2.tgz", + "integrity": "sha512-Jia4JDldWnFNIru1Ehx1H5s9/yxiRHY/TimCuUc0jNexew3cF1gI6CYZil1ociakfWO3rRqFjl1mskBblB3RYg==", + "dev": true, + "engines": { + "node": ">=12" + }, + "peerDependencies": { + "eslint": ">=6.0.0" + } + }, "node_modules/eslint-config-standard": { "version": "17.1.0", "resolved": "https://registry.npmjs.org/eslint-config-standard/-/eslint-config-standard-17.1.0.tgz", @@ -1767,13 +1779,14 @@ } }, "node_modules/eslint-plugin-es-x": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-es-x/-/eslint-plugin-es-x-7.1.0.tgz", - "integrity": "sha512-AhiaF31syh4CCQ+C5ccJA0VG6+kJK8+5mXKKE7Qs1xcPRg02CDPOj3mWlQxuWS/AYtg7kxrDNgW9YW3vc0Q+Mw==", + "version": "7.5.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-es-x/-/eslint-plugin-es-x-7.5.0.tgz", + "integrity": "sha512-ODswlDSO0HJDzXU0XvgZ3lF3lS3XAZEossh15Q2UHjwrJggWeBoKqqEsLTZLXl+dh5eOAozG0zRcYtuE35oTuQ==", "dev": true, "dependencies": { "@eslint-community/eslint-utils": "^4.1.2", - "@eslint-community/regexpp": "^4.5.0" + "@eslint-community/regexpp": "^4.6.0", + "eslint-compat-utils": "^0.1.2" }, "engines": { "node": "^14.18.0 || >=16.0.0" @@ -1786,9 +1799,9 @@ } }, "node_modules/eslint-plugin-import": { - "version": "2.29.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.29.0.tgz", - "integrity": "sha512-QPOO5NO6Odv5lpoTkddtutccQjysJuFxoPS7fAHO+9m9udNHvTCPSAMW9zGAYj8lAIdr40I8yPCdUYrncXtrwg==", + "version": "2.29.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.29.1.tgz", + "integrity": "sha512-BbPC0cuExzhiMo4Ff1BTVwHpjjv28C5R+btTOGaCRC7UEz801up0JadwkeSk5Ued6TG34uaczuVuH6qyy5YUxw==", "dev": true, "dependencies": { "array-includes": "^3.1.7", @@ -1807,7 +1820,7 @@ "object.groupby": "^1.0.1", "object.values": "^1.1.7", "semver": "^6.3.1", - "tsconfig-paths": "^3.14.2" + "tsconfig-paths": "^3.15.0" }, "engines": { "node": ">=4" @@ -1847,15 +1860,16 @@ } }, "node_modules/eslint-plugin-n": { - "version": "16.3.1", - "resolved": "https://registry.npmjs.org/eslint-plugin-n/-/eslint-plugin-n-16.3.1.tgz", - "integrity": "sha512-w46eDIkxQ2FaTHcey7G40eD+FhTXOdKudDXPUO2n9WNcslze/i/HT2qJ3GXjHngYSGDISIgPNhwGtgoix4zeOw==", + "version": "16.6.2", + "resolved": "https://registry.npmjs.org/eslint-plugin-n/-/eslint-plugin-n-16.6.2.tgz", + "integrity": "sha512-6TyDmZ1HXoFQXnhCTUjVFULReoBPOAjpuiKELMkeP40yffI/1ZRO+d9ug/VC6fqISo2WkuIBk3cvuRPALaWlOQ==", "dev": true, "dependencies": { "@eslint-community/eslint-utils": "^4.4.0", "builtins": "^5.0.1", - "eslint-plugin-es-x": "^7.1.0", + "eslint-plugin-es-x": "^7.5.0", "get-tsconfig": "^4.7.0", + "globals": "^13.24.0", "ignore": "^5.2.4", "is-builtin-module": "^3.2.1", "is-core-module": "^2.12.1", @@ -2436,9 +2450,9 @@ } }, "node_modules/globals": { - "version": "13.23.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.23.0.tgz", - "integrity": "sha512-XAmF0RjlrjY23MA51q3HltdlGxUpXPvg0GioKiD9X6HD28iMjo2dKC8Vqwm7lne4GNr78+RHTfliktR6ZH09wA==", + "version": "13.24.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", + "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", "dev": true, "dependencies": { "type-fest": "^0.20.2" @@ -3790,9 +3804,9 @@ } }, "node_modules/npm-check-updates": { - "version": "16.14.6", - "resolved": "https://registry.npmjs.org/npm-check-updates/-/npm-check-updates-16.14.6.tgz", - "integrity": "sha512-sJ6w4AmSDP7YzBXah94Ul2JhiIbjBDfx9XYgib15um2wtiQkOyjE7Lov3MNUSQ84Ry7T81mE4ynMbl/mGbK4HQ==", + "version": "16.14.12", + "resolved": "https://registry.npmjs.org/npm-check-updates/-/npm-check-updates-16.14.12.tgz", + "integrity": "sha512-5FvqaDX8AqWWTDQFbBllgLwoRXTvzlqVIRSKl9Kg8bYZTfNwMnrp1Zlmb5e/ocf11UjPTc+ShBFjYQ7kg6FL0w==", "dev": true, "dependencies": { "chalk": "^5.3.0", @@ -4393,12 +4407,12 @@ } }, "node_modules/playwright": { - "version": "1.39.0", - "resolved": "https://registry.npmjs.org/playwright/-/playwright-1.39.0.tgz", - "integrity": "sha512-naE5QT11uC/Oiq0BwZ50gDmy8c8WLPRTEWuSSFVG2egBka/1qMoSqYQcROMT9zLwJ86oPofcTH2jBY/5wWOgIw==", + "version": "1.40.1", + "resolved": "https://registry.npmjs.org/playwright/-/playwright-1.40.1.tgz", + "integrity": "sha512-2eHI7IioIpQ0bS1Ovg/HszsN/XKNwEG1kbzSDDmADpclKc7CyqkHw7Mg2JCz/bbCxg25QUPcjksoMW7JcIFQmw==", "dev": true, "dependencies": { - "playwright-core": "1.39.0" + "playwright-core": "1.40.1" }, "bin": { "playwright": "cli.js" @@ -4411,9 +4425,9 @@ } }, "node_modules/playwright-core": { - "version": "1.39.0", - "resolved": "https://registry.npmjs.org/playwright-core/-/playwright-core-1.39.0.tgz", - "integrity": "sha512-+k4pdZgs1qiM+OUkSjx96YiKsXsmb59evFoqv8SKO067qBA+Z2s/dCzJij/ZhdQcs2zlTAgRKfeiiLm8PQ2qvw==", + "version": "1.40.1", + "resolved": "https://registry.npmjs.org/playwright-core/-/playwright-core-1.40.1.tgz", + "integrity": "sha512-+hkOycxPiV534c4HhpfX6yrlawqVUzITRKwHAmYfmsVreltEl6fAZJ3DPfLMOODw0H3s1Itd6MDCWmP1fl/QvQ==", "dev": true, "bin": { "playwright-core": "cli.js" @@ -5415,9 +5429,9 @@ } }, "node_modules/tsconfig-paths": { - "version": "3.14.2", - "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.14.2.tgz", - "integrity": "sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g==", + "version": "3.15.0", + "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.15.0.tgz", + "integrity": "sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==", "dev": true, "dependencies": { "@types/json5": "^0.0.29", @@ -5978,9 +5992,9 @@ "dev": true }, "@eslint/eslintrc": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.3.tgz", - "integrity": "sha512-yZzuIG+jnVu6hNSzFEN07e8BxF3uAzYtQb6uDkaYZLo6oYZDCq454c5kB8zxnzfCYyP4MIuyBn10L0DqwujTmA==", + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.4.tgz", + "integrity": "sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==", "dev": true, "requires": { "ajv": "^6.12.4", @@ -5995,15 +6009,15 @@ } }, "@eslint/js": { - "version": "8.53.0", - "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.53.0.tgz", - "integrity": "sha512-Kn7K8dx/5U6+cT1yEhpX1w4PCSg0M+XyRILPgvwcEBjerFWCwQj5sbr3/VmxqV0JGHCBCzyd6LxypEuehypY1w==", + "version": "8.56.0", + "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.56.0.tgz", + "integrity": "sha512-gMsVel9D7f2HLkBma9VbtzZRehRogVRfbr++f06nL2vnCGCNlzOD+/MUov/F4p8myyAHspEhVobgjpX64q5m6A==", "dev": true }, "@faker-js/faker": { - "version": "8.2.0", - "resolved": "https://registry.npmjs.org/@faker-js/faker/-/faker-8.2.0.tgz", - "integrity": "sha512-VacmzZqVxdWdf9y64lDOMZNDMM/FQdtM9IsaOPKOm2suYwEatb8VkdHqOzXcDnZbk7YDE2BmsJmy/2Hmkn563g==" + "version": "8.3.1", + "resolved": "https://registry.npmjs.org/@faker-js/faker/-/faker-8.3.1.tgz", + "integrity": "sha512-FdgpFxY6V6rLZE9mmIBb9hM0xpfvQOSNOLnzolzKwsE1DH+gC7lEKV1p1IbR0lAYyvYd5a4u3qWJzowUkw1bIw==" }, "@humanwhocodes/config-array": { "version": "0.11.13", @@ -6212,12 +6226,12 @@ "optional": true }, "@playwright/test": { - "version": "1.39.0", - "resolved": "https://registry.npmjs.org/@playwright/test/-/test-1.39.0.tgz", - "integrity": "sha512-3u1iFqgzl7zr004bGPYiN/5EZpRUSFddQBra8Rqll5N0/vfpqlP9I9EXqAoGacuAbX6c9Ulg/Cjqglp5VkK6UQ==", + "version": "1.40.1", + "resolved": "https://registry.npmjs.org/@playwright/test/-/test-1.40.1.tgz", + "integrity": "sha512-EaaawMTOeEItCRvfmkI9v6rBkF1svM8wjl/YPRrg2N2Wmp+4qJYkWtJsbew1szfKKDm6fPLy4YAanBhIlf9dWw==", "dev": true, "requires": { - "playwright": "1.39.0" + "playwright": "1.40.1" } }, "@pnpm/network.ca-file": { @@ -6346,9 +6360,9 @@ "dev": true }, "acorn": { - "version": "8.11.2", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.11.2.tgz", - "integrity": "sha512-nc0Axzp/0FILLEVsm4fNwLCwMttvhEI263QtVPQcbpfZZ3ts0hLsZGOpE6czNlid7CJ9MlyH8reXkpsf3YUY4w==", + "version": "8.11.3", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.11.3.tgz", + "integrity": "sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==", "dev": true }, "acorn-jsx": { @@ -7124,15 +7138,15 @@ "dev": true }, "eslint": { - "version": "8.53.0", - "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.53.0.tgz", - "integrity": "sha512-N4VuiPjXDUa4xVeV/GC/RV3hQW9Nw+Y463lkWaKKXKYMvmRiRDAtfpuPFLN+E1/6ZhyR8J2ig+eVREnYgUsiag==", + "version": "8.56.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.56.0.tgz", + "integrity": "sha512-Go19xM6T9puCOWntie1/P997aXxFsOi37JIHRWI514Hc6ZnaHGKY9xFhrU65RT6CcBEzZoGG1e6Nq+DT04ZtZQ==", "dev": true, "requires": { "@eslint-community/eslint-utils": "^4.2.0", "@eslint-community/regexpp": "^4.6.1", - "@eslint/eslintrc": "^2.1.3", - "@eslint/js": "8.53.0", + "@eslint/eslintrc": "^2.1.4", + "@eslint/js": "8.56.0", "@humanwhocodes/config-array": "^0.11.13", "@humanwhocodes/module-importer": "^1.0.1", "@nodelib/fs.walk": "^1.2.8", @@ -7169,6 +7183,13 @@ "text-table": "^0.2.0" } }, + "eslint-compat-utils": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/eslint-compat-utils/-/eslint-compat-utils-0.1.2.tgz", + "integrity": "sha512-Jia4JDldWnFNIru1Ehx1H5s9/yxiRHY/TimCuUc0jNexew3cF1gI6CYZil1ociakfWO3rRqFjl1mskBblB3RYg==", + "dev": true, + "requires": {} + }, "eslint-config-standard": { "version": "17.1.0", "resolved": "https://registry.npmjs.org/eslint-config-standard/-/eslint-config-standard-17.1.0.tgz", @@ -7219,19 +7240,20 @@ } }, "eslint-plugin-es-x": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-es-x/-/eslint-plugin-es-x-7.1.0.tgz", - "integrity": "sha512-AhiaF31syh4CCQ+C5ccJA0VG6+kJK8+5mXKKE7Qs1xcPRg02CDPOj3mWlQxuWS/AYtg7kxrDNgW9YW3vc0Q+Mw==", + "version": "7.5.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-es-x/-/eslint-plugin-es-x-7.5.0.tgz", + "integrity": "sha512-ODswlDSO0HJDzXU0XvgZ3lF3lS3XAZEossh15Q2UHjwrJggWeBoKqqEsLTZLXl+dh5eOAozG0zRcYtuE35oTuQ==", "dev": true, "requires": { "@eslint-community/eslint-utils": "^4.1.2", - "@eslint-community/regexpp": "^4.5.0" + "@eslint-community/regexpp": "^4.6.0", + "eslint-compat-utils": "^0.1.2" } }, "eslint-plugin-import": { - "version": "2.29.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.29.0.tgz", - "integrity": "sha512-QPOO5NO6Odv5lpoTkddtutccQjysJuFxoPS7fAHO+9m9udNHvTCPSAMW9zGAYj8lAIdr40I8yPCdUYrncXtrwg==", + "version": "2.29.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.29.1.tgz", + "integrity": "sha512-BbPC0cuExzhiMo4Ff1BTVwHpjjv28C5R+btTOGaCRC7UEz801up0JadwkeSk5Ued6TG34uaczuVuH6qyy5YUxw==", "dev": true, "requires": { "array-includes": "^3.1.7", @@ -7250,7 +7272,7 @@ "object.groupby": "^1.0.1", "object.values": "^1.1.7", "semver": "^6.3.1", - "tsconfig-paths": "^3.14.2" + "tsconfig-paths": "^3.15.0" }, "dependencies": { "debug": { @@ -7280,15 +7302,16 @@ } }, "eslint-plugin-n": { - "version": "16.3.1", - "resolved": "https://registry.npmjs.org/eslint-plugin-n/-/eslint-plugin-n-16.3.1.tgz", - "integrity": "sha512-w46eDIkxQ2FaTHcey7G40eD+FhTXOdKudDXPUO2n9WNcslze/i/HT2qJ3GXjHngYSGDISIgPNhwGtgoix4zeOw==", + "version": "16.6.2", + "resolved": "https://registry.npmjs.org/eslint-plugin-n/-/eslint-plugin-n-16.6.2.tgz", + "integrity": "sha512-6TyDmZ1HXoFQXnhCTUjVFULReoBPOAjpuiKELMkeP40yffI/1ZRO+d9ug/VC6fqISo2WkuIBk3cvuRPALaWlOQ==", "dev": true, "requires": { "@eslint-community/eslint-utils": "^4.4.0", "builtins": "^5.0.1", - "eslint-plugin-es-x": "^7.1.0", + "eslint-plugin-es-x": "^7.5.0", "get-tsconfig": "^4.7.0", + "globals": "^13.24.0", "ignore": "^5.2.4", "is-builtin-module": "^3.2.1", "is-core-module": "^2.12.1", @@ -7700,9 +7723,9 @@ } }, "globals": { - "version": "13.23.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.23.0.tgz", - "integrity": "sha512-XAmF0RjlrjY23MA51q3HltdlGxUpXPvg0GioKiD9X6HD28iMjo2dKC8Vqwm7lne4GNr78+RHTfliktR6ZH09wA==", + "version": "13.24.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", + "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", "dev": true, "requires": { "type-fest": "^0.20.2" @@ -8698,9 +8721,9 @@ } }, "npm-check-updates": { - "version": "16.14.6", - "resolved": "https://registry.npmjs.org/npm-check-updates/-/npm-check-updates-16.14.6.tgz", - "integrity": "sha512-sJ6w4AmSDP7YzBXah94Ul2JhiIbjBDfx9XYgib15um2wtiQkOyjE7Lov3MNUSQ84Ry7T81mE4ynMbl/mGbK4HQ==", + "version": "16.14.12", + "resolved": "https://registry.npmjs.org/npm-check-updates/-/npm-check-updates-16.14.12.tgz", + "integrity": "sha512-5FvqaDX8AqWWTDQFbBllgLwoRXTvzlqVIRSKl9Kg8bYZTfNwMnrp1Zlmb5e/ocf11UjPTc+ShBFjYQ7kg6FL0w==", "dev": true, "requires": { "chalk": "^5.3.0", @@ -9126,19 +9149,19 @@ "dev": true }, "playwright": { - "version": "1.39.0", - "resolved": "https://registry.npmjs.org/playwright/-/playwright-1.39.0.tgz", - "integrity": "sha512-naE5QT11uC/Oiq0BwZ50gDmy8c8WLPRTEWuSSFVG2egBka/1qMoSqYQcROMT9zLwJ86oPofcTH2jBY/5wWOgIw==", + "version": "1.40.1", + "resolved": "https://registry.npmjs.org/playwright/-/playwright-1.40.1.tgz", + "integrity": "sha512-2eHI7IioIpQ0bS1Ovg/HszsN/XKNwEG1kbzSDDmADpclKc7CyqkHw7Mg2JCz/bbCxg25QUPcjksoMW7JcIFQmw==", "dev": true, "requires": { "fsevents": "2.3.2", - "playwright-core": "1.39.0" + "playwright-core": "1.40.1" } }, "playwright-core": { - "version": "1.39.0", - "resolved": "https://registry.npmjs.org/playwright-core/-/playwright-core-1.39.0.tgz", - "integrity": "sha512-+k4pdZgs1qiM+OUkSjx96YiKsXsmb59evFoqv8SKO067qBA+Z2s/dCzJij/ZhdQcs2zlTAgRKfeiiLm8PQ2qvw==", + "version": "1.40.1", + "resolved": "https://registry.npmjs.org/playwright-core/-/playwright-core-1.40.1.tgz", + "integrity": "sha512-+hkOycxPiV534c4HhpfX6yrlawqVUzITRKwHAmYfmsVreltEl6fAZJ3DPfLMOODw0H3s1Itd6MDCWmP1fl/QvQ==", "dev": true }, "prelude-ls": { @@ -9854,9 +9877,9 @@ } }, "tsconfig-paths": { - "version": "3.14.2", - "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.14.2.tgz", - "integrity": "sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g==", + "version": "3.15.0", + "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.15.0.tgz", + "integrity": "sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==", "dev": true, "requires": { "@types/json5": "^0.0.29", diff --git a/playwright/package.json b/playwright/package.json index 12670ab555..cacbcbe8ab 100644 --- a/playwright/package.json +++ b/playwright/package.json @@ -7,17 +7,17 @@ "test:debug": "playwright test --debug" }, "devDependencies": { - "@playwright/test": "1.39.0", - "eslint": "8.53.0", + "@playwright/test": "1.40.1", + "eslint": "8.56.0", "eslint-config-standard": "17.1.0", - "eslint-plugin-import": "2.29.0", - "eslint-plugin-n": "16.3.1", + "eslint-plugin-import": "2.29.1", + "eslint-plugin-n": "16.6.2", "eslint-plugin-node": "11.1.0", "eslint-plugin-promise": "6.1.1", - "npm-check-updates": "16.14.6" + "npm-check-updates": "16.14.12" }, "dependencies": { - "@faker-js/faker": "8.2.0", + "@faker-js/faker": "8.3.1", "lodash": "4.17.21", "lodash-es": "4.17.21", "luxon": "3.4.4", diff --git a/requirements.txt b/requirements.txt index e627d07676..87d794663c 100644 --- a/requirements.txt +++ b/requirements.txt @@ -22,8 +22,7 @@ django-markup>=1.5 # Limited use - need to reconcile against direct use of ma django-oidc-provider>=0.8.1 # 0.8 dropped Django 2 support django-referrer-policy>=1.0 django-simple-history>=3.0.0 -#django-stubs>=4.2.0 # The django-stubs version used determines the the mypy version indicated below -django-stubs==4.2.4 # Pin here until we fix test failures (and update mypy version, too) +django-stubs>=4.2.7 # The django-stubs version used determines the the mypy version indicated below django-tastypie>=0.14.5 # Version must be locked in sync with version of Django django-vite>=2.0.2,<3 django-webtest>=1.9.10 # Only used in tests @@ -46,7 +45,7 @@ markdown>=3.3.6 types-markdown>=3.3.6 mock>=4.0.3 # Used only by tests, of course types-mock>=4.0.3 -mypy~=1.2.0 # Version requirements determined by django-stubs. +mypy~=1.7.0 # Version requirements determined by django-stubs. oic>=1.3 # Used only by tests Pillow>=9.1.0 psycopg2>=2.9.6 @@ -60,7 +59,7 @@ python-magic==0.4.18 # Versions beyond the yanked .19 and .20 introduce form pymemcache>=4.0.0 # for django.core.cache.backends.memcached.PyMemcacheCache python-mimeparse>=1.6 # from TastyPie pytz==2022.2.1 # Pinned as changes need to be vetted for their effect on Meeting fields -requests>=2.27.1 +requests>=2.31.0 types-requests>=2.27.1 requests-mock>=1.9.3 rfc2html>=2.0.3 diff --git a/yarn.lock b/yarn.lock index 0edc3d251d..a4faa56b81 100644 --- a/yarn.lock +++ b/yarn.lock @@ -39,12 +39,12 @@ __metadata: languageName: node linkType: hard -"@babel/parser@npm:^7.23.0": - version: 7.23.0 - resolution: "@babel/parser@npm:7.23.0" +"@babel/parser@npm:^7.23.6": + version: 7.23.6 + resolution: "@babel/parser@npm:7.23.6" bin: parser: ./bin/babel-parser.js - checksum: 453fdf8b9e2c2b7d7b02139e0ce003d1af21947bbc03eb350fb248ee335c9b85e4ab41697ddbdd97079698de825a265e45a0846bb2ed47a2c7c1df833f42a354 + checksum: 140801c43731a6c41fd193f5c02bc71fd647a0360ca616b23d2db8be4b9739b9f951a03fc7c2db4f9b9214f4b27c1074db0f18bc3fa653783082d5af7c8860d5 languageName: node linkType: hard @@ -282,10 +282,10 @@ __metadata: languageName: node linkType: hard -"@eslint-community/regexpp@npm:^4.5.0": - version: 4.5.1 - resolution: "@eslint-community/regexpp@npm:4.5.1" - checksum: 6d901166d64998d591fab4db1c2f872981ccd5f6fe066a1ad0a93d4e11855ecae6bfb76660869a469563e8882d4307228cebd41142adb409d182f2966771e57e +"@eslint-community/regexpp@npm:^4.6.0": + version: 4.10.0 + resolution: "@eslint-community/regexpp@npm:4.10.0" + checksum: 2a6e345429ea8382aaaf3a61f865cae16ed44d31ca917910033c02dc00d505d939f10b81e079fa14d43b51499c640138e153b7e40743c4c094d9df97d4e56f7b languageName: node linkType: hard @@ -296,9 +296,9 @@ __metadata: languageName: node linkType: hard -"@eslint/eslintrc@npm:^2.1.2": - version: 2.1.2 - resolution: "@eslint/eslintrc@npm:2.1.2" +"@eslint/eslintrc@npm:^2.1.4": + version: 2.1.4 + resolution: "@eslint/eslintrc@npm:2.1.4" dependencies: ajv: ^6.12.4 debug: ^4.3.2 @@ -309,14 +309,14 @@ __metadata: js-yaml: ^4.1.0 minimatch: ^3.1.2 strip-json-comments: ^3.1.1 - checksum: bc742a1e3b361f06fedb4afb6bf32cbd27171292ef7924f61c62f2aed73048367bcc7ac68f98c06d4245cd3fabc43270f844e3c1699936d4734b3ac5398814a7 + checksum: 10957c7592b20ca0089262d8c2a8accbad14b4f6507e35416c32ee6b4dbf9cad67dfb77096bbd405405e9ada2b107f3797fe94362e1c55e0b09d6e90dd149127 languageName: node linkType: hard -"@eslint/js@npm:8.52.0": - version: 8.52.0 - resolution: "@eslint/js@npm:8.52.0" - checksum: 490893b8091a66415f4ac98b963d23eb287264ea3bd6af7ec788f0570705cf64fd6ab84b717785980f55e39d08ff5c7fde6d8e4391ccb507169370ce3a6d091a +"@eslint/js@npm:8.56.0": + version: 8.56.0 + resolution: "@eslint/js@npm:8.56.0" + checksum: 5804130574ef810207bdf321c265437814e7a26f4e6fac9b496de3206afd52f533e09ec002a3be06cd9adcc9da63e727f1883938e663c4e4751c007d5b58e539 languageName: node linkType: hard @@ -346,89 +346,89 @@ __metadata: languageName: node linkType: hard -"@fullcalendar/bootstrap5@npm:6.1.9": - version: 6.1.9 - resolution: "@fullcalendar/bootstrap5@npm:6.1.9" +"@fullcalendar/bootstrap5@npm:6.1.10": + version: 6.1.10 + resolution: "@fullcalendar/bootstrap5@npm:6.1.10" peerDependencies: - "@fullcalendar/core": ~6.1.9 - checksum: 1d6168fafcdfa294cba8de978aae3e019bf84bcd1560b6038b9da5ede7653bfbed54f8b7f6b9bdb4b34fc769f3bcc48a8b101dc1a7a8b13a91238647dd2cd331 + "@fullcalendar/core": ~6.1.10 + checksum: f0f80125f20f792b0cd07928181edd8b82ca33736589a228f617156d8c95e1b1d0dca8e201a239d468032ad6cda517359591d1eb0b1d393151fd5415232befc8 languageName: node linkType: hard -"@fullcalendar/core@npm:6.1.9": - version: 6.1.9 - resolution: "@fullcalendar/core@npm:6.1.9" +"@fullcalendar/core@npm:6.1.10": + version: 6.1.10 + resolution: "@fullcalendar/core@npm:6.1.10" dependencies: preact: ~10.12.1 - checksum: 836db3e40cd441faab974665a454e46f8e5288d6a5fcb38193ae95c19ec3dc639c48c944a69d633ec64e73f7b6752d76f92363c3c6ca8c08dbd88d84b160ab77 + checksum: 88f0feb447cb5dd2065bd0a25acd1f715a3aa152d04ee26c5db682e4c3586df5464e2ccfd6479aebf53174548411f29f3778b4fa01093f49f2962861a317d4f6 languageName: node linkType: hard -"@fullcalendar/daygrid@npm:6.1.9, @fullcalendar/daygrid@npm:~6.1.9": - version: 6.1.9 - resolution: "@fullcalendar/daygrid@npm:6.1.9" +"@fullcalendar/daygrid@npm:6.1.10, @fullcalendar/daygrid@npm:~6.1.10": + version: 6.1.10 + resolution: "@fullcalendar/daygrid@npm:6.1.10" peerDependencies: - "@fullcalendar/core": ~6.1.9 - checksum: 3db55247c4e1911462c37ff0448fcef8be132c5a0a0eada9ec00aef6c203f2d4fdffb82131566318e6eec2848b9ad6b8174b5e36c307106fa0c48071942096f4 + "@fullcalendar/core": ~6.1.10 + checksum: 4b125e57fa579e62ab7881a1c2161f495ed44a438666e532b043690980afce3b64e2c497f5f3b36b0fbc032e82e2cfe9eadbafbc11d7601f9c19afd4e71d9990 languageName: node linkType: hard -"@fullcalendar/icalendar@npm:6.1.9": - version: 6.1.9 - resolution: "@fullcalendar/icalendar@npm:6.1.9" +"@fullcalendar/icalendar@npm:6.1.10": + version: 6.1.10 + resolution: "@fullcalendar/icalendar@npm:6.1.10" peerDependencies: - "@fullcalendar/core": ~6.1.9 + "@fullcalendar/core": ~6.1.10 ical.js: ^1.4.0 - checksum: d47daf4ae0bb9ee60672c21373da042bc115762e61377c97f29dd8f9d9821e5181c80841480f81259e5d3dc0588e6adc0c6be38cc5913f11cd684e9a42939970 + checksum: db04224357213044718399f378aa540f4b7a4f9650da40c75f908471eea7648cf412ba5b277163f2f3b71007352fa0a3be5831e31495c98517f2d4590338d8c1 languageName: node linkType: hard -"@fullcalendar/interaction@npm:6.1.9": - version: 6.1.9 - resolution: "@fullcalendar/interaction@npm:6.1.9" +"@fullcalendar/interaction@npm:6.1.10": + version: 6.1.10 + resolution: "@fullcalendar/interaction@npm:6.1.10" peerDependencies: - "@fullcalendar/core": ~6.1.9 - checksum: 787111ea6f115a8a43b2d336bf9e20c5ea7fe6d2b71522025cdfec7682dd3207398a9321f65ef5b5af2495fb89e749136ebba23e79750112faf48fac0d05e926 + "@fullcalendar/core": ~6.1.10 + checksum: b5bdfaa6504c1c490198dd1de38834849e05a2adb2adcda2a2733b38e7bcf7f3a933dc7a84895a77f016324906b7b751d52f6989ee342983abce898b433ee770 languageName: node linkType: hard -"@fullcalendar/list@npm:6.1.9": - version: 6.1.9 - resolution: "@fullcalendar/list@npm:6.1.9" +"@fullcalendar/list@npm:6.1.10": + version: 6.1.10 + resolution: "@fullcalendar/list@npm:6.1.10" peerDependencies: - "@fullcalendar/core": ~6.1.9 - checksum: 978dd54b7131369d023e4d8a0e97b986a89a986b94a0d71dc6e9782e60e6c268184f2c596dcc7fa0580b143bfd39390a40ea4c9114afd1fa2eca5c48a7b0aaab + "@fullcalendar/core": ~6.1.10 + checksum: c1ae1de196fe07d9a535a0b9f97f21e5973344110e836f16064f5cd82d60e607f3418c7efb0f7b99c2c751ffb5d4bee60b4221cebac948f9a5b29f5676dd0a04 languageName: node linkType: hard -"@fullcalendar/luxon3@npm:6.1.9": - version: 6.1.9 - resolution: "@fullcalendar/luxon3@npm:6.1.9" +"@fullcalendar/luxon3@npm:6.1.10": + version: 6.1.10 + resolution: "@fullcalendar/luxon3@npm:6.1.10" peerDependencies: - "@fullcalendar/core": ~6.1.9 + "@fullcalendar/core": ~6.1.10 luxon: ^3.0.0 - checksum: 25122126e290fb15400c57972552d5abe64b2c6fbc41e290ccfada2280d2aca855c53ea6b6b1efc4c2d1b5aafa97f37b71395ad2b642d3411ddd285335f9467f + checksum: 47d4c6dbd3c3a2243aaef8691afa9ce0b3726ece49debb89ccc7e068c925241b953e4c0f6ce0d0e9c65df90f2a48d5f80ab03dee50288c12fbe2f1a877627840 languageName: node linkType: hard -"@fullcalendar/timegrid@npm:6.1.9": - version: 6.1.9 - resolution: "@fullcalendar/timegrid@npm:6.1.9" +"@fullcalendar/timegrid@npm:6.1.10": + version: 6.1.10 + resolution: "@fullcalendar/timegrid@npm:6.1.10" dependencies: - "@fullcalendar/daygrid": ~6.1.9 + "@fullcalendar/daygrid": ~6.1.10 peerDependencies: - "@fullcalendar/core": ~6.1.9 - checksum: 8c12a508f7c96be7897ba7496e2253efd1a3a01a8e7e7049bc5f1832fbbb04dec55d32cb41f8e2f03bc1f8d4a404508c48548a7b8f66684db36093e3ee12b412 + "@fullcalendar/core": ~6.1.10 + checksum: 91875c12f222dff7e28bbd1ffb2c8bb63accd4ae7d9d2b11a7c8c6e6fa4444d326a502afb60c4b20c88a91752e66b244773efb069c27e9434deff54211d47788 languageName: node linkType: hard -"@fullcalendar/vue3@npm:6.1.9": - version: 6.1.9 - resolution: "@fullcalendar/vue3@npm:6.1.9" +"@fullcalendar/vue3@npm:6.1.10": + version: 6.1.10 + resolution: "@fullcalendar/vue3@npm:6.1.10" peerDependencies: - "@fullcalendar/core": ~6.1.9 + "@fullcalendar/core": ~6.1.10 vue: ^3.0.11 - checksum: 2c1c0fbe724a40af53d7f9a4409058db1cdd61a708f09fc1947d0f5d60b3eff293e3cbf6d66fbfee57cffe89008c23c536efb6f8a80038343c5f8a60ad0c4575 + checksum: 1ccc7efab98b5470f98881f2c8ad11b07b9172dc9b28d0134bd8473a6896863da6e682b8fc33d4962fced493bef06d6790f6c84c91a4ed54b505bc94091150f6 languageName: node linkType: hard @@ -774,31 +774,31 @@ __metadata: languageName: node linkType: hard -"@parcel/bundler-default@npm:2.10.0": - version: 2.10.0 - resolution: "@parcel/bundler-default@npm:2.10.0" +"@parcel/bundler-default@npm:2.11.0": + version: 2.11.0 + resolution: "@parcel/bundler-default@npm:2.11.0" dependencies: - "@parcel/diagnostic": 2.10.0 - "@parcel/graph": 3.0.0 - "@parcel/plugin": 2.10.0 - "@parcel/rust": 2.10.0 - "@parcel/utils": 2.10.0 + "@parcel/diagnostic": 2.11.0 + "@parcel/graph": 3.1.0 + "@parcel/plugin": 2.11.0 + "@parcel/rust": 2.11.0 + "@parcel/utils": 2.11.0 nullthrows: ^1.1.1 - checksum: 58d361992805758798f3e64c4c38a584bcb1ae1427714c4c0fa66aa6d9dbe4a85b4ea861a1ebd8a9d781f1fa73d5522027c52c524fa1deceabed929f7f1279e7 + checksum: 6541cd9b82cd403f25fa3c1ee50d7cf9d27ed8f51256b1e4ead0655335128f9225c87e3118203b1b48e29f157a69dab5797065abb78fb03a409ad2765ea3a1e5 languageName: node linkType: hard -"@parcel/cache@npm:2.10.0": - version: 2.10.0 - resolution: "@parcel/cache@npm:2.10.0" +"@parcel/cache@npm:2.11.0": + version: 2.11.0 + resolution: "@parcel/cache@npm:2.11.0" dependencies: - "@parcel/fs": 2.10.0 - "@parcel/logger": 2.10.0 - "@parcel/utils": 2.10.0 + "@parcel/fs": 2.11.0 + "@parcel/logger": 2.11.0 + "@parcel/utils": 2.11.0 lmdb: 2.8.5 peerDependencies: - "@parcel/core": ^2.10.0 - checksum: 209d474abd5175309aaae06f4cbaebc7d1aadee260702e26268b7889d74132430c8ea52b1cd1829a98b60474856f671d26b99e698bd8a66a08d2c58d3e1ba264 + "@parcel/core": ^2.11.0 + checksum: bcb6ce02244e8bbc3c23647b01a6d4907141de3fc28d5ebabc095d8d8328bfb903da02cf3d8faedd337303afe8bf139e514ed7c0228e6e64bdf628cc40e359b6 languageName: node linkType: hard @@ -816,12 +816,12 @@ __metadata: languageName: node linkType: hard -"@parcel/codeframe@npm:2.10.0": - version: 2.10.0 - resolution: "@parcel/codeframe@npm:2.10.0" +"@parcel/codeframe@npm:2.11.0": + version: 2.11.0 + resolution: "@parcel/codeframe@npm:2.11.0" dependencies: chalk: ^4.1.0 - checksum: d87b17d3ce1c88652b3d66ee873e0578aadf90e718bcafaf16c7b39e0272cf61851530d9a3cda7482702afb9058a54f497b9e3cc706f2c36904ca0a6182ae2a1 + checksum: abd6b7b444dadcf0a986129c782286fe77098dad584ecc91cabf0b64468b2c7150587ce5e1f548ca9943c3a12bf8fa9abddab3f193df057600bdf88b92928897 languageName: node linkType: hard @@ -834,75 +834,75 @@ __metadata: languageName: node linkType: hard -"@parcel/compressor-raw@npm:2.10.0": - version: 2.10.0 - resolution: "@parcel/compressor-raw@npm:2.10.0" - dependencies: - "@parcel/plugin": 2.10.0 - checksum: 043fca0ecb9e574300045dce5b5a91d604e19682329a6be8e7e6c9365fa58f28415fd1a8353adcb98140395d789c3c1f764c092f717d4795df8de02b597cf57d - languageName: node - linkType: hard - -"@parcel/config-default@npm:2.10.0": - version: 2.10.0 - resolution: "@parcel/config-default@npm:2.10.0" - dependencies: - "@parcel/bundler-default": 2.10.0 - "@parcel/compressor-raw": 2.10.0 - "@parcel/namer-default": 2.10.0 - "@parcel/optimizer-css": 2.10.0 - "@parcel/optimizer-htmlnano": 2.10.0 - "@parcel/optimizer-image": 2.10.0 - "@parcel/optimizer-svgo": 2.10.0 - "@parcel/optimizer-swc": 2.10.0 - "@parcel/packager-css": 2.10.0 - "@parcel/packager-html": 2.10.0 - "@parcel/packager-js": 2.10.0 - "@parcel/packager-raw": 2.10.0 - "@parcel/packager-svg": 2.10.0 - "@parcel/packager-wasm": 2.10.0 - "@parcel/reporter-dev-server": 2.10.0 - "@parcel/resolver-default": 2.10.0 - "@parcel/runtime-browser-hmr": 2.10.0 - "@parcel/runtime-js": 2.10.0 - "@parcel/runtime-react-refresh": 2.10.0 - "@parcel/runtime-service-worker": 2.10.0 - "@parcel/transformer-babel": 2.10.0 - "@parcel/transformer-css": 2.10.0 - "@parcel/transformer-html": 2.10.0 - "@parcel/transformer-image": 2.10.0 - "@parcel/transformer-js": 2.10.0 - "@parcel/transformer-json": 2.10.0 - "@parcel/transformer-postcss": 2.10.0 - "@parcel/transformer-posthtml": 2.10.0 - "@parcel/transformer-raw": 2.10.0 - "@parcel/transformer-react-refresh-wrap": 2.10.0 - "@parcel/transformer-svg": 2.10.0 +"@parcel/compressor-raw@npm:2.11.0": + version: 2.11.0 + resolution: "@parcel/compressor-raw@npm:2.11.0" + dependencies: + "@parcel/plugin": 2.11.0 + checksum: 90882f3afa36c4a9f66be7379d39f144d55642398ac50b96394e91c72f2c1b1068297e12ab31f5e229645445024ded24471ee4b4ff6d754c60cf75b8f44b8c61 + languageName: node + linkType: hard + +"@parcel/config-default@npm:2.11.0": + version: 2.11.0 + resolution: "@parcel/config-default@npm:2.11.0" + dependencies: + "@parcel/bundler-default": 2.11.0 + "@parcel/compressor-raw": 2.11.0 + "@parcel/namer-default": 2.11.0 + "@parcel/optimizer-css": 2.11.0 + "@parcel/optimizer-htmlnano": 2.11.0 + "@parcel/optimizer-image": 2.11.0 + "@parcel/optimizer-svgo": 2.11.0 + "@parcel/optimizer-swc": 2.11.0 + "@parcel/packager-css": 2.11.0 + "@parcel/packager-html": 2.11.0 + "@parcel/packager-js": 2.11.0 + "@parcel/packager-raw": 2.11.0 + "@parcel/packager-svg": 2.11.0 + "@parcel/packager-wasm": 2.11.0 + "@parcel/reporter-dev-server": 2.11.0 + "@parcel/resolver-default": 2.11.0 + "@parcel/runtime-browser-hmr": 2.11.0 + "@parcel/runtime-js": 2.11.0 + "@parcel/runtime-react-refresh": 2.11.0 + "@parcel/runtime-service-worker": 2.11.0 + "@parcel/transformer-babel": 2.11.0 + "@parcel/transformer-css": 2.11.0 + "@parcel/transformer-html": 2.11.0 + "@parcel/transformer-image": 2.11.0 + "@parcel/transformer-js": 2.11.0 + "@parcel/transformer-json": 2.11.0 + "@parcel/transformer-postcss": 2.11.0 + "@parcel/transformer-posthtml": 2.11.0 + "@parcel/transformer-raw": 2.11.0 + "@parcel/transformer-react-refresh-wrap": 2.11.0 + "@parcel/transformer-svg": 2.11.0 peerDependencies: - "@parcel/core": ^2.10.0 - checksum: d780d05021c87d77d3aff116f4679a41e4a042f7b41c24ce114d320ecc3d9784faeed90c9ccb1c8465106e73b1174df1002218b3fa313a3f3f66d92a0bce3e8c + "@parcel/core": ^2.11.0 + checksum: b35be2dcd3e34185d43f168ad95db6c9681b8600d4e5b08768931c845479a0b2b4b360650018073c300767416dc446e5bcf0ce311e5b31c1dfa4c0d7d536a040 languageName: node linkType: hard -"@parcel/core@npm:2.10.0": - version: 2.10.0 - resolution: "@parcel/core@npm:2.10.0" +"@parcel/core@npm:2.11.0": + version: 2.11.0 + resolution: "@parcel/core@npm:2.11.0" dependencies: "@mischnic/json-sourcemap": ^0.1.0 - "@parcel/cache": 2.10.0 - "@parcel/diagnostic": 2.10.0 - "@parcel/events": 2.10.0 - "@parcel/fs": 2.10.0 - "@parcel/graph": 3.0.0 - "@parcel/logger": 2.10.0 - "@parcel/package-manager": 2.10.0 - "@parcel/plugin": 2.10.0 - "@parcel/profiler": 2.10.0 - "@parcel/rust": 2.10.0 + "@parcel/cache": 2.11.0 + "@parcel/diagnostic": 2.11.0 + "@parcel/events": 2.11.0 + "@parcel/fs": 2.11.0 + "@parcel/graph": 3.1.0 + "@parcel/logger": 2.11.0 + "@parcel/package-manager": 2.11.0 + "@parcel/plugin": 2.11.0 + "@parcel/profiler": 2.11.0 + "@parcel/rust": 2.11.0 "@parcel/source-map": ^2.1.1 - "@parcel/types": 2.10.0 - "@parcel/utils": 2.10.0 - "@parcel/workers": 2.10.0 + "@parcel/types": 2.11.0 + "@parcel/utils": 2.11.0 + "@parcel/workers": 2.11.0 abortcontroller-polyfill: ^1.1.9 base-x: ^3.0.8 browserslist: ^4.6.6 @@ -910,10 +910,10 @@ __metadata: dotenv: ^7.0.0 dotenv-expand: ^5.1.0 json5: ^2.2.0 - msgpackr: ^1.5.4 + msgpackr: ^1.9.9 nullthrows: ^1.1.1 semver: ^7.5.2 - checksum: c59c2971ea6edc379fc166fefe60a6cbbbea0ee1c84120b7396c5b1a6bcfac2e0409647a007b38d6da27285b43d6582144f136a4b8f1652d01df589f16ffa6f0 + checksum: 22d4e1f3f5bcb7647c520fdc90bca725cc291e8b1aea71dd1eb0ecf4deb191ccc16f07a4df660ebc237e17f5fcfe35c1f8ec1eb47189c9d953ff59eb27fde344 languageName: node linkType: hard @@ -949,13 +949,13 @@ __metadata: languageName: node linkType: hard -"@parcel/diagnostic@npm:2.10.0": - version: 2.10.0 - resolution: "@parcel/diagnostic@npm:2.10.0" +"@parcel/diagnostic@npm:2.11.0": + version: 2.11.0 + resolution: "@parcel/diagnostic@npm:2.11.0" dependencies: "@mischnic/json-sourcemap": ^0.1.0 nullthrows: ^1.1.1 - checksum: 45c606ca52316433524060b4297b0d34a1b971a94bbd5e9e282aeaac3abb3d9f0839a97a7027fa653e7b3b77269962a0db5a960ffe345fac41c6235a14e15aa1 + checksum: bcfd74db92bb4a05eaf2abec7ade76f68b119cf3f07ab6eebc8a9b37871ef9839a7dad9476d7c114a6ce15d1fc2569de50dccd38ed28251375f0f72ad35b0349 languageName: node linkType: hard @@ -969,10 +969,10 @@ __metadata: languageName: node linkType: hard -"@parcel/events@npm:2.10.0": - version: 2.10.0 - resolution: "@parcel/events@npm:2.10.0" - checksum: 1d21cd41862de2f21f2ab754b1d949fe17b062fbb8009a23d4d42f6836df7e1d37c2c8ca71304dce18d1168dedf0fcaa88c7c3eacc20611215b00700df0c9c73 +"@parcel/events@npm:2.11.0": + version: 2.11.0 + resolution: "@parcel/events@npm:2.11.0" + checksum: e757383143ad2c5b5fed800eb8fd8a0bf2d6c362dbc1f55993d0be575b5f7b7ad0fcead1db695ceb48e49fb13126849b282879097b4a14ccb8fc3fc522e9e10f languageName: node linkType: hard @@ -992,18 +992,18 @@ __metadata: languageName: node linkType: hard -"@parcel/fs@npm:2.10.0": - version: 2.10.0 - resolution: "@parcel/fs@npm:2.10.0" +"@parcel/fs@npm:2.11.0": + version: 2.11.0 + resolution: "@parcel/fs@npm:2.11.0" dependencies: - "@parcel/rust": 2.10.0 - "@parcel/types": 2.10.0 - "@parcel/utils": 2.10.0 + "@parcel/rust": 2.11.0 + "@parcel/types": 2.11.0 + "@parcel/utils": 2.11.0 "@parcel/watcher": ^2.0.7 - "@parcel/workers": 2.10.0 + "@parcel/workers": 2.11.0 peerDependencies: - "@parcel/core": ^2.10.0 - checksum: 10faae481cf4cd0d0ae270c60e070a925f510ca7c93d208bd3c4159da4aff5e4e2e0ea61b58f3638557a469aa706037b3065b526ef207bbb4fdbe6048d04c082 + "@parcel/core": ^2.11.0 + checksum: 2702d29dd72c73b30268b1dbeba5bd8c74638baa69c96415c9fc5182cf3fa312c575f22e01f021f42043b32a877ca980e61997332301b15fc2fa626e485edd13 languageName: node linkType: hard @@ -1032,12 +1032,12 @@ __metadata: languageName: node linkType: hard -"@parcel/graph@npm:3.0.0": - version: 3.0.0 - resolution: "@parcel/graph@npm:3.0.0" +"@parcel/graph@npm:3.1.0": + version: 3.1.0 + resolution: "@parcel/graph@npm:3.1.0" dependencies: nullthrows: ^1.1.1 - checksum: 0a9d5017f6179d3a35a9f97060d24486efe045277e831550e2885b8afc05288a2a898da3ec1f920cb89c02cce8941642b4522e67194a773d50062dadb36f4567 + checksum: 6d645e3ab4bb06fbc967e71072ebe796c602aacf5ac79d30e2d40442d6b08785bed49165b28a914ca419a949f4dec4dc3b2557520064c4a53bcc04f4b023daf0 languageName: node linkType: hard @@ -1051,13 +1051,13 @@ __metadata: languageName: node linkType: hard -"@parcel/logger@npm:2.10.0": - version: 2.10.0 - resolution: "@parcel/logger@npm:2.10.0" +"@parcel/logger@npm:2.11.0": + version: 2.11.0 + resolution: "@parcel/logger@npm:2.11.0" dependencies: - "@parcel/diagnostic": 2.10.0 - "@parcel/events": 2.10.0 - checksum: 52d0b5331dd72778da4a2be798bb2b6d5e72ecb317cdad3a4c546807be1e30aa59b1cca6c57314438b30e62d89b578354098b939d72618ab0634c33d0261ee91 + "@parcel/diagnostic": 2.11.0 + "@parcel/events": 2.11.0 + checksum: 363cacf5969df4d8b28d397f025cb9f318ebd940cd2372ffdcd25bdbeca25844b9ae7777f35dd7cdb2d1029a8c7379f6c0173bdfc201b88f4acfe6fd7f315ec5 languageName: node linkType: hard @@ -1071,12 +1071,12 @@ __metadata: languageName: node linkType: hard -"@parcel/markdown-ansi@npm:2.10.0": - version: 2.10.0 - resolution: "@parcel/markdown-ansi@npm:2.10.0" +"@parcel/markdown-ansi@npm:2.11.0": + version: 2.11.0 + resolution: "@parcel/markdown-ansi@npm:2.11.0" dependencies: chalk: ^4.1.0 - checksum: 35e2d07ec81e271144fc0f7b5f00913dce787e8a6f4a308eb59269fbc50d751cae939fedfd03e30b4aeef0c7f1210af2d1990a5551f1d39eeb80c977feb72b04 + checksum: 26bc69d6e227b3d461b3501014bd9c33cdb7c6514447b7eeb0f17c97ff9dc74f3bdddf271f9976e14c918516044128f477e884ce94b765c5a7e23661edfa739f languageName: node linkType: hard @@ -1089,128 +1089,128 @@ __metadata: languageName: node linkType: hard -"@parcel/namer-default@npm:2.10.0": - version: 2.10.0 - resolution: "@parcel/namer-default@npm:2.10.0" +"@parcel/namer-default@npm:2.11.0": + version: 2.11.0 + resolution: "@parcel/namer-default@npm:2.11.0" dependencies: - "@parcel/diagnostic": 2.10.0 - "@parcel/plugin": 2.10.0 + "@parcel/diagnostic": 2.11.0 + "@parcel/plugin": 2.11.0 nullthrows: ^1.1.1 - checksum: f2a32096d1574b0c871770622d20c619c35d77da8206bc0f74c1ab1d9107001cbb60771133da80b8ca2c927d65de58e6940a049de023f5cbc6e3131b80eea3fb + checksum: 452978cb597729cc21aec11456dd2121860893c9dec20f588cfc087643f127a6553493bcec5916d32285e7af11d5b832c24f07a10424cf264b4dac7ba1dfc101 languageName: node linkType: hard -"@parcel/node-resolver-core@npm:3.1.0": - version: 3.1.0 - resolution: "@parcel/node-resolver-core@npm:3.1.0" +"@parcel/node-resolver-core@npm:3.2.0": + version: 3.2.0 + resolution: "@parcel/node-resolver-core@npm:3.2.0" dependencies: "@mischnic/json-sourcemap": ^0.1.0 - "@parcel/diagnostic": 2.10.0 - "@parcel/fs": 2.10.0 - "@parcel/rust": 2.10.0 - "@parcel/utils": 2.10.0 + "@parcel/diagnostic": 2.11.0 + "@parcel/fs": 2.11.0 + "@parcel/rust": 2.11.0 + "@parcel/utils": 2.11.0 nullthrows: ^1.1.1 semver: ^7.5.2 - checksum: dcdd39bc6a044200fa734fbc58bba9b59c5ee2978c460b2734378adc7d47d724bdd98e942b0822305d0cfbd93bed1bb4ea37a6b8f8f7198e002890d9095f28ed + checksum: 9a006b50b1af5d0c4461647d5de5932a39c910ddd8da478dba68d4c814a92cb20cfca59fde98a3def9b899126a637bb7e1445fa97e794cb57487e7c0be678858 languageName: node linkType: hard -"@parcel/optimizer-css@npm:2.10.0": - version: 2.10.0 - resolution: "@parcel/optimizer-css@npm:2.10.0" +"@parcel/optimizer-css@npm:2.11.0": + version: 2.11.0 + resolution: "@parcel/optimizer-css@npm:2.11.0" dependencies: - "@parcel/diagnostic": 2.10.0 - "@parcel/plugin": 2.10.0 + "@parcel/diagnostic": 2.11.0 + "@parcel/plugin": 2.11.0 "@parcel/source-map": ^2.1.1 - "@parcel/utils": 2.10.0 + "@parcel/utils": 2.11.0 browserslist: ^4.6.6 - lightningcss: ^1.16.1 + lightningcss: ^1.22.1 nullthrows: ^1.1.1 - checksum: ea159895120b697bc2b9afd1b0706a2a769bb1714a697d0e9397ebef7753f15522d385cb3b863573fe19847a5b75b45b69d695ad4d96d6978102816425cecef6 + checksum: 8407b5e864a96e768a719ff35498353c5604c8b0c469f2a265d133bce05a1e80a0d95adcfc0a758c83ff35da5b3d12bf44b0b0f8598d2e2c16e86e6c527e9208 languageName: node linkType: hard -"@parcel/optimizer-data-url@npm:2.10.0": - version: 2.10.0 - resolution: "@parcel/optimizer-data-url@npm:2.10.0" +"@parcel/optimizer-data-url@npm:2.11.0": + version: 2.11.0 + resolution: "@parcel/optimizer-data-url@npm:2.11.0" dependencies: - "@parcel/plugin": 2.10.0 - "@parcel/utils": 2.10.0 + "@parcel/plugin": 2.11.0 + "@parcel/utils": 2.11.0 isbinaryfile: ^4.0.2 mime: ^2.4.4 - checksum: ec9530be83335cc921ee41a2b15529d304cd16dea9373ac5e515ef247643672ad4155fab199ac003b6fb05fb0ec138a335c49bdc824f3cabcb6e49fcc8795a85 + checksum: cf8680e676f44cf309135d33ea28c5575d5514fdd08d435e005b15af81ac754e41a919d3f071b596202d27d5e034cc04e232476c7396cec4b925a188cd83ee7b languageName: node linkType: hard -"@parcel/optimizer-htmlnano@npm:2.10.0": - version: 2.10.0 - resolution: "@parcel/optimizer-htmlnano@npm:2.10.0" +"@parcel/optimizer-htmlnano@npm:2.11.0": + version: 2.11.0 + resolution: "@parcel/optimizer-htmlnano@npm:2.11.0" dependencies: - "@parcel/plugin": 2.10.0 + "@parcel/plugin": 2.11.0 htmlnano: ^2.0.0 nullthrows: ^1.1.1 posthtml: ^0.16.5 svgo: ^2.4.0 - checksum: 1f6de13022437a49b2c9350deac8b193e950e090bc73409254dae99bbafb9f8f54b2bcb4d97e423ddf914925589f6809f7f63edc22c22e6828398fa58a17f621 + checksum: 4943948a8f345b8f7024d68b7f401befe943f0de00eb826df530e67f8155739dbae386fae350ad6e7a8ec00ba41598333fa48a3e51cc364cd517e17975131f38 languageName: node linkType: hard -"@parcel/optimizer-image@npm:2.10.0": - version: 2.10.0 - resolution: "@parcel/optimizer-image@npm:2.10.0" +"@parcel/optimizer-image@npm:2.11.0": + version: 2.11.0 + resolution: "@parcel/optimizer-image@npm:2.11.0" dependencies: - "@parcel/diagnostic": 2.10.0 - "@parcel/plugin": 2.10.0 - "@parcel/rust": 2.10.0 - "@parcel/utils": 2.10.0 - "@parcel/workers": 2.10.0 + "@parcel/diagnostic": 2.11.0 + "@parcel/plugin": 2.11.0 + "@parcel/rust": 2.11.0 + "@parcel/utils": 2.11.0 + "@parcel/workers": 2.11.0 peerDependencies: - "@parcel/core": ^2.10.0 - checksum: 94d5db2837fd2cdefeeccd279d16f1c74dd23be6146cc42f72d87800cb6391f3e6d0d1a1b483b3b23b2c5b6820682ac13f3e8253d8391d3e1d2e5891f9259a9b + "@parcel/core": ^2.11.0 + checksum: 9c4d9d087fd9bb47c150b80e2f92620ba376ca6462415a17ea0d81a0c674db363fe8364a7fc39aa1bed25c96e95742b73e18fdab1f2767c78b6e6f9c0fbbe08c languageName: node linkType: hard -"@parcel/optimizer-svgo@npm:2.10.0": - version: 2.10.0 - resolution: "@parcel/optimizer-svgo@npm:2.10.0" +"@parcel/optimizer-svgo@npm:2.11.0": + version: 2.11.0 + resolution: "@parcel/optimizer-svgo@npm:2.11.0" dependencies: - "@parcel/diagnostic": 2.10.0 - "@parcel/plugin": 2.10.0 - "@parcel/utils": 2.10.0 + "@parcel/diagnostic": 2.11.0 + "@parcel/plugin": 2.11.0 + "@parcel/utils": 2.11.0 svgo: ^2.4.0 - checksum: 7201c632228e2ff6d9db681f5109a5df8239b0f33585c6648ebdd89822d46ae1bb37292cd9c5b4cd1173aa80a0850f7976b8c4317f7548b8fcc127b7bf68be04 + checksum: 4e671856c28435e4f19335fa5ed062878a9d6fe4232ff22befab5a90df360db1904afbd55bfd4ecff193f4bcd7a9081f5d23db54bb644bb7160fcfa1aac4facf languageName: node linkType: hard -"@parcel/optimizer-swc@npm:2.10.0": - version: 2.10.0 - resolution: "@parcel/optimizer-swc@npm:2.10.0" +"@parcel/optimizer-swc@npm:2.11.0": + version: 2.11.0 + resolution: "@parcel/optimizer-swc@npm:2.11.0" dependencies: - "@parcel/diagnostic": 2.10.0 - "@parcel/plugin": 2.10.0 + "@parcel/diagnostic": 2.11.0 + "@parcel/plugin": 2.11.0 "@parcel/source-map": ^2.1.1 - "@parcel/utils": 2.10.0 + "@parcel/utils": 2.11.0 "@swc/core": ^1.3.36 nullthrows: ^1.1.1 - checksum: 1fe68ee6ff8843a33de953eddd6cf2b1061f8017677ee2f4924efcb4a24f0cac517ff4a508b899ce268cf983542b0406c8dfb9af190f30164f4ce6de6b32f9fb + checksum: be4b8bc94a5a490f6912a6dee24473eced904f2122f684d164cd781e7b216375999c5a15efa91fece4cb50cfc0c4eaabe9a8773df263163b5951e9d4e76a5798 languageName: node linkType: hard -"@parcel/package-manager@npm:2.10.0": - version: 2.10.0 - resolution: "@parcel/package-manager@npm:2.10.0" +"@parcel/package-manager@npm:2.11.0": + version: 2.11.0 + resolution: "@parcel/package-manager@npm:2.11.0" dependencies: - "@parcel/diagnostic": 2.10.0 - "@parcel/fs": 2.10.0 - "@parcel/logger": 2.10.0 - "@parcel/node-resolver-core": 3.1.0 - "@parcel/types": 2.10.0 - "@parcel/utils": 2.10.0 - "@parcel/workers": 2.10.0 + "@parcel/diagnostic": 2.11.0 + "@parcel/fs": 2.11.0 + "@parcel/logger": 2.11.0 + "@parcel/node-resolver-core": 3.2.0 + "@parcel/types": 2.11.0 + "@parcel/utils": 2.11.0 + "@parcel/workers": 2.11.0 semver: ^7.5.2 peerDependencies: - "@parcel/core": ^2.10.0 - checksum: 7c4a95d9df4a819f2613839d30165e653182017a6d7c1b155ee46c46a921d086672daa70effba70cbc78379bb634176da254162b868b89c0e1b117079cc8c914 + "@parcel/core": ^2.11.0 + checksum: 3846542eb59ee39ad53c1aea56f59045a26e58d07b0f0f59a91ca1b91e1268e76cd564a914e1041120f870481ae46063a39737e67d2418547cc0ff0dcf08a124 languageName: node linkType: hard @@ -1231,84 +1231,84 @@ __metadata: languageName: node linkType: hard -"@parcel/packager-css@npm:2.10.0": - version: 2.10.0 - resolution: "@parcel/packager-css@npm:2.10.0" +"@parcel/packager-css@npm:2.11.0": + version: 2.11.0 + resolution: "@parcel/packager-css@npm:2.11.0" dependencies: - "@parcel/diagnostic": 2.10.0 - "@parcel/plugin": 2.10.0 + "@parcel/diagnostic": 2.11.0 + "@parcel/plugin": 2.11.0 "@parcel/source-map": ^2.1.1 - "@parcel/utils": 2.10.0 + "@parcel/utils": 2.11.0 nullthrows: ^1.1.1 - checksum: 11bf4cae4cc7e0247842bfcffce952b4e240dd0d4caf1a0628faae57a7b9b651c173cc5c14c79a921d1d485d18fc56c5bcaae99ba873ca08d7e3d2582969ba9c + checksum: 2aa8da12ca83353153cb4d70893dfa691bab6f9e884b434812f3d4200fec3d2bd5a89df1a4c6c9a0d0955b5b5ef88bfacb4287f87c066f377fc304ef5a099720 languageName: node linkType: hard -"@parcel/packager-html@npm:2.10.0": - version: 2.10.0 - resolution: "@parcel/packager-html@npm:2.10.0" +"@parcel/packager-html@npm:2.11.0": + version: 2.11.0 + resolution: "@parcel/packager-html@npm:2.11.0" dependencies: - "@parcel/plugin": 2.10.0 - "@parcel/types": 2.10.0 - "@parcel/utils": 2.10.0 + "@parcel/plugin": 2.11.0 + "@parcel/types": 2.11.0 + "@parcel/utils": 2.11.0 nullthrows: ^1.1.1 posthtml: ^0.16.5 - checksum: 8dfd86e7d68417d52625817532b9f1aa7a68686345379b339c00e0d079a7922eaf5c23db2661602e80e8a3207090b5f7d1fed20b7ec5b6811c830ba9467c9060 + checksum: a651b4f3cf1e398ff111f31519610957863701471a763369fa26fa7398ed96c02a41f76575e60262e091506f7e7b4c7d3c7df9b3a12fb04dc62e7c9fe0604d71 languageName: node linkType: hard -"@parcel/packager-js@npm:2.10.0": - version: 2.10.0 - resolution: "@parcel/packager-js@npm:2.10.0" +"@parcel/packager-js@npm:2.11.0": + version: 2.11.0 + resolution: "@parcel/packager-js@npm:2.11.0" dependencies: - "@parcel/diagnostic": 2.10.0 - "@parcel/plugin": 2.10.0 - "@parcel/rust": 2.10.0 + "@parcel/diagnostic": 2.11.0 + "@parcel/plugin": 2.11.0 + "@parcel/rust": 2.11.0 "@parcel/source-map": ^2.1.1 - "@parcel/types": 2.10.0 - "@parcel/utils": 2.10.0 + "@parcel/types": 2.11.0 + "@parcel/utils": 2.11.0 globals: ^13.2.0 nullthrows: ^1.1.1 - checksum: 9b625988640da09195f9032184091c6298aa5a80aaa1eafc0ac6ab1856b5d74a453ecca79d494b8548dd74a4356e92e0675f1c69be2fe70351541759f8bcfc03 + checksum: 63d96fb22be90f54f5562fc93baad13deff63d7e434648f606b455800610679231a8e7b1349bd0f212568e2e4cf519c6368fbda8f1b0ae392870ecfa6bf8265f languageName: node linkType: hard -"@parcel/packager-raw@npm:2.10.0": - version: 2.10.0 - resolution: "@parcel/packager-raw@npm:2.10.0" +"@parcel/packager-raw@npm:2.11.0": + version: 2.11.0 + resolution: "@parcel/packager-raw@npm:2.11.0" dependencies: - "@parcel/plugin": 2.10.0 - checksum: 492fe07ae58e55b6fb492cccd12a0eb6733134ae93c1381a516c0e24b1e11c9f1fa0e88dc626f30c07100adaf2b6c1d299255734e9becaebe8e4bcdc8c118074 + "@parcel/plugin": 2.11.0 + checksum: c36dbcc82a31643fd83dce8a5dc5bb038a9396ffec46a8f9c8a7ad35f4645d2050c4228ed360f2c70f11073a606b6c89872a70883d07594b91bd8ce9191ed3a2 languageName: node linkType: hard -"@parcel/packager-svg@npm:2.10.0": - version: 2.10.0 - resolution: "@parcel/packager-svg@npm:2.10.0" +"@parcel/packager-svg@npm:2.11.0": + version: 2.11.0 + resolution: "@parcel/packager-svg@npm:2.11.0" dependencies: - "@parcel/plugin": 2.10.0 - "@parcel/types": 2.10.0 - "@parcel/utils": 2.10.0 + "@parcel/plugin": 2.11.0 + "@parcel/types": 2.11.0 + "@parcel/utils": 2.11.0 posthtml: ^0.16.4 - checksum: f49d7f3b88ceded019609e4c1f0747325540eecec334dc134ab31d1ec0f1799affbe9f254b7817df8dd0b4afd88023fff7781f9a07c8439a2de8b1403c07034c + checksum: 2d0394dd5e9ce0025f805241975ee26318f176b42ca30d6f020cfb5521f77ca6eb2b13c9c23f580bab69e55ca883f06d6c023faa3b84e15f2e7d6e826ed2f961 languageName: node linkType: hard -"@parcel/packager-wasm@npm:2.10.0": - version: 2.10.0 - resolution: "@parcel/packager-wasm@npm:2.10.0" +"@parcel/packager-wasm@npm:2.11.0": + version: 2.11.0 + resolution: "@parcel/packager-wasm@npm:2.11.0" dependencies: - "@parcel/plugin": 2.10.0 - checksum: d9a13eb838b6bcaa1dd58af6b58f40daa4d3634a28b0b259983e8d8fb7e83f5cb8be3441135bd2ce55a7a459d818ddb77bee44cc52c8fb5169da215ca85341cd + "@parcel/plugin": 2.11.0 + checksum: 4f0617fe512ffdce0157dff47311ef241645482ddd8a90614bab658de7c1b51387eede6e841480c4478557934e2ce1d318d970f45a8048edfbf8992da7c2bc18 languageName: node linkType: hard -"@parcel/plugin@npm:2.10.0": - version: 2.10.0 - resolution: "@parcel/plugin@npm:2.10.0" +"@parcel/plugin@npm:2.11.0": + version: 2.11.0 + resolution: "@parcel/plugin@npm:2.11.0" dependencies: - "@parcel/types": 2.10.0 - checksum: e13ba6e7e521078e7755ecdf906c0f1d8fe63efaec26bb66e2f0df22417e755bbced6dbbdea50698ad27944ed1a16944c143eb08c79e4118ea62bc7c60f62b5f + "@parcel/types": 2.11.0 + checksum: 45344c3ac0674b77ea29cbac23de5887fac68bfba118adf93c9bab4631c1e341e1212d250d1279581c51ad6124b6f023bbb5c2ca0e7c1afed4442fc0a0398a97 languageName: node linkType: hard @@ -1321,111 +1321,112 @@ __metadata: languageName: node linkType: hard -"@parcel/profiler@npm:2.10.0": - version: 2.10.0 - resolution: "@parcel/profiler@npm:2.10.0" +"@parcel/profiler@npm:2.11.0": + version: 2.11.0 + resolution: "@parcel/profiler@npm:2.11.0" dependencies: - "@parcel/diagnostic": 2.10.0 - "@parcel/events": 2.10.0 + "@parcel/diagnostic": 2.11.0 + "@parcel/events": 2.11.0 chrome-trace-event: ^1.0.2 - checksum: 78d545edb76d72f962769df8964a3a19fe3d0b2b8c47a929eeafd9d71b3f00f2733428a649804057fce153a7fb71fa8bfdd25cc3102b32ea542b69af35f7ce4a + checksum: f5b5749786de62f1d9d0285adbbe49e170e691fdbf789d9d706c84b72ed6a300978f2144f7c56f4695fff6ee4388df97158554b105631adde6e43d3ee0090784 languageName: node linkType: hard -"@parcel/reporter-cli@npm:2.10.0": - version: 2.10.0 - resolution: "@parcel/reporter-cli@npm:2.10.0" +"@parcel/reporter-cli@npm:2.11.0": + version: 2.11.0 + resolution: "@parcel/reporter-cli@npm:2.11.0" dependencies: - "@parcel/plugin": 2.10.0 - "@parcel/types": 2.10.0 - "@parcel/utils": 2.10.0 + "@parcel/plugin": 2.11.0 + "@parcel/types": 2.11.0 + "@parcel/utils": 2.11.0 chalk: ^4.1.0 + cli-progress: ^3.12.0 term-size: ^2.2.1 - checksum: 0137a91e459121207f83109d68e555124170e2c585d7cb9e685380b753fffee68e4903b9e9e79be8e42ed85b724460989031154bcdcc25845f3bef945a8e0a74 + checksum: 81e62144ad834791656458eeea286a061f4b8fa4651d8c68e54ab8050f9101ee9cfc9117f18544baebea5d47da9f4b2e3e6eabc19e7c886131bdcd9b2f40dd71 languageName: node linkType: hard -"@parcel/reporter-dev-server@npm:2.10.0": - version: 2.10.0 - resolution: "@parcel/reporter-dev-server@npm:2.10.0" +"@parcel/reporter-dev-server@npm:2.11.0": + version: 2.11.0 + resolution: "@parcel/reporter-dev-server@npm:2.11.0" dependencies: - "@parcel/plugin": 2.10.0 - "@parcel/utils": 2.10.0 - checksum: e72fd6ec095e36fb3c758b5a043c4c2038c464dad8528b12f57df83f19d6c138ce045c5897c88fd307fd03a2ffb0c53a1a799aec9e74e7de82261e32c031ff89 + "@parcel/plugin": 2.11.0 + "@parcel/utils": 2.11.0 + checksum: ac8948c7f30a88c8d05d3a168381d906e6b6bfbdf04001ec46a57b0f9901f009d111ca7d200e5079ca34ce23b7754be38902492ffacdd42d544cbe26c7c2dc67 languageName: node linkType: hard -"@parcel/reporter-tracer@npm:2.10.0": - version: 2.10.0 - resolution: "@parcel/reporter-tracer@npm:2.10.0" +"@parcel/reporter-tracer@npm:2.11.0": + version: 2.11.0 + resolution: "@parcel/reporter-tracer@npm:2.11.0" dependencies: - "@parcel/plugin": 2.10.0 - "@parcel/utils": 2.10.0 + "@parcel/plugin": 2.11.0 + "@parcel/utils": 2.11.0 chrome-trace-event: ^1.0.3 nullthrows: ^1.1.1 - checksum: 0f8249b9983943ba1ee47e0b63366495da3c4af80f70de40fe8151e15ea285ac727f122988079cc24fe34ad43f2106a48b8bad4ad99fc8c96b031de6d31a90d2 + checksum: 83aedfc97d3b79f5aae205c88267fe6baf59ccee211aca251198c55594760e84145a3e070ce5efcbef648b72c752649283f13b5500fb848f83dbf723dff295df languageName: node linkType: hard -"@parcel/resolver-default@npm:2.10.0": - version: 2.10.0 - resolution: "@parcel/resolver-default@npm:2.10.0" +"@parcel/resolver-default@npm:2.11.0": + version: 2.11.0 + resolution: "@parcel/resolver-default@npm:2.11.0" dependencies: - "@parcel/node-resolver-core": 3.1.0 - "@parcel/plugin": 2.10.0 - checksum: c82e2d3c4b4870178845df6b46cd4ac41114b4b256c13d670de61cbc43fa7c0f76f7e2ee5043c0ace205bb76ba2e2886e49e6df15c716e271c72435620885257 + "@parcel/node-resolver-core": 3.2.0 + "@parcel/plugin": 2.11.0 + checksum: bbb5f6dfd67c754680dade42005a6ddc5fc5d40f7277ba1d63df898ac117ad98c2d74b599b2df91c7f2f8503bf6ba3cb10eef9d9b4d9c09ef0e8a7eb98d38d6e languageName: node linkType: hard -"@parcel/runtime-browser-hmr@npm:2.10.0": - version: 2.10.0 - resolution: "@parcel/runtime-browser-hmr@npm:2.10.0" +"@parcel/runtime-browser-hmr@npm:2.11.0": + version: 2.11.0 + resolution: "@parcel/runtime-browser-hmr@npm:2.11.0" dependencies: - "@parcel/plugin": 2.10.0 - "@parcel/utils": 2.10.0 - checksum: 12928462c812253a6ceb2338e7f3a1db1745f2102060804b144854c1788dd48fb753b2c5ce8ad59027ad44aa7aad803d0521f9823cf7c3bf913715157a35849e + "@parcel/plugin": 2.11.0 + "@parcel/utils": 2.11.0 + checksum: ad7eba3210227ebbcb71889cdfb495172ae0173b75e140b41fe772df90c115f1bab5c23fd6209eabe94f143942725f6b3a8d497483e376cf449078c0a984bf1c languageName: node linkType: hard -"@parcel/runtime-js@npm:2.10.0": - version: 2.10.0 - resolution: "@parcel/runtime-js@npm:2.10.0" +"@parcel/runtime-js@npm:2.11.0": + version: 2.11.0 + resolution: "@parcel/runtime-js@npm:2.11.0" dependencies: - "@parcel/diagnostic": 2.10.0 - "@parcel/plugin": 2.10.0 - "@parcel/utils": 2.10.0 + "@parcel/diagnostic": 2.11.0 + "@parcel/plugin": 2.11.0 + "@parcel/utils": 2.11.0 nullthrows: ^1.1.1 - checksum: 3bbd64c5b9fb64387497a6c5d310fb9216ad218f4b1cf74c9d8cb1325335903bd45582942ae7b54bd08a81d8e871af6ac8d598c311a05cdd2ecd7ce39ead9a31 + checksum: 3cab5e6b6218b91b9022c9e0990674be46abd763dd4f5deaaa4d1143df22a37f479d2a1f41f9b1be35e1381437c3ed301b03afec62bb8cba613e473ffd22d43c languageName: node linkType: hard -"@parcel/runtime-react-refresh@npm:2.10.0": - version: 2.10.0 - resolution: "@parcel/runtime-react-refresh@npm:2.10.0" +"@parcel/runtime-react-refresh@npm:2.11.0": + version: 2.11.0 + resolution: "@parcel/runtime-react-refresh@npm:2.11.0" dependencies: - "@parcel/plugin": 2.10.0 - "@parcel/utils": 2.10.0 + "@parcel/plugin": 2.11.0 + "@parcel/utils": 2.11.0 react-error-overlay: 6.0.9 react-refresh: ^0.9.0 - checksum: dc567474a154a73c90041b51b1122d9cb8c677ae2ebdacf534325ab3cf18b506aa6477b8c4005438a6b86c2bac88025d78407d84b5904fe035b2191d829ac98a + checksum: 0a29d9e55ad296ae13413e13ecea2e5966edc4e26a542bf817cc72cd15f793930abe7b2e80065e39ee647be13e211951146c8c643184da8fa2af872f09e9ffc5 languageName: node linkType: hard -"@parcel/runtime-service-worker@npm:2.10.0": - version: 2.10.0 - resolution: "@parcel/runtime-service-worker@npm:2.10.0" +"@parcel/runtime-service-worker@npm:2.11.0": + version: 2.11.0 + resolution: "@parcel/runtime-service-worker@npm:2.11.0" dependencies: - "@parcel/plugin": 2.10.0 - "@parcel/utils": 2.10.0 + "@parcel/plugin": 2.11.0 + "@parcel/utils": 2.11.0 nullthrows: ^1.1.1 - checksum: d0bfd113b9f26dca4e0936c316d25c3e774e13442f738812c8e20663e4c7ea766f3940ba11ab4d163cad2ad8ad1c2a1292c72ed162de0a34a64a07b44a4baa23 + checksum: da8d2b5a925f710e14f9dd49d968603946961b4f8d1f4ef8d4b68e350118d2f6ae42115adcc6952ebe01151dd185de827902d3984367c20c5f9381890d8bfeb5 languageName: node linkType: hard -"@parcel/rust@npm:2.10.0": - version: 2.10.0 - resolution: "@parcel/rust@npm:2.10.0" - checksum: 466a78d27db445780593a6a5a1ce39406daabf3661b81aa8a714ba647d0e3b08532a23b86508a7e8b9cb95f8aa4f755c6e33148ba961f173283b96b72cc51ee6 +"@parcel/rust@npm:2.11.0": + version: 2.11.0 + resolution: "@parcel/rust@npm:2.11.0" + checksum: 53a95b23562d71597af726647923db08185ede5b83fd25f00467229b62a51fd5b43a0e44172d90d68721e1463fb4c5f06000ddd47d402779177fe7c441fe8b16 languageName: node linkType: hard @@ -1447,198 +1448,198 @@ __metadata: languageName: node linkType: hard -"@parcel/transformer-babel@npm:2.10.0": - version: 2.10.0 - resolution: "@parcel/transformer-babel@npm:2.10.0" +"@parcel/transformer-babel@npm:2.11.0": + version: 2.11.0 + resolution: "@parcel/transformer-babel@npm:2.11.0" dependencies: - "@parcel/diagnostic": 2.10.0 - "@parcel/plugin": 2.10.0 + "@parcel/diagnostic": 2.11.0 + "@parcel/plugin": 2.11.0 "@parcel/source-map": ^2.1.1 - "@parcel/utils": 2.10.0 + "@parcel/utils": 2.11.0 browserslist: ^4.6.6 json5: ^2.2.0 nullthrows: ^1.1.1 semver: ^7.5.2 - checksum: fd64092c9cb9d4ecc78cefc02720154a39681a56365173bc8fab82942f5b7236e38411ed288a71202717a5f97599727e101cba08db1cb3d0eaadbf383b0576e3 + checksum: f36c7973c691619b4c35bdd40135cd6daf735b333f34df99b6cad1b0ad332010b195bdb0388a6ff8b6abad201020a77ad797b974774bb0d26894d1c435f30814 languageName: node linkType: hard -"@parcel/transformer-css@npm:2.10.0": - version: 2.10.0 - resolution: "@parcel/transformer-css@npm:2.10.0" +"@parcel/transformer-css@npm:2.11.0": + version: 2.11.0 + resolution: "@parcel/transformer-css@npm:2.11.0" dependencies: - "@parcel/diagnostic": 2.10.0 - "@parcel/plugin": 2.10.0 + "@parcel/diagnostic": 2.11.0 + "@parcel/plugin": 2.11.0 "@parcel/source-map": ^2.1.1 - "@parcel/utils": 2.10.0 + "@parcel/utils": 2.11.0 browserslist: ^4.6.6 - lightningcss: ^1.16.1 + lightningcss: ^1.22.1 nullthrows: ^1.1.1 - checksum: acc26e9b3df28b45e89dcb71c6e29ab6c8507e44fde1d7f2b3aa6b8230dc17fbd043a4e2afd33b6cadd284842fd2582d937b16c4f43f10568fba839ce520ef94 + checksum: 59b1893b94388b4e7e94121cd82cbf734499e1565503b91ec0ea837d9967190c953323a4c054d8d80fd5c53f5b75710a5f20f54d129a076257497a269316a280 languageName: node linkType: hard -"@parcel/transformer-html@npm:2.10.0": - version: 2.10.0 - resolution: "@parcel/transformer-html@npm:2.10.0" +"@parcel/transformer-html@npm:2.11.0": + version: 2.11.0 + resolution: "@parcel/transformer-html@npm:2.11.0" dependencies: - "@parcel/diagnostic": 2.10.0 - "@parcel/plugin": 2.10.0 - "@parcel/rust": 2.10.0 + "@parcel/diagnostic": 2.11.0 + "@parcel/plugin": 2.11.0 + "@parcel/rust": 2.11.0 nullthrows: ^1.1.1 posthtml: ^0.16.5 posthtml-parser: ^0.10.1 posthtml-render: ^3.0.0 semver: ^7.5.2 srcset: 4 - checksum: f28e0d36063a1213449b3ae988d984fb8fe03e6b34f005dcf5a4f6578346d9780b99023d42c7834cc4733267b68ebc2df9d372588d3d3949e19e60d52fbb70a9 + checksum: fd333e9a4890bb565b0403f065a46c9c38174b379f6fc30b557455fad13d9b13864bf2cb971ff396cea8724c74c652336f727e2df260e2bfb6d2ea7d952371ae languageName: node linkType: hard -"@parcel/transformer-image@npm:2.10.0": - version: 2.10.0 - resolution: "@parcel/transformer-image@npm:2.10.0" +"@parcel/transformer-image@npm:2.11.0": + version: 2.11.0 + resolution: "@parcel/transformer-image@npm:2.11.0" dependencies: - "@parcel/plugin": 2.10.0 - "@parcel/utils": 2.10.0 - "@parcel/workers": 2.10.0 + "@parcel/plugin": 2.11.0 + "@parcel/utils": 2.11.0 + "@parcel/workers": 2.11.0 nullthrows: ^1.1.1 peerDependencies: - "@parcel/core": ^2.10.0 - checksum: 61a47d7d8e97a1874adf15f92410715c95a1b3747e0466299cb1a28cc1835855c758d7c3ebe40389b651bc1d7de2e942d0747e2787b63db5b6fff62803f6f900 + "@parcel/core": ^2.11.0 + checksum: 65e7fa4791100b5db6dd6752a0f43c2c377e2f3825c5cfeb8bff5d3ae994e3ac659ebcb656a607834f54eb3cf6cf499ed78fdba64a968428c2bbcdb23b030d19 languageName: node linkType: hard -"@parcel/transformer-inline-string@npm:2.10.0": - version: 2.10.0 - resolution: "@parcel/transformer-inline-string@npm:2.10.0" +"@parcel/transformer-inline-string@npm:2.11.0": + version: 2.11.0 + resolution: "@parcel/transformer-inline-string@npm:2.11.0" dependencies: - "@parcel/plugin": 2.10.0 - checksum: 618c919108256488d17afd2155faf83989fdba8c7061be2dfa8895721670c9192e16a63b0b98a3660b931c5077bc0518265372a973ecc0f757e9139949962cec + "@parcel/plugin": 2.11.0 + checksum: 99e53f29396785b106ebb66c85bcc91fdf813232029ac1204470587684c027859d17675d2db943ab8f9902ad37c75ce8c37b8d04c83a4b1cc37a2b10fdf8eddf languageName: node linkType: hard -"@parcel/transformer-js@npm:2.10.0": - version: 2.10.0 - resolution: "@parcel/transformer-js@npm:2.10.0" +"@parcel/transformer-js@npm:2.11.0": + version: 2.11.0 + resolution: "@parcel/transformer-js@npm:2.11.0" dependencies: - "@parcel/diagnostic": 2.10.0 - "@parcel/plugin": 2.10.0 - "@parcel/rust": 2.10.0 + "@parcel/diagnostic": 2.11.0 + "@parcel/plugin": 2.11.0 + "@parcel/rust": 2.11.0 "@parcel/source-map": ^2.1.1 - "@parcel/utils": 2.10.0 - "@parcel/workers": 2.10.0 + "@parcel/utils": 2.11.0 + "@parcel/workers": 2.11.0 "@swc/helpers": ^0.5.0 browserslist: ^4.6.6 nullthrows: ^1.1.1 regenerator-runtime: ^0.13.7 semver: ^7.5.2 peerDependencies: - "@parcel/core": ^2.10.0 - checksum: e9944ce77cfa062719f1a352bc873fc3dd2afe87baec024752f6da92714b591ef16b38d9f8c1eeeaad2a44e0d173c401005f4d11326deb236c08499f72519ae8 + "@parcel/core": ^2.11.0 + checksum: ae75820a392f9728ecd4fe98a9ec746c380fb2fd927845980d0f95b0e89afe8c9bf557ba66006612811bc362caa07cd4697dfa732df8cf0de711e8666f0c80ee languageName: node linkType: hard -"@parcel/transformer-json@npm:2.10.0": - version: 2.10.0 - resolution: "@parcel/transformer-json@npm:2.10.0" +"@parcel/transformer-json@npm:2.11.0": + version: 2.11.0 + resolution: "@parcel/transformer-json@npm:2.11.0" dependencies: - "@parcel/plugin": 2.10.0 + "@parcel/plugin": 2.11.0 json5: ^2.2.0 - checksum: 9c7aceb8e6372035ebd49dfd16f656f8c631c80c6750a2a2a51444e55013caa2d0bdef6b868a42c149c0500c988440ddf3f4a9a565dd15bf2a1c80571e9f21e9 + checksum: 6e25561d09ea238e96558a76c0812c423ca44633824b3271fb3bc5b77604aefe8943332f2b7b17ff7a296cc6b770a6ba3d2322eeac4650785c2f091314c71ddf languageName: node linkType: hard -"@parcel/transformer-postcss@npm:2.10.0": - version: 2.10.0 - resolution: "@parcel/transformer-postcss@npm:2.10.0" +"@parcel/transformer-postcss@npm:2.11.0": + version: 2.11.0 + resolution: "@parcel/transformer-postcss@npm:2.11.0" dependencies: - "@parcel/diagnostic": 2.10.0 - "@parcel/plugin": 2.10.0 - "@parcel/rust": 2.10.0 - "@parcel/utils": 2.10.0 + "@parcel/diagnostic": 2.11.0 + "@parcel/plugin": 2.11.0 + "@parcel/rust": 2.11.0 + "@parcel/utils": 2.11.0 clone: ^2.1.1 nullthrows: ^1.1.1 postcss-value-parser: ^4.2.0 semver: ^7.5.2 - checksum: 2e524bd513ca7f8f4ad6904c0a8c8fdd3e1092872a2e7ced7ba26b91d76e723ada6c3f2ae537a4b04d611a00babafd8b780fa43cde2d97b30b4e6dbb5ed942a6 + checksum: 10f0054e5b751275fc1571d32d91f4412b31575d45eb576d1483771c3d3c445bd50da7937a8aa6b0aa134212e2f3b608482a6e617e6472f77694cd52ec413c82 languageName: node linkType: hard -"@parcel/transformer-posthtml@npm:2.10.0": - version: 2.10.0 - resolution: "@parcel/transformer-posthtml@npm:2.10.0" +"@parcel/transformer-posthtml@npm:2.11.0": + version: 2.11.0 + resolution: "@parcel/transformer-posthtml@npm:2.11.0" dependencies: - "@parcel/plugin": 2.10.0 - "@parcel/utils": 2.10.0 + "@parcel/plugin": 2.11.0 + "@parcel/utils": 2.11.0 nullthrows: ^1.1.1 posthtml: ^0.16.5 posthtml-parser: ^0.10.1 posthtml-render: ^3.0.0 semver: ^7.5.2 - checksum: 7de343f0f9ae1a1686e0a3ffdbb64d37edecd8704441efda1c9b999dbc8dd3c7feef97361ba785588521f13cf025db6ca9ded765fb69267b12bbd6f2a0c64cf8 + checksum: d79e3666cae4ffb648d042b30e974d68193c05ffb6418d0c79fe784e07b323fe65a3006130f63eeafe0700a09300d8c9e6dcf6a56e24ac2a23fdd30d3bd4a9b5 languageName: node linkType: hard -"@parcel/transformer-raw@npm:2.10.0": - version: 2.10.0 - resolution: "@parcel/transformer-raw@npm:2.10.0" +"@parcel/transformer-raw@npm:2.11.0": + version: 2.11.0 + resolution: "@parcel/transformer-raw@npm:2.11.0" dependencies: - "@parcel/plugin": 2.10.0 - checksum: c7b1b9c6f7fbcfc51dd7360ae9551fa4611ef96990df954e057eeeb44f3915c84da7bb6bea10eb4e246ec4e217c387db8cd8fe3fbf999bf0bfb2e91979092dc3 + "@parcel/plugin": 2.11.0 + checksum: b914665c090316d677fedc1b646b87c31eea277fb26281b737874940fe1c63bdbcf0f31dc4d2a4d5493bf4e61b420e7b4827039bd8409aaed8e8da4a5a03bacc languageName: node linkType: hard -"@parcel/transformer-react-refresh-wrap@npm:2.10.0": - version: 2.10.0 - resolution: "@parcel/transformer-react-refresh-wrap@npm:2.10.0" +"@parcel/transformer-react-refresh-wrap@npm:2.11.0": + version: 2.11.0 + resolution: "@parcel/transformer-react-refresh-wrap@npm:2.11.0" dependencies: - "@parcel/plugin": 2.10.0 - "@parcel/utils": 2.10.0 + "@parcel/plugin": 2.11.0 + "@parcel/utils": 2.11.0 react-refresh: ^0.9.0 - checksum: fc3163bcb03a16a0581d23f2373d87b2b9d10dc49e48297b60a87b5a555ba0cd7e4d3ab1787cac0974c2871ddd9ada0fa0551685037cf4dce518d96e1a371917 + checksum: b17b7a151da31f6abe7e33d798205af3926135e5e936025f74883285519a9fff5207c89fd06c21635965e9d8e46d62450915623d1b5bd97d50297a6633703519 languageName: node linkType: hard -"@parcel/transformer-sass@npm:2.10.0": - version: 2.10.0 - resolution: "@parcel/transformer-sass@npm:2.10.0" +"@parcel/transformer-sass@npm:2.11.0": + version: 2.11.0 + resolution: "@parcel/transformer-sass@npm:2.11.0" dependencies: - "@parcel/plugin": 2.10.0 + "@parcel/plugin": 2.11.0 "@parcel/source-map": ^2.1.1 sass: ^1.38.0 - checksum: 2d697077ac5b74083bca9b071c1677a6bb50b9f41f2b0f3ec381aef3c7ee3f284dc3b4e26c7a50d237a49669534bf05cf704e1c90d2ea5e8b59c62c52a645aa6 + checksum: 8a7248969b6ef21476d38e52dc8404dbec2a2eeaa52107eb3a30ebc0b00269e60a78b14f6606248ef23d0eb57b81ab00f50165eec1db515a93268279c8b4d50f languageName: node linkType: hard -"@parcel/transformer-svg@npm:2.10.0": - version: 2.10.0 - resolution: "@parcel/transformer-svg@npm:2.10.0" +"@parcel/transformer-svg@npm:2.11.0": + version: 2.11.0 + resolution: "@parcel/transformer-svg@npm:2.11.0" dependencies: - "@parcel/diagnostic": 2.10.0 - "@parcel/plugin": 2.10.0 - "@parcel/rust": 2.10.0 + "@parcel/diagnostic": 2.11.0 + "@parcel/plugin": 2.11.0 + "@parcel/rust": 2.11.0 nullthrows: ^1.1.1 posthtml: ^0.16.5 posthtml-parser: ^0.10.1 posthtml-render: ^3.0.0 semver: ^7.5.2 - checksum: d5f55f6eee03053e2ede02cf68534fa3cb579b3d45dc121ce60cbd2de37fd0ec729b7bb536dad923c0f71f2ad0c02938fff887c26741e1f4ac8aaa9fc2e9944e + checksum: 48bf4503ded4328394fcb23ab08856a2b81fda4ec3e7755ec97492511324d66b20ed1f47e0588f011b0319795094e98537683634318eaf53fcd89229f7e9088c languageName: node linkType: hard -"@parcel/types@npm:2.10.0": - version: 2.10.0 - resolution: "@parcel/types@npm:2.10.0" +"@parcel/types@npm:2.11.0": + version: 2.11.0 + resolution: "@parcel/types@npm:2.11.0" dependencies: - "@parcel/cache": 2.10.0 - "@parcel/diagnostic": 2.10.0 - "@parcel/fs": 2.10.0 - "@parcel/package-manager": 2.10.0 + "@parcel/cache": 2.11.0 + "@parcel/diagnostic": 2.11.0 + "@parcel/fs": 2.11.0 + "@parcel/package-manager": 2.11.0 "@parcel/source-map": ^2.1.1 - "@parcel/workers": 2.10.0 + "@parcel/workers": 2.11.0 utility-types: ^3.10.0 - checksum: 387aa079020ffec27f92d9496e0abd5e71e4b8e0ca1c9cf5b692737dd172d037302dd2c9d3cc32143813707050eb9de23e4e4eca32a65c402f6564a08da61e6f + checksum: 8534156cafcd8eeee008f7cdbe91a609c8e3c9d1fe9248c3649e0649379c3c5cd141a038ca06f457e6b46d254f2667fd55d1b89a3cf3f6091ea5102422c8fc41 languageName: node linkType: hard @@ -1657,19 +1658,19 @@ __metadata: languageName: node linkType: hard -"@parcel/utils@npm:2.10.0": - version: 2.10.0 - resolution: "@parcel/utils@npm:2.10.0" +"@parcel/utils@npm:2.11.0": + version: 2.11.0 + resolution: "@parcel/utils@npm:2.11.0" dependencies: - "@parcel/codeframe": 2.10.0 - "@parcel/diagnostic": 2.10.0 - "@parcel/logger": 2.10.0 - "@parcel/markdown-ansi": 2.10.0 - "@parcel/rust": 2.10.0 + "@parcel/codeframe": 2.11.0 + "@parcel/diagnostic": 2.11.0 + "@parcel/logger": 2.11.0 + "@parcel/markdown-ansi": 2.11.0 + "@parcel/rust": 2.11.0 "@parcel/source-map": ^2.1.1 chalk: ^4.1.0 nullthrows: ^1.1.1 - checksum: 9f4953ff9af730b59abbaa6f5f0c452a26848fc52d6f04a0facdc9ebfabb4434fd548ae38a7f882a4a5cd2db5a0b389b540fe7d2ffc6c286323062a764d2cc43 + checksum: e40f4bca049881c9c4b287f0425b197f44e87a958f528e8598304b61bf645ec648ee68b4e7f194de9a3341cdd6857f3fedce71dc8ca7327d8d37017e350f42b7 languageName: node linkType: hard @@ -1710,19 +1711,19 @@ __metadata: languageName: node linkType: hard -"@parcel/workers@npm:2.10.0": - version: 2.10.0 - resolution: "@parcel/workers@npm:2.10.0" +"@parcel/workers@npm:2.11.0": + version: 2.11.0 + resolution: "@parcel/workers@npm:2.11.0" dependencies: - "@parcel/diagnostic": 2.10.0 - "@parcel/logger": 2.10.0 - "@parcel/profiler": 2.10.0 - "@parcel/types": 2.10.0 - "@parcel/utils": 2.10.0 + "@parcel/diagnostic": 2.11.0 + "@parcel/logger": 2.11.0 + "@parcel/profiler": 2.11.0 + "@parcel/types": 2.11.0 + "@parcel/utils": 2.11.0 nullthrows: ^1.1.1 peerDependencies: - "@parcel/core": ^2.10.0 - checksum: e8b1701b53b2f3e913eee98e1e16def38a67d08b4835d25e1dd610505edc2f38c23729ec9b264ccd3c6ea3221814a314b657a3a3c41feebbdb01dcc34e69741c + "@parcel/core": ^2.11.0 + checksum: 0771ad5372a4d27e64d6009df1a81a8a302031dcef041ddd11b43089262af3c4e6c62c0beb05485eddb2a61fc6993eb8ed04379de60cb61988d5195b352e88cc languageName: node linkType: hard @@ -1763,9 +1764,9 @@ __metadata: languageName: node linkType: hard -"@rollup/pluginutils@npm:5.0.5": - version: 5.0.5 - resolution: "@rollup/pluginutils@npm:5.0.5" +"@rollup/pluginutils@npm:5.1.0": + version: 5.1.0 + resolution: "@rollup/pluginutils@npm:5.1.0" dependencies: "@types/estree": ^1.0.0 estree-walker: ^2.0.2 @@ -1775,19 +1776,19 @@ __metadata: peerDependenciesMeta: rollup: optional: true - checksum: dcd4d6e3cb6047f18c465a5f2bcd29995c565f083fb6ca5505bcf2018ae0c16634fd38d99538fbb7dcef4e1b491cf4b4465f8845b5666778a925a27e9202dbab + checksum: 3cc5a6d91452a6eabbfd1ae79b4dd1f1e809d2eecda6e175deb784e75b0911f47e9ecce73f8dd315d6a8b3f362582c91d3c0f66908b6ced69345b3cbe28f8ce8 languageName: node linkType: hard -"@sidvind/better-ajv-errors@npm:^2.0.0": - version: 2.0.0 - resolution: "@sidvind/better-ajv-errors@npm:2.0.0" +"@sidvind/better-ajv-errors@npm:2.1.3": + version: 2.1.3 + resolution: "@sidvind/better-ajv-errors@npm:2.1.3" dependencies: "@babel/code-frame": ^7.16.0 chalk: ^4.1.0 peerDependencies: ajv: 4.11.8 - 8 - checksum: 12b0d87855737d1f36e869f9a55c706fa9eb232dfebaca5209c21d8d5caf7fa25671238064d68e619492c68591a73b6f49fcc1dff182fd77d2370e277033bd60 + checksum: 949cb805a130a61c00895231aa33c1c9e51b72ae21bd59fe088fc9671b0e921b99183d816d34a02fe5d07647477c570a92d7d327c5e99670605e92b0d2ef163b languageName: node linkType: hard @@ -2007,63 +2008,63 @@ __metadata: languageName: node linkType: hard -"@vitejs/plugin-vue@npm:4.4.0": - version: 4.4.0 - resolution: "@vitejs/plugin-vue@npm:4.4.0" +"@vitejs/plugin-vue@npm:4.6.2": + version: 4.6.2 + resolution: "@vitejs/plugin-vue@npm:4.6.2" peerDependencies: - vite: ^4.0.0 + vite: ^4.0.0 || ^5.0.0 vue: ^3.2.25 - checksum: 37b6987951f2e6fac0d2b7bad58aa4392142c1f325b7d189865426dbf97ee6c545aa489f952fa16d2f422adce5b6c9977785f398868c5d2f5333e43e361a0e0b + checksum: 01bc4ed64319444f7dcad89f2c8da209f2a2fae1b7b9308c5f8593b5a307287d23178e7b252e1e6f89b20b69ae6629479e06adb7b49c70f5c409401d657e909b languageName: node linkType: hard -"@vue/compiler-core@npm:3.3.7": - version: 3.3.7 - resolution: "@vue/compiler-core@npm:3.3.7" +"@vue/compiler-core@npm:3.4.13": + version: 3.4.13 + resolution: "@vue/compiler-core@npm:3.4.13" dependencies: - "@babel/parser": ^7.23.0 - "@vue/shared": 3.3.7 + "@babel/parser": ^7.23.6 + "@vue/shared": 3.4.13 + entities: ^4.5.0 estree-walker: ^2.0.2 source-map-js: ^1.0.2 - checksum: 94ac56a5a8409f1302324a4373b5d1eeb474b54a92eb348fa555a8677c2ed99c77fb8c1ce55e969a6b5347f1ff3ee6d6ccd209cbd66de30aa9378498cf5cc84f + checksum: 5f486b5ca816db693f9cee44a8855f4de0bd83de2f423c10c800a19bcf2e864b74e04b75542948cd20baea4824e9c2eec2e492357a0cfe7f1a954177a9442b79 languageName: node linkType: hard -"@vue/compiler-dom@npm:3.3.7": - version: 3.3.7 - resolution: "@vue/compiler-dom@npm:3.3.7" +"@vue/compiler-dom@npm:3.4.13": + version: 3.4.13 + resolution: "@vue/compiler-dom@npm:3.4.13" dependencies: - "@vue/compiler-core": 3.3.7 - "@vue/shared": 3.3.7 - checksum: d54c49fd820d38657efa0342540479784b16b7e2be52cc329c6292b5ef460ff0275e9d7c70c2745cce8321d7ec7886b3bed3441dd0619ea2d97762c8f8a830f9 + "@vue/compiler-core": 3.4.13 + "@vue/shared": 3.4.13 + checksum: 2afdacc03835425bd29a841a4d3a64bf0a60a53d73fc596933ce40e3577c45a7e06edc6f79207890b96a10f4f6bfd74e43ec4807253497fe55cf60db7e12204c languageName: node linkType: hard -"@vue/compiler-sfc@npm:3.3.7": - version: 3.3.7 - resolution: "@vue/compiler-sfc@npm:3.3.7" - dependencies: - "@babel/parser": ^7.23.0 - "@vue/compiler-core": 3.3.7 - "@vue/compiler-dom": 3.3.7 - "@vue/compiler-ssr": 3.3.7 - "@vue/reactivity-transform": 3.3.7 - "@vue/shared": 3.3.7 +"@vue/compiler-sfc@npm:3.4.13": + version: 3.4.13 + resolution: "@vue/compiler-sfc@npm:3.4.13" + dependencies: + "@babel/parser": ^7.23.6 + "@vue/compiler-core": 3.4.13 + "@vue/compiler-dom": 3.4.13 + "@vue/compiler-ssr": 3.4.13 + "@vue/shared": 3.4.13 estree-walker: ^2.0.2 magic-string: ^0.30.5 - postcss: ^8.4.31 + postcss: ^8.4.32 source-map-js: ^1.0.2 - checksum: 593c0b00f359fea7e64dfe2afd6b724063af890776f44bd3b2a99549231e5c62ea418f1f9f1edb849506f3f8fae54ea86c6fc090d1f49d9e8f3a187e7f60ed99 + checksum: 9252b9f10c9f0d730afbd2a2963fbbd2784ffdfa0e9a35c3e0366c5081423c7cb091c35f663ee43d587ade2dea8ed4d0329db76b76d9dd5546c457a7ac65f95d languageName: node linkType: hard -"@vue/compiler-ssr@npm:3.3.7": - version: 3.3.7 - resolution: "@vue/compiler-ssr@npm:3.3.7" +"@vue/compiler-ssr@npm:3.4.13": + version: 3.4.13 + resolution: "@vue/compiler-ssr@npm:3.4.13" dependencies: - "@vue/compiler-dom": 3.3.7 - "@vue/shared": 3.3.7 - checksum: 42f8ddc9ff7fd14431c3e876e032c9ff137e7cd15b86bd19e5187717cfa98e97a8e1a3cbf847bfd9cef7c66a1f4b69ce693787488ca1e8af61df846e5c039495 + "@vue/compiler-dom": 3.4.13 + "@vue/shared": 3.4.13 + checksum: 99fae88e1312b138888e7df90064448a17f368d6e640f726f50233d261eb50e789cee83bc891b09015ea2a5fe0939db0b2c54c9b790e296991f5c420ebab1c20 languageName: node linkType: hard @@ -2074,65 +2075,52 @@ __metadata: languageName: node linkType: hard -"@vue/reactivity-transform@npm:3.3.7": - version: 3.3.7 - resolution: "@vue/reactivity-transform@npm:3.3.7" - dependencies: - "@babel/parser": ^7.23.0 - "@vue/compiler-core": 3.3.7 - "@vue/shared": 3.3.7 - estree-walker: ^2.0.2 - magic-string: ^0.30.5 - checksum: f88d39c8a41a9e868c03ed3765f828cffbcad88938292ef8615e7407e74d3048b5a0fce5038dbee74b608b39b7d52d7fb0d3e6cfe934013f6ef33d80b7d7a68d - languageName: node - linkType: hard - -"@vue/reactivity@npm:3.3.7": - version: 3.3.7 - resolution: "@vue/reactivity@npm:3.3.7" +"@vue/reactivity@npm:3.4.13": + version: 3.4.13 + resolution: "@vue/reactivity@npm:3.4.13" dependencies: - "@vue/shared": 3.3.7 - checksum: 16b629c9979db8d1267abbc89041dc9c9dea2b9a29e369b90486fc7c63df314f8d755c5b7946bf0ca112fa4b749ecb2e87decfc3073126086e41d82e9fe15c05 + "@vue/shared": 3.4.13 + checksum: 883ba2fb31ce9366d51f686c793ebab4374610acb903706d6de095d737079692a6b87b6973b4170af2f363dd82c0d507f41ca49ec345f6b74665d152f4b8b0c8 languageName: node linkType: hard -"@vue/runtime-core@npm:3.3.7": - version: 3.3.7 - resolution: "@vue/runtime-core@npm:3.3.7" +"@vue/runtime-core@npm:3.4.13": + version: 3.4.13 + resolution: "@vue/runtime-core@npm:3.4.13" dependencies: - "@vue/reactivity": 3.3.7 - "@vue/shared": 3.3.7 - checksum: 3fd38c6831fb1f9447a80beab2ed800a185a930695ae7e876032abc7b129388b7769e799cc717881cf8507aeb899d5edea0482ff47c2de3a17e0d056c1da1a6e + "@vue/reactivity": 3.4.13 + "@vue/shared": 3.4.13 + checksum: 196c6c894d416c4a05d3811ff790d1bcc909220007a4aa3aafe03f85bf9d8e8c14dc9dbb063bccee2b4803c8581e50359fc1417e4e786d481e2cfd26f8299358 languageName: node linkType: hard -"@vue/runtime-dom@npm:3.3.7": - version: 3.3.7 - resolution: "@vue/runtime-dom@npm:3.3.7" +"@vue/runtime-dom@npm:3.4.13": + version: 3.4.13 + resolution: "@vue/runtime-dom@npm:3.4.13" dependencies: - "@vue/runtime-core": 3.3.7 - "@vue/shared": 3.3.7 - csstype: ^3.1.2 - checksum: 9331ea0886aa827bad1e7be6cf5e815b014eb6bca2990649f5eff862b75a78c71e8b07f2996821d1b339abf1761f2bcd4c895704be189531e5893e3d95f362fb + "@vue/runtime-core": 3.4.13 + "@vue/shared": 3.4.13 + csstype: ^3.1.3 + checksum: 8811687c23e9f31e87bff8d97f9a20a9d78fe45b66f724fe4bcb2aa669a67328df615aa3bf5ea02a2e22a0c5459bab278e01b5fae31dc22c5e09e765df867bce languageName: node linkType: hard -"@vue/server-renderer@npm:3.3.7": - version: 3.3.7 - resolution: "@vue/server-renderer@npm:3.3.7" +"@vue/server-renderer@npm:3.4.13": + version: 3.4.13 + resolution: "@vue/server-renderer@npm:3.4.13" dependencies: - "@vue/compiler-ssr": 3.3.7 - "@vue/shared": 3.3.7 + "@vue/compiler-ssr": 3.4.13 + "@vue/shared": 3.4.13 peerDependencies: - vue: 3.3.7 - checksum: c2e673d6f78dd499f9803a95d7c3511aaf42e7f8b044b241786f410c60d45fcc3ce67ca9f08d6626b71384360c34c7f6a4abe7fbeba3e65d6e341340dcf09c25 + vue: 3.4.13 + checksum: f17fff6af28f50bc552b5c798cb5ca595651863a52e62e4ed8b53448df870d2311e78ca1d513cf721168c3b17edd66700ccb7fe280372c84d0d8015787a786ee languageName: node linkType: hard -"@vue/shared@npm:3.3.7": - version: 3.3.7 - resolution: "@vue/shared@npm:3.3.7" - checksum: a6718f760b18b5fa68b43e37ca2bbd22f902f2c03f02e655d0e18985fe1f6aceb45553c996d0b8dadde683d3971fb80f35fcbc4cd93630f4f1d403a7d99da3c5 +"@vue/shared@npm:3.4.13": + version: 3.4.13 + resolution: "@vue/shared@npm:3.4.13" + checksum: c514944886d08d85bde55dc4a116ac4c295f5fc003fd70f03bcb64e074c7367703611916cf05101c304c8df2ae91d0f9cddfd54175b94b070d02a90ff07d0411 languageName: node linkType: hard @@ -2455,10 +2443,10 @@ __metadata: languageName: node linkType: hard -"bootstrap-icons@npm:1.11.1": - version: 1.11.1 - resolution: "bootstrap-icons@npm:1.11.1" - checksum: d78ff24a832fc47db0c7ba5d92d150caee6d8e9ccef24c6de5c2d9728b9610884c8ade3ecadcf09fffae207786acdf40bb026ea5b79a774a1ada62026d9fe16b +"bootstrap-icons@npm:1.11.3": + version: 1.11.3 + resolution: "bootstrap-icons@npm:1.11.3" + checksum: d5cdb90fe37af9051f369cbced8aa25bde9c29895f6ab47cbadcfdca71ae5b49093fceb4261c910a84d4352a5a4f998fdae4f1c245897bc6a1042321f4380c07 languageName: node linkType: hard @@ -2541,6 +2529,13 @@ browserlist@latest: languageName: node linkType: hard +"builtin-modules@npm:^3.3.0": + version: 3.3.0 + resolution: "builtin-modules@npm:3.3.0" + checksum: db021755d7ed8be048f25668fe2117620861ef6703ea2c65ed2779c9e3636d5c3b82325bd912244293959ff3ae303afa3471f6a15bf5060c103e4cc3a839749d + languageName: node + linkType: hard + "builtins@npm:^4.0.0": version: 4.1.0 resolution: "builtins@npm:4.1.0" @@ -2559,25 +2554,24 @@ browserlist@latest: languageName: node linkType: hard -"c8@npm:8.0.1": - version: 8.0.1 - resolution: "c8@npm:8.0.1" +"c8@npm:9.1.0": + version: 9.1.0 + resolution: "c8@npm:9.1.0" dependencies: "@bcoe/v8-coverage": ^0.2.3 "@istanbuljs/schema": ^0.1.3 find-up: ^5.0.0 - foreground-child: ^2.0.0 + foreground-child: ^3.1.1 istanbul-lib-coverage: ^3.2.0 istanbul-lib-report: ^3.0.1 istanbul-reports: ^3.1.6 - rimraf: ^3.0.2 test-exclude: ^6.0.0 v8-to-istanbul: ^9.0.0 yargs: ^17.7.2 yargs-parser: ^21.1.1 bin: c8: bin/c8.js - checksum: 2c47531d21cb67b1e533fbb203ddb5a1c4b45d52c004dcf4eb1376ac8df205f2f4a1b2b9611777ca88dadbbcc2bbdad26b8c5f7ca58a02ecd52afa2aebef73fe + checksum: c5249bf9c390784a33b05f5e930f5301793c15105c874a0130839dbf3309ce8832376f77be5e325a40cc2955f455f1d7aea754858befd07eee535dd42b287bbe languageName: node linkType: hard @@ -2635,10 +2629,10 @@ browserlist@latest: languageName: node linkType: hard -"caniuse-lite@npm:1.0.30001538": - version: 1.0.30001538 - resolution: "caniuse-lite@npm:1.0.30001538" - checksum: 94c5d55757a339c7cc175f08a024671e2b4e7c04f130b1015793303d637061347efb6ad84447c3b8137333e742d150b8ad9672716bbf2482646c2e63a56f6c55 +"caniuse-lite@npm:1.0.30001576": + version: 1.0.30001576 + resolution: "caniuse-lite@npm:1.0.30001576" + checksum: b8b332675fe703d5e57b02df5f100345f2a3796c537a42422f5bfc82d3256b8bad3f4e2788553656d2650006d13a4b5db99725e2a9462cc0c8035ba494ba1857 languageName: node linkType: hard @@ -2719,6 +2713,15 @@ browserlist@latest: languageName: node linkType: hard +"cli-progress@npm:^3.12.0": + version: 3.12.0 + resolution: "cli-progress@npm:3.12.0" + dependencies: + string-width: ^4.2.3 + checksum: e8390dc3cdf3c72ecfda0a1e8997bfed63a0d837f97366bbce0ca2ff1b452da386caed007b389f0fe972625037b6c8e7ab087c69d6184cc4dfc8595c4c1d3e6e + languageName: node + linkType: hard + "cliui@npm:^8.0.1": version: 8.0.1 resolution: "cliui@npm:8.0.1" @@ -2911,10 +2914,10 @@ browserlist@latest: languageName: node linkType: hard -"csstype@npm:^3.1.2": - version: 3.1.2 - resolution: "csstype@npm:3.1.2" - checksum: e1a52e6c25c1314d6beef5168da704ab29c5186b877c07d822bd0806717d9a265e8493a2e35ca7e68d0f5d472d43fac1cdce70fd79fd0853dff81f3028d857b5 +"csstype@npm:^3.1.3": + version: 3.1.3 + resolution: "csstype@npm:3.1.3" + checksum: 8db785cc92d259102725b3c694ec0c823f5619a84741b5c7991b8ad135dfaa66093038a1cc63e03361a6cd28d122be48f2106ae72334e067dd619a51f49eddf7 languageName: node linkType: hard @@ -3540,6 +3543,13 @@ browserlist@latest: languageName: node linkType: hard +"entities@npm:^4.5.0": + version: 4.5.0 + resolution: "entities@npm:4.5.0" + checksum: 853f8ebd5b425d350bffa97dd6958143179a5938352ccae092c62d1267c4e392a039be1bae7d51b6e4ffad25f51f9617531fedf5237f15df302ccfb452cbf2d7 + languageName: node + linkType: hard + "env-paths@npm:^2.2.0": version: 2.2.1 resolution: "env-paths@npm:2.2.1" @@ -3746,6 +3756,15 @@ browserlist@latest: languageName: node linkType: hard +"eslint-compat-utils@npm:^0.1.2": + version: 0.1.2 + resolution: "eslint-compat-utils@npm:0.1.2" + peerDependencies: + eslint: ">=6.0.0" + checksum: 2315d9db81efb7f58808053bf32a1d5970b38e01cd8244f4f1b5aa05d883255c5c93fc184e9c29a0e7e2dcf16ff16330977302474d3fa870e41c5bed9c66f76b + languageName: node + linkType: hard + "eslint-config-standard@npm:17.1.0": version: 17.1.0 resolution: "eslint-config-standard@npm:17.1.0" @@ -3792,15 +3811,16 @@ browserlist@latest: languageName: node linkType: hard -"eslint-plugin-es-x@npm:^7.1.0": - version: 7.1.0 - resolution: "eslint-plugin-es-x@npm:7.1.0" +"eslint-plugin-es-x@npm:^7.5.0": + version: 7.5.0 + resolution: "eslint-plugin-es-x@npm:7.5.0" dependencies: "@eslint-community/eslint-utils": ^4.1.2 - "@eslint-community/regexpp": ^4.5.0 + "@eslint-community/regexpp": ^4.6.0 + eslint-compat-utils: ^0.1.2 peerDependencies: eslint: ">=8" - checksum: a19924313ce28214cc1b25fb749e3d977688f23c7fc9f01c3447b5853528b82b63586d94060924b49072b005314695af3b073dcd8f6b965ad1923a2cabf3e9f7 + checksum: e770e57df78c3c38582de9bc4b9632ec5101a6dae8ac84f6ac219e8d8eb137f943db9730e037cfbc82f5d3ab6358e1b494fa6c628f425ebfc7e3094d5aa9d223 languageName: node linkType: hard @@ -3828,9 +3848,9 @@ browserlist@latest: languageName: node linkType: hard -"eslint-plugin-import@npm:2.29.0": - version: 2.29.0 - resolution: "eslint-plugin-import@npm:2.29.0" +"eslint-plugin-import@npm:2.29.1": + version: 2.29.1 + resolution: "eslint-plugin-import@npm:2.29.1" dependencies: array-includes: ^3.1.7 array.prototype.findlastindex: ^1.2.3 @@ -3848,10 +3868,10 @@ browserlist@latest: object.groupby: ^1.0.1 object.values: ^1.1.7 semver: ^6.3.1 - tsconfig-paths: ^3.14.2 + tsconfig-paths: ^3.15.0 peerDependencies: eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 - checksum: 19ee541fb95eb7a796f3daebe42387b8d8262bbbcc4fd8a6e92f63a12035f3d2c6cb8bc0b6a70864fa14b1b50ed6b8e6eed5833e625e16cb6bb98b665beff269 + checksum: e65159aef808136d26d029b71c8c6e4cb5c628e65e5de77f1eb4c13a379315ae55c9c3afa847f43f4ff9df7e54515c77ffc6489c6a6f81f7dd7359267577468c languageName: node linkType: hard @@ -3873,22 +3893,24 @@ browserlist@latest: languageName: node linkType: hard -"eslint-plugin-n@npm:16.2.0": - version: 16.2.0 - resolution: "eslint-plugin-n@npm:16.2.0" +"eslint-plugin-n@npm:16.6.2": + version: 16.6.2 + resolution: "eslint-plugin-n@npm:16.6.2" dependencies: "@eslint-community/eslint-utils": ^4.4.0 builtins: ^5.0.1 - eslint-plugin-es-x: ^7.1.0 + eslint-plugin-es-x: ^7.5.0 get-tsconfig: ^4.7.0 + globals: ^13.24.0 ignore: ^5.2.4 + is-builtin-module: ^3.2.1 is-core-module: ^2.12.1 minimatch: ^3.1.2 resolve: ^1.22.2 semver: ^7.5.3 peerDependencies: eslint: ">=7.0.0" - checksum: 124ba4f418c895d81201ddc0c61cdca246c8aaa652e572653fad0dd66701aaef30598956fbe676726ab1037e600eddeaba52cd1a71b86f41e50a97f6e725055e + checksum: 3b468da0038cf25af582608983491b33ac2d481b6a94a0ff2e715d3b85e1ff8cb93df4cd67b689d520bea1bfb8f2b717f01606bf6b2ea19fe8f9c0999ea7057d languageName: node linkType: hard @@ -3917,20 +3939,20 @@ browserlist@latest: languageName: node linkType: hard -"eslint-plugin-vue@npm:9.18.1": - version: 9.18.1 - resolution: "eslint-plugin-vue@npm:9.18.1" +"eslint-plugin-vue@npm:9.20.1": + version: 9.20.1 + resolution: "eslint-plugin-vue@npm:9.20.1" dependencies: "@eslint-community/eslint-utils": ^4.4.0 natural-compare: ^1.4.0 nth-check: ^2.1.1 postcss-selector-parser: ^6.0.13 semver: ^7.5.4 - vue-eslint-parser: ^9.3.1 + vue-eslint-parser: ^9.4.0 xml-name-validator: ^4.0.0 peerDependencies: eslint: ^6.2.0 || ^7.0.0 || ^8.0.0 - checksum: 774c1e91634f3fce33d5dcb8055959890f2b7620b558f9a5372175b2161d1341d69857d158bb9e97846252722d569126478c0be313bb4d3ac47beac875076f36 + checksum: fe50f4b842469297c6bd272a489f4c7aff72926d3e91b702bb72d2c8698932910e398a5ff74b2419c04fa32a179f6ce78140010bdf977d5c9f02a568a5675c74 languageName: node linkType: hard @@ -4009,14 +4031,14 @@ browserlist@latest: languageName: node linkType: hard -"eslint@npm:8.52.0": - version: 8.52.0 - resolution: "eslint@npm:8.52.0" +"eslint@npm:8.56.0": + version: 8.56.0 + resolution: "eslint@npm:8.56.0" dependencies: "@eslint-community/eslint-utils": ^4.2.0 "@eslint-community/regexpp": ^4.6.1 - "@eslint/eslintrc": ^2.1.2 - "@eslint/js": 8.52.0 + "@eslint/eslintrc": ^2.1.4 + "@eslint/js": 8.56.0 "@humanwhocodes/config-array": ^0.11.13 "@humanwhocodes/module-importer": ^1.0.1 "@nodelib/fs.walk": ^1.2.8 @@ -4053,7 +4075,7 @@ browserlist@latest: text-table: ^0.2.0 bin: eslint: bin/eslint.js - checksum: fd22d1e9bd7090e31b00cbc7a3b98f3b76020a4c4641f987ae7d0c8f52e1b88c3b268bdfdabac2e1a93513e5d11339b718ff45cbff48a44c35d7e52feba510ed + checksum: 883436d1e809b4a25d9eb03d42f584b84c408dbac28b0019f6ea07b5177940bf3cca86208f749a6a1e0039b63e085ee47aca1236c30721e91f0deef5cc5a5136 languageName: node linkType: hard @@ -4239,17 +4261,7 @@ browserlist@latest: languageName: node linkType: hard -"foreground-child@npm:^2.0.0": - version: 2.0.0 - resolution: "foreground-child@npm:2.0.0" - dependencies: - cross-spawn: ^7.0.0 - signal-exit: ^3.0.2 - checksum: f77ec9aff621abd6b754cb59e690743e7639328301fbea6ff09df27d2befaf7dd5b77cec51c32323d73a81a7d91caaf9413990d305cbe3d873eec4fe58960956 - languageName: node - linkType: hard - -"foreground-child@npm:^3.1.0": +"foreground-child@npm:^3.1.0, foreground-child@npm:^3.1.1": version: 3.1.1 resolution: "foreground-child@npm:3.1.1" dependencies: @@ -4516,6 +4528,15 @@ browserlist@latest: languageName: node linkType: hard +"globals@npm:^13.24.0": + version: 13.24.0 + resolution: "globals@npm:13.24.0" + dependencies: + type-fest: ^0.20.2 + checksum: 56066ef058f6867c04ff203b8a44c15b038346a62efbc3060052a1016be9f56f4cf0b2cd45b74b22b81e521a889fc7786c73691b0549c2f3a6e825b3d394f43c + languageName: node + linkType: hard + "globalthis@npm:^1.0.3": version: 1.0.3 resolution: "globalthis@npm:1.0.3" @@ -4626,10 +4647,10 @@ browserlist@latest: languageName: node linkType: hard -"highcharts@npm:11.1.0": - version: 11.1.0 - resolution: "highcharts@npm:11.1.0" - checksum: f9b8cdc38b3b41bcc4c3a2331d9b1c769400639e2d0094484a0f5274aaba619551b95b442a69f7f4e47c2c8445681e3651f6036207fe1928a1a982f5278ae85e +"highcharts@npm:11.3.0": + version: 11.3.0 + resolution: "highcharts@npm:11.3.0" + checksum: 6511a004f772a33bbd5a255e59810149e92fded0dbf947157769d0ce40182d248a2c8af95942be3e95d7b4e30fd044b7e9980e4689f36ba56ee71dac1a4f9977 languageName: node linkType: hard @@ -4647,17 +4668,17 @@ browserlist@latest: languageName: node linkType: hard -"html-validate@npm:8.7.0": - version: 8.7.0 - resolution: "html-validate@npm:8.7.0" +"html-validate@npm:8.9.1": + version: 8.9.1 + resolution: "html-validate@npm:8.9.1" dependencies: "@babel/code-frame": ^7.10.0 "@html-validate/stylish": ^4.1.0 - "@sidvind/better-ajv-errors": ^2.0.0 + "@sidvind/better-ajv-errors": 2.1.3 ajv: ^8.0.0 deepmerge: 4.3.1 glob: ^10.0.0 - ignore: 5.2.4 + ignore: 5.3.0 kleur: ^4.1.0 minimist: ^1.2.0 prompts: ^2.0.0 @@ -4666,7 +4687,7 @@ browserlist@latest: jest: ^27.1 || ^28.1.3 || ^29.0.3 jest-diff: ^27.1 || ^28.1.3 || ^29.0.3 jest-snapshot: ^27.1 || ^28.1.3 || ^29.0.3 - vitest: ^0.34 + vitest: ^0.34 || ^1 peerDependenciesMeta: jest: optional: true @@ -4678,7 +4699,7 @@ browserlist@latest: optional: true bin: html-validate: bin/html-validate.js - checksum: f1b346bad8756262a4669480af0701cdb46e51737ad7e6acdd03ee94ba97413d055ab6d9a848d3d92da39c8a446f846ec19cf3128b2a740e3e692afb4083fa93 + checksum: 31d46f3779635beefe90caafc64a8ddd404232355acaf9d6fc8809781b078fac91b5ff5770391b8392d52cd62bcb522c68f035d72b7491fb13b52e6cbc99ca8f languageName: node linkType: hard @@ -4797,10 +4818,10 @@ browserlist@latest: languageName: node linkType: hard -"ignore@npm:5.2.4, ignore@npm:^5.2.4": - version: 5.2.4 - resolution: "ignore@npm:5.2.4" - checksum: 3d4c309c6006e2621659311783eaea7ebcd41fe4ca1d78c91c473157ad6666a57a2df790fe0d07a12300d9aac2888204d7be8d59f9aaf665b1c7fcdb432517ef +"ignore@npm:5.3.0": + version: 5.3.0 + resolution: "ignore@npm:5.3.0" + checksum: 2736da6621f14ced652785cb05d86301a66d70248597537176612bd0c8630893564bd5f6421f8806b09e8472e75c591ef01672ab8059c07c6eb2c09cefe04bf9 languageName: node linkType: hard @@ -4811,6 +4832,13 @@ browserlist@latest: languageName: node linkType: hard +"ignore@npm:^5.2.4": + version: 5.2.4 + resolution: "ignore@npm:5.2.4" + checksum: 3d4c309c6006e2621659311783eaea7ebcd41fe4ca1d78c91c473157ad6666a57a2df790fe0d07a12300d9aac2888204d7be8d59f9aaf665b1c7fcdb432517ef + languageName: node + linkType: hard + "immutable@npm:^4.0.0": version: 4.0.0 resolution: "immutable@npm:4.0.0" @@ -4948,6 +4976,15 @@ browserlist@latest: languageName: node linkType: hard +"is-builtin-module@npm:^3.2.1": + version: 3.2.1 + resolution: "is-builtin-module@npm:3.2.1" + dependencies: + builtin-modules: ^3.3.0 + checksum: e8f0ffc19a98240bda9c7ada84d846486365af88d14616e737d280d378695c8c448a621dcafc8332dbf0fcd0a17b0763b845400709963fa9151ddffece90ae88 + languageName: node + linkType: hard + "is-callable@npm:^1.1.3, is-callable@npm:^1.2.7": version: 1.2.7 resolution: "is-callable@npm:1.2.7" @@ -5589,10 +5626,10 @@ browserlist@latest: languageName: node linkType: hard -"luxon@npm:3.4.3": - version: 3.4.3 - resolution: "luxon@npm:3.4.3" - checksum: 3eade81506224d038ed24035a0cd0dd4887848d7eba9361dce9ad8ef81380596a68153240be3988721f9690c624fb449fcf8fd8c3fc0681a6a8496faf48e92a3 +"luxon@npm:3.4.4": + version: 3.4.4 + resolution: "luxon@npm:3.4.4" + checksum: 36c1f99c4796ee4bfddf7dc94fa87815add43ebc44c8934c924946260a58512f0fd2743a629302885df7f35ccbd2d13f178c15df046d0e3b6eb71db178f1c60c languageName: node linkType: hard @@ -5792,16 +5829,23 @@ browserlist@latest: languageName: node linkType: hard -"moment-timezone@npm:0.5.43": - version: 0.5.43 - resolution: "moment-timezone@npm:0.5.43" +"moment-timezone@npm:0.5.44": + version: 0.5.44 + resolution: "moment-timezone@npm:0.5.44" dependencies: moment: ^2.29.4 - checksum: 8075c897ed8a044f992ef26fe8cdbcad80caf974251db424cae157473cca03be2830de8c74d99341b76edae59f148c9d9d19c1c1d9363259085688ec1cf508d0 + checksum: 2f1de58f145bb87896ca06afaebaea0904f24542a900208d6a56a54f2fb50b38d9d2b61c46039ed36d0ec575140ff9ba6a5824877551763dbf3db7bda0333781 + languageName: node + linkType: hard + +"moment@npm:2.30.1": + version: 2.30.1 + resolution: "moment@npm:2.30.1" + checksum: 859236bab1e88c3e5802afcf797fc801acdbd0ee509d34ea3df6eea21eb6bcc2abd4ae4e4e64aa7c986aa6cba563c6e62806218e6412a765010712e5fa121ba6 languageName: node linkType: hard -"moment@npm:2.29.4, moment@npm:^2.29.4": +"moment@npm:^2.29.4": version: 2.29.4 resolution: "moment@npm:2.29.4" checksum: 0ec3f9c2bcba38dc2451b1daed5daded747f17610b92427bebe1d08d48d8b7bdd8d9197500b072d14e326dd0ccf3e326b9e3d07c5895d3d49e39b6803b76e80e @@ -5913,6 +5957,18 @@ browserlist@latest: languageName: node linkType: hard +"msgpackr@npm:^1.9.9": + version: 1.10.1 + resolution: "msgpackr@npm:1.10.1" + dependencies: + msgpackr-extract: ^3.0.2 + dependenciesMeta: + msgpackr-extract: + optional: true + checksum: e422d18b01051598b23701eebeb4b9e2c686b9c7826b20f564724837ba2b5cd4af74c91a549eaeaf8186645cc95e8196274a4a19442aa3286ac611b98069c194 + languageName: node + linkType: hard + "murmurhash-js@npm:1.0.0": version: 1.0.0 resolution: "murmurhash-js@npm:1.0.0" @@ -5920,9 +5976,9 @@ browserlist@latest: languageName: node linkType: hard -"naive-ui@npm:2.35.0": - version: 2.35.0 - resolution: "naive-ui@npm:2.35.0" +"naive-ui@npm:2.37.3": + version: 2.37.3 + resolution: "naive-ui@npm:2.37.3" dependencies: "@css-render/plugin-bem": ^0.15.12 "@css-render/vue3-ssr": ^0.15.12 @@ -5931,29 +5987,30 @@ browserlist@latest: "@types/lodash-es": ^4.17.9 async-validator: ^4.2.5 css-render: ^0.15.12 + csstype: ^3.1.3 date-fns: ^2.30.0 date-fns-tz: ^2.0.0 evtd: ^0.2.4 highlight.js: ^11.8.0 lodash: ^4.17.21 lodash-es: ^4.17.21 - seemly: ^0.3.6 + seemly: ^0.3.8 treemate: ^0.3.11 vdirs: ^0.1.8 vooks: ^0.2.12 - vueuc: ^0.4.51 + vueuc: ^0.4.58 peerDependencies: vue: ^3.0.0 - checksum: 53239b8cbe5092f719ac8975c76fd92cfc4b380975ad968843c8bbd0d5f0cd697573fde09480c058cb988d16acfb44757fd59af5049c9e7b388ed22ee49516d4 + checksum: 1a0e72cfb93cabde38560d2482cd2e7d791af570833618952b04531f93b3136d5ac8a27f64871bcbb061d032f6af08b10dfbc31bbb2217a440efa270d51a5a14 languageName: node linkType: hard -"nanoid@npm:^3.3.6": - version: 3.3.6 - resolution: "nanoid@npm:3.3.6" +"nanoid@npm:^3.3.7": + version: 3.3.7 + resolution: "nanoid@npm:3.3.7" bin: nanoid: bin/nanoid.cjs - checksum: 7d0eda657002738aa5206107bd0580aead6c95c460ef1bdd0b1a87a9c7ae6277ac2e9b945306aaa5b32c6dcb7feaf462d0f552e7f8b5718abfc6ead5c94a71b3 + checksum: d36c427e530713e4ac6567d488b489a36582ef89da1d6d4e3b87eded11eb10d7042a877958c6f104929809b2ab0bafa17652b076cdf84324aa75b30b722204f2 languageName: node linkType: hard @@ -6275,27 +6332,27 @@ browserlist@latest: languageName: node linkType: hard -"parcel@npm:2.10.0": - version: 2.10.0 - resolution: "parcel@npm:2.10.0" +"parcel@npm:2.11.0": + version: 2.11.0 + resolution: "parcel@npm:2.11.0" dependencies: - "@parcel/config-default": 2.10.0 - "@parcel/core": 2.10.0 - "@parcel/diagnostic": 2.10.0 - "@parcel/events": 2.10.0 - "@parcel/fs": 2.10.0 - "@parcel/logger": 2.10.0 - "@parcel/package-manager": 2.10.0 - "@parcel/reporter-cli": 2.10.0 - "@parcel/reporter-dev-server": 2.10.0 - "@parcel/reporter-tracer": 2.10.0 - "@parcel/utils": 2.10.0 + "@parcel/config-default": 2.11.0 + "@parcel/core": 2.11.0 + "@parcel/diagnostic": 2.11.0 + "@parcel/events": 2.11.0 + "@parcel/fs": 2.11.0 + "@parcel/logger": 2.11.0 + "@parcel/package-manager": 2.11.0 + "@parcel/reporter-cli": 2.11.0 + "@parcel/reporter-dev-server": 2.11.0 + "@parcel/reporter-tracer": 2.11.0 + "@parcel/utils": 2.11.0 chalk: ^4.1.0 commander: ^7.0.0 get-port: ^4.2.0 bin: parcel: lib/bin.js - checksum: fe25ddcf2d5cdd133b8acdcb532b030dc14c9fb75df0ab53a745ee56171ffaf526f1a4ce58d35d63a89f245ca6bcba0ce7736564cdc68912c779651e1c5eca07 + checksum: 1990c725049161755c3556effc8d940fb6d05edfd2f2a74bb507d0d9bdd17d2e6d73ac45d1ded9ff31d94549a364cd109c2827de6a0a956e672aa0999f283879 languageName: node linkType: hard @@ -6432,24 +6489,24 @@ browserlist@latest: linkType: hard "postcss@npm:^8.4.27": - version: 8.4.27 - resolution: "postcss@npm:8.4.27" + version: 8.4.33 + resolution: "postcss@npm:8.4.33" dependencies: - nanoid: ^3.3.6 + nanoid: ^3.3.7 picocolors: ^1.0.0 source-map-js: ^1.0.2 - checksum: 1cdd0c298849df6cd65f7e646a3ba36870a37b65f55fd59d1a165539c263e9b4872a402bf4ed1ca1bc31f58b68b2835545e33ea1a23b161a1f8aa6d5ded81e78 + checksum: 6f98b2af4b76632a3de20c4f47bf0e984a1ce1a531cf11adcb0b1d63a6cbda0aae4165e578b66c32ca4879038e3eaad386a6be725a8fb4429c78e3c1ab858fe9 languageName: node linkType: hard -"postcss@npm:^8.4.31": - version: 8.4.31 - resolution: "postcss@npm:8.4.31" +"postcss@npm:^8.4.32": + version: 8.4.32 + resolution: "postcss@npm:8.4.32" dependencies: - nanoid: ^3.3.6 + nanoid: ^3.3.7 picocolors: ^1.0.0 source-map-js: ^1.0.2 - checksum: 1d8611341b073143ad90486fcdfeab49edd243377b1f51834dc4f6d028e82ce5190e4f11bb2633276864503654fb7cab28e67abdc0fbf9d1f88cad4a0ff0beea + checksum: 220d9d0bf5d65be7ed31006c523bfb11619461d296245c1231831f90150aeb4a31eab9983ac9c5c89759a3ca8b60b3e0d098574964e1691673c3ce5c494305ae languageName: node linkType: hard @@ -6893,8 +6950,8 @@ browserlist@latest: linkType: hard "rollup@npm:^3.27.1": - version: 3.28.0 - resolution: "rollup@npm:3.28.0" + version: 3.29.4 + resolution: "rollup@npm:3.29.4" dependencies: fsevents: ~2.3.2 dependenciesMeta: @@ -6902,7 +6959,7 @@ browserlist@latest: optional: true bin: rollup: dist/bin/rollup - checksum: 6ded4a0d3ca531d68e82897d5eebaa9d085014a062620bc328f2859ccf78d6a148a51ed53f1275a5f89b55cc6d7b1440b7cee44e5a9e3a51442f809b4b26f727 + checksum: 8bb20a39c8d91130825159c3823eccf4dc2295c9a0a5c4ed851a5bf2167dbf24d9a29f23461a54c955e5506395e6cc188eafc8ab0e20399d7489fb33793b184e languageName: node linkType: hard @@ -6910,40 +6967,40 @@ browserlist@latest: version: 0.0.0-use.local resolution: "root-workspace-0b6124@workspace:." dependencies: - "@fullcalendar/bootstrap5": 6.1.9 - "@fullcalendar/core": 6.1.9 - "@fullcalendar/daygrid": 6.1.9 - "@fullcalendar/icalendar": 6.1.9 - "@fullcalendar/interaction": 6.1.9 - "@fullcalendar/list": 6.1.9 - "@fullcalendar/luxon3": 6.1.9 - "@fullcalendar/timegrid": 6.1.9 - "@fullcalendar/vue3": 6.1.9 - "@parcel/optimizer-data-url": 2.10.0 - "@parcel/transformer-inline-string": 2.10.0 - "@parcel/transformer-sass": 2.10.0 + "@fullcalendar/bootstrap5": 6.1.10 + "@fullcalendar/core": 6.1.10 + "@fullcalendar/daygrid": 6.1.10 + "@fullcalendar/icalendar": 6.1.10 + "@fullcalendar/interaction": 6.1.10 + "@fullcalendar/list": 6.1.10 + "@fullcalendar/luxon3": 6.1.10 + "@fullcalendar/timegrid": 6.1.10 + "@fullcalendar/vue3": 6.1.10 + "@parcel/optimizer-data-url": 2.11.0 + "@parcel/transformer-inline-string": 2.11.0 + "@parcel/transformer-sass": 2.11.0 "@popperjs/core": 2.11.8 - "@rollup/pluginutils": 5.0.5 + "@rollup/pluginutils": 5.1.0 "@twuni/emojify": 1.0.2 - "@vitejs/plugin-vue": 4.4.0 + "@vitejs/plugin-vue": 4.6.2 bootstrap: 5.3.2 - bootstrap-icons: 1.11.1 + bootstrap-icons: 1.11.3 browser-fs-access: 0.35.0 browserlist: latest - c8: 8.0.1 - caniuse-lite: 1.0.30001538 + c8: 9.1.0 + caniuse-lite: 1.0.30001576 d3: 7.8.5 - eslint: 8.52.0 + eslint: 8.56.0 eslint-config-standard: 17.1.0 eslint-plugin-cypress: 2.15.1 - eslint-plugin-import: 2.29.0 - eslint-plugin-n: 16.2.0 + eslint-plugin-import: 2.29.1 + eslint-plugin-n: 16.6.2 eslint-plugin-node: 11.1.0 eslint-plugin-promise: 6.1.1 - eslint-plugin-vue: 9.18.1 + eslint-plugin-vue: 9.20.1 file-saver: 2.0.5 - highcharts: 11.1.0 - html-validate: 8.7.0 + highcharts: 11.3.0 + html-validate: 8.9.1 ical.js: 1.5.0 jquery: 3.7.1 jquery-migrate: 3.4.1 @@ -6951,27 +7008,27 @@ browserlist@latest: list.js: 2.3.1 lodash: 4.17.21 lodash-es: 4.17.21 - luxon: 3.4.3 - moment: 2.29.4 - moment-timezone: 0.5.43 + luxon: 3.4.4 + moment: 2.30.1 + moment-timezone: 0.5.44 ms: 2.1.3 murmurhash-js: 1.0.0 - naive-ui: 2.35.0 - parcel: 2.10.0 + naive-ui: 2.37.3 + parcel: 2.11.0 pinia: 2.1.7 pinia-plugin-persist: 1.0.0 pug: 3.0.2 - sass: 1.69.4 + sass: 1.69.7 seedrandom: 3.0.5 select2: 4.1.0-rc.0 select2-bootstrap-5-theme: 1.3.0 send: 0.18.0 shepherd.js: 11.2.0 slugify: 1.6.6 - sortablejs: 1.15.0 + sortablejs: 1.15.2 vanillajs-datepicker: 1.3.4 - vite: 4.5.0 - vue: 3.3.7 + vite: 4.5.1 + vue: 3.4.13 vue-router: 4.2.5 zxcvbn: 4.4.2 languageName: unknown @@ -7037,16 +7094,16 @@ browserlist@latest: languageName: node linkType: hard -"sass@npm:1.69.4": - version: 1.69.4 - resolution: "sass@npm:1.69.4" +"sass@npm:1.69.7": + version: 1.69.7 + resolution: "sass@npm:1.69.7" dependencies: chokidar: ">=3.0.0 <4.0.0" immutable: ^4.0.0 source-map-js: ">=0.6.2 <2.0.0" bin: sass: sass.js - checksum: ed5558445b59dfa711e094f804e4a360544dd916c069ee211e1c687446146721d91d4304f33fe5df3966a10de96eba43369beb2e14f0881c285424e5e44cf360 + checksum: c67cd32b69fb26a50e4535353e4145de8cbc8187db07c467cc335157fd56d03cae98754f86efe43b880b29f20c0a168ab972c7f74ebfe234e2bd2dfb868890cb languageName: node linkType: hard @@ -7077,6 +7134,13 @@ browserlist@latest: languageName: node linkType: hard +"seemly@npm:^0.3.8": + version: 0.3.8 + resolution: "seemly@npm:0.3.8" + checksum: 98171fd4d9e3a03f49f695885499883c85cc00b8d88bc4a12576d5069b46ebe269d2dfc58a7e6cec8887bf2b2511d074376eb837c14b476918f9a8706ed5977a + languageName: node + linkType: hard + "select2-bootstrap-5-theme@npm:1.3.0": version: 1.3.0 resolution: "select2-bootstrap-5-theme@npm:1.3.0" @@ -7248,7 +7312,7 @@ browserlist@latest: languageName: node linkType: hard -"signal-exit@npm:^3.0.2, signal-exit@npm:^3.0.7": +"signal-exit@npm:^3.0.7": version: 3.0.7 resolution: "signal-exit@npm:3.0.7" checksum: a2f098f247adc367dffc27845853e9959b9e88b01cb301658cfe4194352d8d2bb32e18467c786a7fe15f1d44b233ea35633d076d5e737870b7139949d1ab6318 @@ -7304,10 +7368,10 @@ browserlist@latest: languageName: node linkType: hard -"sortablejs@npm:1.15.0": - version: 1.15.0 - resolution: "sortablejs@npm:1.15.0" - checksum: bb82223a663484640d317cad510ac987f26b7a443631040407224de1be069afcc6c39048b6d8527f10f269e33595e8128d7de2fac23517c8260470f77f932d55 +"sortablejs@npm:1.15.2": + version: 1.15.2 + resolution: "sortablejs@npm:1.15.2" + checksum: 36b20b144ff5fd2d078aed0eba3349aaef5691e4830ba9a28d69ca023d4583ca15e5eacb3c09c1d9924675388400d1219def1121e514badfb0f41463cc844da7 languageName: node linkType: hard @@ -7583,15 +7647,15 @@ browserlist@latest: languageName: node linkType: hard -"tsconfig-paths@npm:^3.14.2": - version: 3.14.2 - resolution: "tsconfig-paths@npm:3.14.2" +"tsconfig-paths@npm:^3.15.0": + version: 3.15.0 + resolution: "tsconfig-paths@npm:3.15.0" dependencies: "@types/json5": ^0.0.29 json5: ^1.0.2 minimist: ^1.2.6 strip-bom: ^3.0.0 - checksum: a6162eaa1aed680537f93621b82399c7856afd10ec299867b13a0675e981acac4e0ec00896860480efc59fc10fd0b16fdc928c0b885865b52be62cadac692447 + checksum: 59f35407a390d9482b320451f52a411a256a130ff0e7543d18c6f20afab29ac19fbe55c360a93d6476213cc335a4d76ce90f67df54c4e9037f7d240920832201 languageName: node linkType: hard @@ -7747,9 +7811,9 @@ browserlist@latest: languageName: node linkType: hard -"vite@npm:4.5.0": - version: 4.5.0 - resolution: "vite@npm:4.5.0" +"vite@npm:4.5.1": + version: 4.5.1 + resolution: "vite@npm:4.5.1" dependencies: esbuild: ^0.18.10 fsevents: ~2.3.2 @@ -7783,7 +7847,7 @@ browserlist@latest: optional: true bin: vite: bin/vite.js - checksum: 06f1a4c858e4dc4c04a10466f4ccacea30c5a9f8574e5ba3deb9d03fa20e80ca6797f02dad97a988da7cdef96238dbc69c3b6a538156585c74722d996223619e + checksum: 72b3584b3d3b8d14e8a37f0248e47fb8b4d02ab35de5b5a8e5ca8ae55c3be2aab73760dc36edac4fa722de182f78cc492eb44888fcb4a9a0712c4605dad644f9 languageName: node linkType: hard @@ -7837,9 +7901,9 @@ browserlist@latest: languageName: node linkType: hard -"vue-eslint-parser@npm:^9.3.1": - version: 9.3.1 - resolution: "vue-eslint-parser@npm:9.3.1" +"vue-eslint-parser@npm:^9.4.0": + version: 9.4.0 + resolution: "vue-eslint-parser@npm:9.4.0" dependencies: debug: ^4.3.4 eslint-scope: ^7.1.1 @@ -7850,7 +7914,7 @@ browserlist@latest: semver: ^7.3.6 peerDependencies: eslint: ">=6.0.0" - checksum: 6d1476b45fcc5b456a1e5c0f33ec695cf1d392ca6113250d5e3441e6cf3b2a0ec28a9455699363641dfb7c48358f215db07856c98385a31ace9bc58196f4156e + checksum: b53d05d3ba5828aafc14486d862350ccc9784642f6274495ddac89eaa7508f7ffeb85a707bf7faf0ed72d6a361f82b374ce0b3462a01c91cf4577ec3cf4ea9c6 languageName: node linkType: hard @@ -7865,27 +7929,27 @@ browserlist@latest: languageName: node linkType: hard -"vue@npm:3.3.7": - version: 3.3.7 - resolution: "vue@npm:3.3.7" +"vue@npm:3.4.13": + version: 3.4.13 + resolution: "vue@npm:3.4.13" dependencies: - "@vue/compiler-dom": 3.3.7 - "@vue/compiler-sfc": 3.3.7 - "@vue/runtime-dom": 3.3.7 - "@vue/server-renderer": 3.3.7 - "@vue/shared": 3.3.7 + "@vue/compiler-dom": 3.4.13 + "@vue/compiler-sfc": 3.4.13 + "@vue/runtime-dom": 3.4.13 + "@vue/server-renderer": 3.4.13 + "@vue/shared": 3.4.13 peerDependencies: typescript: "*" peerDependenciesMeta: typescript: optional: true - checksum: 463599d2a521de3a9e6d09d57bfa7a4fe4a96fadf4212c375d34e2547a7c08159138703c096471da9cf4d6c0b15a140dc245e9fbc2904e762067e220d40bdc8f + checksum: c9f8edf5fc8bcab2254a8b4cbcb9c6fa6c0f588521ecf98b8a315da1e87e817c50a2ab2d2f0339518bf9cbe252a558a44b36bef25825c11d8f9b1e214608b6c0 languageName: node linkType: hard -"vueuc@npm:^0.4.51": - version: 0.4.51 - resolution: "vueuc@npm:0.4.51" +"vueuc@npm:^0.4.58": + version: 0.4.58 + resolution: "vueuc@npm:0.4.58" dependencies: "@css-render/vue3-ssr": ^0.15.10 "@juggle/resize-observer": ^3.3.1 @@ -7896,7 +7960,7 @@ browserlist@latest: vooks: ^0.2.4 peerDependencies: vue: ^3.0.11 - checksum: 7969659facd8a1f7b7676bf5629d00a4830a648c279f3632c711ceedf8f7d7f6c8f61546a2dec74e2f2ff91e9185dcd76136bef7ae6eeac38bb1c6129840cfac + checksum: fb0b9a69be553ccbdc314eec22433d99022ef065d6e6add4b1177ebada6de6d05b4ece36af4ee37a750687215ec966880c17d6b6dd2d0ea38a7958f584da74b9 languageName: node linkType: hard