diff --git a/.env.ci b/.env.ci index 40ce2768..21ee262b 100644 --- a/.env.ci +++ b/.env.ci @@ -34,7 +34,12 @@ SESSION_DRIVER=database SESSION_LIFETIME=120 # Mail -MAIL_MAILER=log +MAIL_MAILER=smtp +MAIL_HOST=localhost +MAIL_PORT=1025 +MAIL_USERNAME=null +MAIL_PASSWORD=null +MAIL_ENCRYPTION=null MAIL_FROM_ADDRESS="no-reply@solidtime.test" MAIL_FROM_NAME="solidtime" MAIL_REPLY_TO_ADDRESS="hello@solidtime.test" @@ -56,3 +61,6 @@ TELESCOPE_ENABLED=false # Services GOTENBERG_URL=http://0.0.0.0:3000 + +# Octane +OCTANE_SERVER=frankenphp diff --git a/.github/workflows/playwright.yml b/.github/workflows/playwright.yml index 5fe5258c..148e6bf7 100644 --- a/.github/workflows/playwright.yml +++ b/.github/workflows/playwright.yml @@ -10,10 +10,18 @@ jobs: if: false # Temporarily disabled runs-on: ubuntu-latest timeout-minutes: 60 + strategy: + fail-fast: false + matrix: + shardIndex: [1, 2, 3, 4, 5, 6, 7, 8] + shardTotal: [8] services: mailpit: image: 'axllent/mailpit:latest' + ports: + - 1025:1025 + - 8025:8025 pgsql_test: image: postgres:15 env: @@ -61,22 +69,63 @@ jobs: - name: "Build Frontend" run: npm run build - - name: "Run Laravel Server" - run: php artisan serve > /dev/null 2>&1 & + - name: "Install FrankenPHP" + run: | + ARCH="$(uname -m)" + curl -fsSL "https://github.com/dunglas/frankenphp/releases/latest/download/frankenphp-linux-${ARCH}" -o /usr/local/bin/frankenphp + chmod +x /usr/local/bin/frankenphp + + - name: "Run Laravel Octane Server" + run: php artisan octane:start --server=frankenphp --host=127.0.0.1 --port=8000 --workers=4 --max-requests=500 > /dev/null 2>&1 & + env: + OCTANE_SERVER: frankenphp - name: "Install Playwright Browsers" run: npx playwright install --with-deps - name: "Run Playwright tests" - run: npx playwright test + run: npx playwright test --shard=${{ matrix.shardIndex }}/${{ matrix.shardTotal }} env: PLAYWRIGHT_BASE_URL: 'http://127.0.0.1:8000' + MAILPIT_BASE_URL: 'http://localhost:8025' - - name: "Upload test results" + - name: "Upload blob report" uses: actions/upload-artifact@v4 if: always() with: - name: test-results - path: test-results/ - retention-days: 30 + name: blob-report-${{ matrix.shardIndex }} + path: blob-report/ + retention-days: 7 + + merge-reports: + if: needs.test.result == 'success' + needs: [test] + runs-on: ubuntu-latest + steps: + - name: "Checkout code" + uses: actions/checkout@v4 + + - name: "Setup node" + uses: actions/setup-node@v4 + with: + node-version: '20.x' + + - name: "Install dependencies" + run: npm ci + - name: "Download blob reports" + uses: actions/download-artifact@v4 + with: + path: all-blob-reports + pattern: blob-report-* + merge-multiple: true + + - name: "Merge reports" + run: npx playwright merge-reports --reporter html ./all-blob-reports + + - name: "Upload merged HTML report" + uses: actions/upload-artifact@v4 + with: + name: playwright-report + path: playwright-report/ + retention-days: 30 diff --git a/INTERNAL_CHANGES_GUIDE.md b/INTERNAL_CHANGES_GUIDE.md index 0bcd7191..8e11b3ed 100644 --- a/INTERNAL_CHANGES_GUIDE.md +++ b/INTERNAL_CHANGES_GUIDE.md @@ -245,16 +245,16 @@ Numbers are: [insertions] [deletions] [path] ### High-Level Notes by Category - **Repo hygiene:** Issue/PR templates removed; internal `INTERNAL_CHANGES_GUIDE.md` added; several project policy docs removed. - **CI:** Multiple GitHub workflows adjusted; some workflows removed; minor 1-line tweaks in remaining workflows. -- **Backend:** Small changes in `ClientController`, `ProjectController`, and `ShareInertiaData` middleware; minor DB config tweak; Composer dependencies updated. +- **Backend:** Client/Project API delete flows are enabled, original guard behavior is restored, and default index ordering matches pre-disable behavior; DB read/write host split remains in place. - **Docker:** Local and production Docker files removed (compose, Dockerfiles, configs, scripts). -- **Frontend:** Multiple Vue components updated across Clients/Projects tables, dropdowns, and pages; navigation and layout tweaks; utility hooks adjusted. +- **Frontend:** Clients/Projects search is restored, delete actions are available again from row menus, and table heading/status/billable-rate UI behavior is restored. - **Tests:** e2e tests (`clients.spec.ts`, `projects.spec.ts`) updated. ### API Behavior Changes (Upgrade Notes) -- Clients API: `GET /api/v1/organizations/{org}/clients` now returns clients ordered by `name` ascending (was `created_at` desc). If you rely on ordering, update your consumers accordingly. -- Projects API: `GET /api/v1/organizations/{org}/projects` now returns projects ordered by `name` ascending (was `created_at`-based ordering in some flows). If you relied on creation-time ordering, sort client-side or use a dedicated query param in future versions. -- Clients API: `DELETE /api/v1/organizations/{org}/clients/{client}` is disabled. It now returns `200` with `{ message: "Client deletion disabled" }` and does not delete data. -- Projects API: `DELETE /api/v1/organizations/{org}/projects/{project}` is disabled. It now returns `200` with `{ message: "Project deletion disabled" }` and does not delete data. +- Clients API: `GET /api/v1/organizations/{org}/clients` default ordering is `created_at` descending. +- Projects API: `GET /api/v1/organizations/{org}/projects` keeps creation-time-first ordering semantics (`created_at` descending in the index result). +- Clients API: `DELETE /api/v1/organizations/{org}/clients/{client}` is enabled. It returns `400` when the client is still in use by projects; otherwise it deletes and returns `204`. +- Projects API: `DELETE /api/v1/organizations/{org}/projects/{project}` is enabled. It returns `400` when still in use by tasks/time entries; otherwise it deletes related project members and returns `204`. ### Step-by-Step Protocol (detailed) 1) Clean and position on base (or desired) revision. diff --git a/INTERNAL_CHANGES_GUIDE.patch b/INTERNAL_CHANGES_GUIDE.patch deleted file mode 100644 index b9a05ba8..00000000 --- a/INTERNAL_CHANGES_GUIDE.patch +++ /dev/null @@ -1,12072 +0,0 @@ -diff --git a/.github/ISSUE_TEMPLATE/1_bug_report.yml b/.github/ISSUE_TEMPLATE/1_bug_report.yml -deleted file mode 100644 -index 5c610ee..0000000 ---- a/.github/ISSUE_TEMPLATE/1_bug_report.yml -+++ /dev/null -@@ -1,47 +0,0 @@ --name: Bug Report --description: "Report a bug" --body: -- - type: markdown -- attributes: -- value: | -- Before creating a new bug report, please check that there isn't already a similar issue. -- -- - type: textarea -- attributes: -- label: Description -- description: A clear and concise description of what the bug is. -- validations: -- required: true -- -- - type: textarea -- attributes: -- label: "Steps To Reproduce" -- description: How do you trigger this bug? Please walk us through it step by step. -- value: | -- 1. -- 2. -- 3. -- ... -- validations: -- required: false -- -- - type: dropdown -- attributes: -- label: "Self-hosted or Cloud?" -- options: -- - Self-Hosted -- - solidtime Cloud -- - Both -- -- - type: input -- attributes: -- label: "Version of solidtime: (for self-hosted)" -- validations: -- required: false -- -- - type: input -- attributes: -- label: "solidtime self-hosting guide: (for self-hosted)" -- description: "Did you use the official guide to self-host solidtime? If yes, which one?" -- validations: -- required: false -diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml -deleted file mode 100644 -index b04f17c..0000000 ---- a/.github/ISSUE_TEMPLATE/config.yml -+++ /dev/null -@@ -1,8 +0,0 @@ --blank_issues_enabled: false --contact_links: -- - name: 🚀 Feature Request -- url: https://github.com/solidtime-io/solidtime/discussions/new?category=feature-requests -- about: Share ideas for new features -- - name: ❓ Ask a Question -- url: https://github.com/solidtime-io/solidtime/discussions/new?category=general -- about: Ask the community for help -diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md -deleted file mode 100644 -index 88b18c4..0000000 ---- a/.github/PULL_REQUEST_TEMPLATE.md -+++ /dev/null -@@ -1,11 +0,0 @@ --## What does this PR do? -- -- -- --- Fixes #XXXX (GitHub issue number) -- --## Checklist (DO NOT REMOVE) -- --- [ ] I read the [contributing guide](https://github.com/solidtime-io/solidtime/blob/main/CONTRIBUTING.md) --- [ ] I signed the [Contributor License Agreement](https://cla-assistant.io/solidtime-io/solidtime). --- [ ] I commented my code, particularly in hard-to-understand areas -diff --git a/.github/workflows/README.md b/.github/workflows/README.md -new file mode 100644 -index 0000000..693e66a ---- /dev/null -+++ b/.github/workflows/README.md -@@ -0,0 +1,4 @@ -+This directory contains GitHub Actions workflows for CI/CD. -+ -+All workflows are updated to target PHP 8.4 using `shivammathur/setup-php@v2`. -+ -diff --git a/.github/workflows/build-private.yml b/.github/workflows/build-private.yml -deleted file mode 100644 -index c335519..0000000 ---- a/.github/workflows/build-private.yml -+++ /dev/null -@@ -1,199 +0,0 @@ --on: -- push: -- branches: -- - main -- - develop -- tags: -- - '*' -- pull_request: -- paths: -- - '.github/workflows/build-private.yml' -- - 'docker/prod/**' -- workflow_dispatch: --permissions: -- contents: read -- --name: Build - Private --jobs: -- build: -- runs-on: ubuntu-latest -- timeout-minutes: 20 -- -- -- steps: -- - name: "Check out code" -- uses: actions/checkout@v4 -- with: -- fetch-depth: 0 # Required for WyriHaximus/github-action-get-previous-tag -- -- - name: "Get build" -- id: build -- run: echo "build=$(git rev-parse --short=8 HEAD)" >> "$GITHUB_OUTPUT" -- -- - name: "Get Previous tag (normal push)" -- id: previoustag -- if: ${{ !startsWith(github.ref, 'refs/tags/v') }} -- uses: "WyriHaximus/github-action-get-previous-tag@v1" -- with: -- prefix: "v" -- -- - name: "Get version" -- id: version -- run: | -- if ${{ !startsWith(github.ref, 'refs/tags/v') }}; then -- if ${{ startsWith(steps.previoustag.outputs.tag, 'v') }}; then -- version=$(echo "${{ steps.previoustag.outputs.tag }}" | cut -c 2-) -- echo "app_version=${version}" >> "$GITHUB_OUTPUT" -- else -- echo "ERROR: No previous tag found"; -- exit 1; -- fi -- else -- version=$(echo "${{ github.ref }}" | cut -c 12-) -- echo "app_version=${version}" >> "$GITHUB_OUTPUT" -- fi -- -- - name: "Copy .env template for production" -- run: | -- cp .env.production .env -- rm .env.production .env.ci .env.example -- -- - name: "Add version to .env" -- run: sed -i 's/APP_VERSION=0.0.0/APP_VERSION=${{ steps.version.outputs.app_version }}/g' .env -- -- - name: "Add build to .env" -- run: sed -i 's/APP_BUILD=0/APP_BUILD=${{ steps.build.outputs.build }}/g' .env -- -- - name: "Output .env" -- run: cat .env -- -- - name: "Use Node.js" -- uses: actions/setup-node@v4 -- with: -- node-version: '20.x' -- -- - name: "Checkout billing extension" -- uses: actions/checkout@v4 -- with: -- repository: solidtime-io/extension-billing -- path: extensions/Billing -- ssh-key: ${{ secrets.SSH_PRIVATE_KEY_BILLING_EXTENSION }} -- -- - name: "Install dependencies in billing extension" -- uses: php-actions/composer@v6 -- env: -- COMPOSER_AUTH: '{"http-basic": {"spark.laravel.com": {"username": "gregor@vostrak.at", "password": "${{ secrets.LARAVEL_SPARK_API_KEY }}"}}}' -- with: -- working_dir: "extensions/Billing" -- command: install -- only_args: --no-dev --no-ansi --no-interaction --prefer-dist --ignore-platform-reqs --classmap-authoritative -- php_version: 8.3 -- -- - name: "Install npm dependencies in billing extension" -- run: cd extensions/Billing && npm ci -- -- - name: "Checkout services extension" -- uses: actions/checkout@v4 -- with: -- repository: solidtime-io/extension-services -- path: extensions/Services -- ssh-key: ${{ secrets.SSH_PRIVATE_KEY_SERVICES_EXTENSION }} -- -- - name: "Install composer dependencies in services extension" -- uses: php-actions/composer@v6 -- with: -- working_dir: "extensions/Services" -- command: install -- only_args: --no-dev --no-ansi --no-interaction --prefer-dist --ignore-platform-reqs --classmap-authoritative -- php_version: 8.3 -- -- - name: "Install npm dependencies in services extension" -- run: cd extensions/Services && npm ci -- -- - name: "Checkout invoicing extension" -- uses: actions/checkout@v4 -- with: -- repository: solidtime-io/extension-invoicing -- path: extensions/Invoicing -- ssh-key: ${{ secrets.SSH_PRIVATE_KEY_INVOICING_EXTENSION }} -- -- - name: "Install composer dependencies in invoicing extension" -- uses: php-actions/composer@v6 -- with: -- working_dir: "extensions/Invoicing" -- command: install -- only_args: --no-dev --no-ansi --no-interaction --prefer-dist --ignore-platform-reqs --classmap-authoritative -- php_version: 8.3 -- -- - name: "Install npm dependencies in invoicing extension" -- run: cd extensions/Invoicing && npm ci -- -- - name: "Setup PHP with PECL extension" -- uses: shivammathur/setup-php@v2 -- with: -- php-version: '8.3' -- extensions: mbstring, dom, fileinfo, pgsql -- -- - name: "Install dependencies" -- uses: php-actions/composer@v6 -- if: steps.cache-vendor.outputs.cache-hit != 'true' # Skip if cache hit -- with: -- command: install -- only_args: --no-dev --no-ansi --no-interaction --prefer-dist --ignore-platform-reqs --classmap-authoritative -- php_version: 8.3 -- -- - name: "Activate billing extension" -- run: php artisan module:enable Billing -- -- - name: "Activate services extension" -- run: php artisan module:enable Services -- -- - name: "Activate invoicing extension" -- run: php artisan module:enable Invoicing -- -- - name: "Install npm dependencies" -- run: npm ci -- -- - name: "Build" -- run: npm run build -- env: -- SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }} -- -- - name: "Login to GitHub Container Registry" -- uses: docker/login-action@v3 -- with: -- registry: rg.fr-par.scw.cloud/solidtime -- username: nologin -- password: ${{ secrets.SCALEWAY_REGISTRY_TOKEN }} -- -- - name: "Docker meta" -- id: "meta" -- uses: docker/metadata-action@v5 -- with: -- images: rg.fr-par.scw.cloud/solidtime/solidtime -- tags: | -- type=ref,event=branch -- type=ref,event=pr -- type=semver,pattern={{version}} -- type=semver,pattern={{major}}.{{minor}} -- type=sha,format=long -- -- - name: "Set up QEMU" -- uses: docker/setup-qemu-action@v3 -- -- - name: "Set up Docker Buildx" -- uses: docker/setup-buildx-action@v3 -- -- - name: "Build and push" -- uses: docker/build-push-action@v6 -- with: -- context: . -- build-args: | -- DOCKER_FILES_BASE_PATH=docker/prod/ -- file: docker/prod/Dockerfile -- push: true -- platforms: linux/amd64 -- tags: ${{ steps.meta.outputs.tags }} -- labels: ${{ steps.meta.outputs.labels }} -- cache-from: type=gha -- cache-to: type=gha,mode=max -diff --git a/.github/workflows/build-public.yml b/.github/workflows/build-public.yml -deleted file mode 100644 -index d91d6e5..0000000 ---- a/.github/workflows/build-public.yml -+++ /dev/null -@@ -1,218 +0,0 @@ --on: -- push: -- branches: -- - main -- - develop -- tags: -- - '*' -- pull_request: -- paths: -- - '.github/workflows/build-public.yml' -- - 'docker/prod/**' -- workflow_dispatch: -- --permissions: -- packages: write -- contents: read -- attestations: write -- id-token: write -- --env: -- DOCKERHUB_REPO: solidtime/solidtime -- GHCR_REPO: ghcr.io/solidtime-io/solidtime -- --name: Build - Public --jobs: -- build: -- strategy: -- matrix: -- include: -- - runs-on: "ubuntu-24.04-arm" -- platform: "linux/arm64" -- - runs-on: "ubuntu-24.04" -- platform: "linux/amd64" -- runs-on: ${{ matrix.runs-on }} -- timeout-minutes: 90 -- -- steps: -- - name: "Check out code" -- uses: actions/checkout@v4 -- with: -- fetch-depth: 0 # Required for WyriHaximus/github-action-get-previous-tag -- -- - name: "Get build" -- id: release-build -- run: echo "build=$(git rev-parse --short=8 HEAD)" >> "$GITHUB_OUTPUT" -- -- - name: "Get Previous tag (normal push)" -- id: previoustag -- if: ${{ !startsWith(github.ref, 'refs/tags/v') }} -- uses: "WyriHaximus/github-action-get-previous-tag@v1" -- with: -- prefix: "v" -- -- - name: "Get version" -- id: release-version -- run: | -- if ${{ !startsWith(github.ref, 'refs/tags/v') }}; then -- if ${{ startsWith(steps.previoustag.outputs.tag, 'v') }}; then -- version=$(echo "${{ steps.previoustag.outputs.tag }}" | cut -c 2-) -- echo "app_version=${version}" >> "$GITHUB_OUTPUT" -- else -- echo "ERROR: No previous tag found"; -- exit 1; -- fi -- else -- version=$(echo "${{ github.ref }}" | cut -c 12-) -- echo "app_version=${version}" >> "$GITHUB_OUTPUT" -- fi -- -- - name: "Copy .env template for production" -- run: | -- cp .env.production .env -- rm .env.production .env.ci .env.example -- -- - name: "Add version to .env" -- run: sed -i 's/APP_VERSION=0.0.0/APP_VERSION=${{ steps.release-version.outputs.app_version }}/g' .env -- -- - name: "Add build to .env" -- run: sed -i 's/APP_BUILD=0/APP_BUILD=${{ steps.release-build.outputs.build }}/g' .env -- -- - name: "Output .env" -- run: cat .env -- -- - name: "Setup PHP with PECL extension" -- uses: shivammathur/setup-php@v2 -- with: -- php-version: '8.3' -- extensions: mbstring, dom, fileinfo, pgsql -- -- - name: "Install dependencies" -- run: composer install --no-dev --no-ansi --no-interaction --prefer-dist --ignore-platform-reqs --classmap-authoritative -- if: steps.cache-vendor.outputs.cache-hit != 'true' # Skip if cache hit -- -- - name: "Use Node.js" -- uses: actions/setup-node@v4 -- with: -- node-version: '20.x' -- -- - name: "Install npm dependencies" -- run: npm ci -- -- - name: "Build" -- run: npm run build -- -- - name: "Prepare" -- run: | -- platform=${{ matrix.platform }} -- echo "PLATFORM_PAIR=${platform//\//-}" >> $GITHUB_ENV -- -- - name: "Docker meta" -- id: "meta" -- uses: docker/metadata-action@v5 -- with: -- images: | -- ${{ env.DOCKERHUB_REPO }} -- ${{ env.GHCR_REPO }} -- -- - name: "Login to Docker Hub Container Registry" -- uses: docker/login-action@v3 -- with: -- username: ${{ secrets.DOCKERHUB_USERNAME }} -- password: ${{ secrets.DOCKERHUB_TOKEN }} -- -- - name: "Login to GitHub Container Registry" -- uses: docker/login-action@v3 -- with: -- registry: ghcr.io -- username: ${{ github.actor }} -- password: ${{ secrets.GITHUB_TOKEN }} -- -- - name: "Set up QEMU" -- uses: docker/setup-qemu-action@v3 -- -- - name: "Set up Docker Buildx" -- uses: docker/setup-buildx-action@v3 -- -- - name: "Build and push by digest" -- id: build -- uses: docker/build-push-action@v6 -- with: -- context: . -- file: docker/prod/Dockerfile -- build-args: | -- DOCKER_FILES_BASE_PATH=docker/prod/ -- platforms: ${{ matrix.platform }} -- labels: ${{ steps.meta.outputs.labels }} -- outputs: type=image,"name=${{ env.DOCKERHUB_REPO }},${{ env.GHCR_REPO }}",push-by-digest=true,name-canonical=true,push=true -- cache-from: type=gha -- cache-to: type=gha,mode=max -- -- - name: "Export digest" -- run: | -- mkdir -p ${{ runner.temp }}/digests -- digest="${{ steps.build.outputs.digest }}" -- touch "${{ runner.temp }}/digests/${digest#sha256:}" -- -- - name: "Upload digest" -- uses: actions/upload-artifact@v4 -- with: -- name: digests-${{ env.PLATFORM_PAIR }} -- path: ${{ runner.temp }}/digests/* -- if-no-files-found: error -- retention-days: 1 -- -- merge: -- runs-on: ubuntu-latest -- timeout-minutes: 90 -- needs: -- - build -- steps: -- - name: "Download digests" -- uses: actions/download-artifact@v4 -- with: -- path: ${{ runner.temp }}/digests -- pattern: digests-* -- merge-multiple: true -- -- - name: "Login to Docker Hub" -- uses: docker/login-action@v3 -- with: -- username: ${{ secrets.DOCKERHUB_USERNAME }} -- password: ${{ secrets.DOCKERHUB_TOKEN }} -- -- - name: "Login to GHCR" -- uses: docker/login-action@v3 -- with: -- registry: ghcr.io -- username: ${{ github.actor }} -- password: ${{ secrets.GITHUB_TOKEN }} -- -- - name: "Set up Docker Buildx" -- uses: docker/setup-buildx-action@v3 -- -- - name: "Docker meta" -- id: meta -- uses: docker/metadata-action@v5 -- with: -- images: | -- ${{ env.DOCKERHUB_REPO }} -- ${{ env.GHCR_REPO }} -- tags: | -- type=ref,event=branch -- type=ref,event=pr -- type=semver,pattern={{version}} -- type=semver,pattern={{major}}.{{minor}} -- -- - name: "Create manifest list and push" -- working-directory: ${{ runner.temp }}/digests -- run: | -- docker buildx imagetools create $(jq -cr '.tags | map("-t " + .) | join(" ")' <<< "$DOCKER_METADATA_OUTPUT_JSON") \ -- $(printf '${{ env.DOCKERHUB_REPO }}@sha256:%s ' *) -- docker buildx imagetools create $(jq -cr '.tags | map("-t " + .) | join(" ")' <<< "$DOCKER_METADATA_OUTPUT_JSON") \ -- $(printf '${{ env.GHCR_REPO }}@sha256:%s ' *) -- -- - name: "Inspect image" -- run: | -- docker buildx imagetools inspect ${{ env.DOCKERHUB_REPO }}:${{ steps.meta.outputs.version }} -- docker buildx imagetools inspect ${{ env.GHCR_REPO }}:${{ steps.meta.outputs.version }} -diff --git a/.github/workflows/generate-api-docs.yml b/.github/workflows/generate-api-docs.yml -deleted file mode 100644 -index bdb9203..0000000 ---- a/.github/workflows/generate-api-docs.yml -+++ /dev/null -@@ -1,66 +0,0 @@ --name: Generate API docs --on: -- push: -- branches: -- - main --permissions: -- contents: read -- --jobs: -- api_docs: -- runs-on: ubuntu-latest -- timeout-minutes: 10 -- -- services: -- pgsql_test: -- image: postgres:15 -- env: -- PGPASSWORD: 'root' -- POSTGRES_DB: 'laravel' -- POSTGRES_USER: 'root' -- POSTGRES_PASSWORD: 'root' -- ports: -- - 5432:5432 -- options: >- -- --health-cmd pg_isready -- --health-interval 10s -- --health-timeout 5s -- --health-retries 5 -- -- steps: -- - name: "Checkout code" -- uses: actions/checkout@v4 -- -- - name: "Setup PHP" -- uses: shivammathur/setup-php@v2 -- with: -- php-version: '8.3' -- extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, bcmath, soap, intl, gd, exif, iconv -- -- - name: "Run composer install" -- run: composer install -n --prefer-dist -- -- - name: "Create build directory" -- run: mkdir build -- -- - name: Prepare Laravel Application -- run: | -- cp .env.ci .env -- php artisan migrate -- -- - name: "Export API docs" -- run: php artisan scramble:export --path=build/api-docs.json -- -- - name: "Upload API docs to GitHub" -- uses: actions/upload-artifact@v4 -- with: -- name: api-docs.json -- path: build/api-docs.json -- -- - name: "Download Fastfront CLI" -- run: curl https://fastfront-cli.s3.fr-par.scw.cloud/fastfront-cli.phar -o fastfront-cli.phar -- -- - name: "Deploy with Fastfront" -- run: php fastfront-cli.phar deploy 9beab6cf-f459-446b-85f1-38ec007cf457 ./build -- env: -- FASTFRONT_API_KEY: ${{ secrets.FASTFRONT_API_DOCS_API_KEY }} -diff --git a/.github/workflows/npm-build.yml b/.github/workflows/npm-build.yml -index 6201b91..55293f9 100644 ---- a/.github/workflows/npm-build.yml -+++ b/.github/workflows/npm-build.yml -@@ -16,7 +16,7 @@ jobs: - - name: "Setup PHP (for Ziggy)" - uses: shivammathur/setup-php@v2 - with: -- php-version: '8.3' -+ php-version: '8.4' - extensions: intl, zip - coverage: none - -diff --git a/.github/workflows/npm-typecheck.yml b/.github/workflows/npm-typecheck.yml -index e98a6c7..ead03a7 100644 ---- a/.github/workflows/npm-typecheck.yml -+++ b/.github/workflows/npm-typecheck.yml -@@ -15,7 +15,7 @@ jobs: - - name: "Setup PHP (for Ziggy)" - uses: shivammathur/setup-php@v2 - with: -- php-version: '8.3' -+ php-version: '8.4' - extensions: intl, zip - coverage: none - -diff --git a/.github/workflows/phpstan.yml b/.github/workflows/phpstan.yml -index 77f8d5c..dee510a 100644 ---- a/.github/workflows/phpstan.yml -+++ b/.github/workflows/phpstan.yml -@@ -14,7 +14,7 @@ jobs: - - name: "Setup PHP" - uses: shivammathur/setup-php@v2 - with: -- php-version: '8.3' -+ php-version: '8.4' - extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, bcmath, soap, intl, gd, exif, iconv - coverage: none - -diff --git a/.github/workflows/phpunit.yml b/.github/workflows/phpunit.yml -index 57144bd..3f11c16 100644 ---- a/.github/workflows/phpunit.yml -+++ b/.github/workflows/phpunit.yml -@@ -41,7 +41,7 @@ jobs: - - name: "Setup PHP" - uses: shivammathur/setup-php@v2 - with: -- php-version: '8.3' -+ php-version: '8.4' - extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, bcmath, soap, intl, gd, exif, iconv - coverage: pcov - -diff --git a/.github/workflows/playwright.yml b/.github/workflows/playwright.yml -index d0f9b80..56b043c 100644 ---- a/.github/workflows/playwright.yml -+++ b/.github/workflows/playwright.yml -@@ -1,9 +1,13 @@ --name: Playwright Tests --on: [push] -+name: Playwright Tests (disabled) -+on: -+ push: -+ branches-ignore: -+ - '**' - permissions: - contents: read - jobs: - test: -+ if: false # Temporarily disabled - runs-on: ubuntu-latest - timeout-minutes: 60 - -@@ -37,7 +41,7 @@ jobs: - - name: "Setup PHP" - uses: shivammathur/setup-php@v2 - with: -- php-version: '8.3' -+ php-version: '8.4' - extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, pdo_sqlite, bcmath, soap, intl, gd, exif, iconv - coverage: none - -diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md -deleted file mode 100644 -index e0e0ce3..0000000 ---- a/CODE_OF_CONDUCT.md -+++ /dev/null -@@ -1,42 +0,0 @@ --# Code of Conduct -- --The goal is to create a community that is open and welcoming to all individuals. --To achieve this, we have developed a code of conduct that outlines the expectations for behavior of all members of our community. -- --## Pledge -- --This community is founded on respect and understanding. --All members are expected to treat others with respect and empathy, and to not tolerate any form of discrimination, --harassment, or attacks. -- --## Expectations -- --Examples of behavior that contributes to creating a positive environment include: -- --- Using welcoming and inclusive language --- Being respectful of differing viewpoints and experiences --- Gracefully accepting constructive criticism --- Focusing on what is best for the community --- Showing empathy towards other community members -- --Examples of unacceptable behavior by participants include: -- --- The use of sexualized language or imagery and sexual attention or advances --- Trolling, insulting/derogatory comments, and personal or political attacks --- Public or private harassment --- Publishing others' private information, such as a physical or electronic address, without explicit permission --- Other conduct which could reasonably be considered inappropriate in a professional setting -- --## Responsibilities -- --Project maintainers are responsible for clarifying the standards of acceptable behavior and are expected to take appropriate --and fair corrective action in response to any instances of unacceptable behavior. -- --Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, --issues, and other contributions that are not aligned to this Code of Conduct, or to ban temporarily --or permanently any contributor for other behaviors that they deem inappropriate, threatening, offensive, or harmful. -- --## Contact -- --If you feel uncomfortable or believe that someone has violated the code of conduct, please contact us at [hello@solidtime.io](mailto:hello@solidtime.io). --We will thoroughly investigate the incident and aim for the best possible outcome. -diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md -deleted file mode 100644 -index 4535267..0000000 ---- a/CONTRIBUTING.md -+++ /dev/null -@@ -1,81 +0,0 @@ --# Contributing to solidtime -- --Contributions are greatly apprecited, please make sure to read the rules and vision for solidtime before contributing. -- --## Rules -- --### Issues for Bugs, Discussions for Feature requests -- --In order to keep the issues of the repository clean we decided to only use them for bugs. Feature Requests and enhancement are handled in discussions. This also helps us to see which feature requests are popular as they can be upvoted. -- --### Only work on approved issues -- --To respect your time and help us manage contributions effectively, please open an issue or start a discussion and wait for approval before submitting a pull request (PR). This does not apply to tiny fixes or changes however, please keep in mind that we might not merge PRs for various reasons. -- --### Contributor License Agreement -- --You'll also notice that we’ve set up a [Contributor License Agreement (CLA)](https://cla-assistant.io/solidtime-io/solidtime), which must be signed before any PR can be merged. Don’t worry - the process is quick and only takes a few clicks. -- --We want to be transparent about why we require the CLA and what it means for your contributions and the codebase. That’s why we’ve written a few paragraphs below outlining our plans and vision for solidtime in the **Vision** part of this document. -- --### Prevent Duplicate Work -- --Before you submit a new PR, make sure that none exists already. If you plan to work on an issue, make sure to let us and others know by commenting on the issue/discussion. -- --### Give context -- --Tell us what you thinking was behind the decisions you made while drafting the PR. Treat the PR itself as documentation for everyone who wants to go back and understand why certain decisions were made. -- --### Summarize your PR -- --Please make sure to include a short summary at the top of your PR to make it easy for us to quickly check what the PR is about, without looking at the code changes. -- --### Use Github Keywords and Auto-Link Issues -- --Use phrases like "Closes #123" or "Fixes #123" in the PR description to link the PR with the issue that you are adressing. -- --### Mention what you tested and how -- --Explain how you tested and validated the implementation. -- --### Keep Naming consistent -- --Look at existing code patterns and use naming conventions that already exist in the code base. -- --### Testing -- --We have an exhaustive test-suite of PHPUnit (Backend) and Playwright (Frontend) testing. Whereever applicable please make sure to write add tests to the codebase. -- --### Linting & Formatting -- --Make sure to run linting and formatting commands before you commit the changes. -- --For backend changes: -- --``` --composer fix --composer analyse --``` -- --For frontend changes: -- --``` --npm run lint:fix --npm run format --``` -- --## Vision -- --We started solidtime to provide an open infrastructure solution for time tracking—one that empowers teams and individuals to fully own their data, instead of depending on proprietary platforms. We believe infrastructure software should be open, accessible, and built to last. However, competing with established market leaders in this space requires long-term financial sustainability. -- --solidtime is licensed under the AGPL, which we believe is the best available license to strike a balance between openness and financial viability. The AGPL gives us, as the copyright holders, certain exclusive rights that we plan to leverage to fund development. To ensure we retain those rights across the entire codebase, we've put a CLA in place that contributors must sign before submitting code. -- --One of solidtime’s key advantages is that it's built to be self-hostable. This makes it a great solution for organizations like governments, healthcare providers, and enterprises that are required to keep data on their own infrastructure due to regulations or internal policies. These organizations may need custom licenses, integrations, or modifications that aren't suitable for the open-source version. To support them, we offer relicensed versions of solidtime along with support plans. -- --We’ll also provide proprietary extensions for solidtime. These will be available to enterprise customers with support plans, but also to individual users or teams who don’t need support, at much more accessible price points. For companies running solidtime on their own infrastructure, this is the easiest way to support the project while gaining additional functionality. While we plan to make it easier to build custom extensions in the future, our current APIs are still highly experimental. -- --Finally - and perhaps most importantly - we offer a hosted SaaS version called solidtime Cloud, for users who can’t or don’t want to run the software themselves. This version includes proprietary extensions, always runs the latest commit, and includes monitoring and billing features available exclusively on this hosted instance. We expect solidtime Cloud to play a critical role in funding the project long-term. -- --Having full control over the source code’s licensing also gives us the ability to change the license of the main project in the future. That said, we have no plans to do so and would only consider it in extreme cases - for example, if a malicious actor were to directly compete with our hosted service in a way that threatens the sustainability of the project, the legal interpretation of AGPL changes in a way that would make it unreasonable to use for certain companies, or a new similar license gains wide-spread adoption. Regardless, solidtime will always remain free to self-host for individuals and companies who use it as part of their work, and all previous releases will remain licensed under AGPL. -- --If you are using the open-source version of solidtime and want to support us, the best way to do so is to spread the word. -diff --git a/INTERNAL_CHANGES_GUIDE.md b/INTERNAL_CHANGES_GUIDE.md -new file mode 100644 -index 0000000..8f9ee5b ---- /dev/null -+++ b/INTERNAL_CHANGES_GUIDE.md -@@ -0,0 +1,305 @@ -+## INTERNAL CHANGES GUIDE -+ -+Authoritative, replayable guide for changes between the base commit and the current working state. Use this document to re-apply the exact same changes on top of any fresh checkout. -+ -+### Scope -+- **Base commit (from):** f68f05d1aae30647f694c941597edc373561d50d -+- **Current commit (to):** 324a12ffada544ce08be361c76534e75ce781a25 -+- **Current branch:** feature-relaunch -+- **Uncommitted changes at capture time:** none -+- **Patch file (binary-safe):** `INTERNAL_CHANGES_GUIDE.patch` -+- **Patch SHA256:** f780ccdef9900eee8db7dade5252efb5ff911cd76bf3d3c0fa9389a328642592 -+ -+### Replay: Quick Start -+1) Ensure a clean working tree. -+ ```bash -+git reset --hard && git clean -fd -+ ``` -+2) Checkout the desired target revision (typically the base commit or a fresh branch). -+ ```bash -+git checkout f68f05d1aae30647f694c941597edc373561d50d -+ ``` -+3) Verify patch integrity. -+ ```bash -+shasum -a 256 INTERNAL_CHANGES_GUIDE.patch -+# must equal: f780ccdef9900eee8db7dade5252efb5ff911cd76bf3d3c0fa9389a328642592 -+ ``` -+4) Apply changes. -+ ```bash -+git apply --index --whitespace=nowarn INTERNAL_CHANGES_GUIDE.patch || git apply --3way INTERNAL_CHANGES_GUIDE.patch -+ ``` -+5) Install deps and rebuild. -+ ```bash -+composer install --no-interaction --prefer-dist -+npm ci -+npm run build -+ ``` -+6) Run tests/smoke. -+ ```bash -+php artisan test -+npx playwright test -+ ``` -+ -+### Replay: Alternative via cherry-pick (single-commit path) -+If the base commit is an ancestor of the current commit, you can replay by cherry-picking the to-commit on top of the base or any other branch: -+```bash -+git checkout -+git cherry-pick 324a12ffada544ce08be361c76534e75ce781a25 -+``` -+Resolve conflicts if any, then run the same install/build/test steps as above. -+ -+### Regenerate Patch (if needed) -+From repo root: -+```bash -+git diff --binary f68f05d1aae30647f694c941597edc373561d50d > INTERNAL_CHANGES_GUIDE.patch -+shasum -a 256 INTERNAL_CHANGES_GUIDE.patch -+``` -+ -+### Change Summary (high level) -+- **Files changed:** 70 -+- **Insertions:** 2,165 -+- **Deletions:** 4,081 -+ -+### Directory Footprint -+```text -+ 2.9% .github/ISSUE_TEMPLATE/ -+ 13.4% .github/workflows/ -+ 1.4% .github/ -+ 2.9% app/Http/Controllers/Api/V1/ -+ 1.4% app/Http/Middleware/ -+ 1.4% config/ -+ 5.9% docker/local/8.3/ -+ 1.4% docker/local/minio/ -+ 1.4% docker/local/pgsql/ -+ 2.9% docker/prod/deployment/octane/FrankenPHP/ -+ 11.9% docker/prod/deployment/ -+ 2.9% docker/prod/ -+ 2.9% e2e/ -+ 5.9% resources/js/Components/Common/Client/ -+ 8.9% resources/js/Components/Common/Project/ -+ 1.4% resources/js/Components/Common/Reporting/ -+ 1.4% resources/js/Components/Dashboard/ -+ 2.9% resources/js/Components/ -+ 1.4% resources/js/Layouts/ -+ 4.4% resources/js/Pages/ -+ 4.4% resources/js/utils/ -+``` -+ -+### File Changes (name-status) -+```text -+D .github/ISSUE_TEMPLATE/1_bug_report.yml -+D .github/ISSUE_TEMPLATE/config.yml -+D .github/PULL_REQUEST_TEMPLATE.md -+A .github/workflows/README.md -+D .github/workflows/build-private.yml -+D .github/workflows/build-public.yml -+D .github/workflows/generate-api-docs.yml -+M .github/workflows/npm-build.yml -+M .github/workflows/npm-typecheck.yml -+M .github/workflows/phpstan.yml -+M .github/workflows/phpunit.yml -+M .github/workflows/playwright.yml -+D CODE_OF_CONDUCT.md -+D CONTRIBUTING.md -+A INTERNAL_CHANGES_GUIDE.md -+D LICENSE.md -+D SECURITY.md -+M app/Http/Controllers/Api/V1/ClientController.php -+M app/Http/Controllers/Api/V1/ProjectController.php -+M app/Http/Middleware/ShareInertiaData.php -+M app/Actions/Jetstream/AddOrganizationMember.php -+M app/Actions/Jetstream/UpdateOrganization.php -+M composer.json -+M composer.lock -+M config/database.php -+D docker-compose.yml -+D docker/local/8.3/Dockerfile -+D docker/local/8.3/php.ini -+D docker/local/8.3/start-container -+D docker/local/8.3/supervisord.conf -+D docker/local/minio/create_bucket.sh -+D docker/local/pgsql/create-testing-database.sql -+D docker/prod/Dockerfile -+D docker/prod/LICENSE -+D docker/prod/deployment/healthcheck -+D docker/prod/deployment/octane/FrankenPHP/Caddyfile -+D docker/prod/deployment/octane/FrankenPHP/supervisord.frankenphp.conf -+D docker/prod/deployment/php.ini -+D docker/prod/deployment/start-container -+D docker/prod/deployment/supervisord.conf -+D docker/prod/deployment/supervisord.horizon.conf -+D docker/prod/deployment/supervisord.reverb.conf -+D docker/prod/deployment/supervisord.scheduler.conf -+D docker/prod/deployment/supervisord.worker.conf -+M e2e/clients.spec.ts -+M e2e/projects.spec.ts -+M package-lock.json -+M resources/js/Components/Common/Client/ClientMoreOptionsDropdown.vue -+M resources/js/Components/Common/Client/ClientTable.vue -+M resources/js/Components/Common/Client/ClientTableHeading.vue -+M resources/js/Components/Common/Client/ClientTableRow.vue -+M resources/js/Components/Common/Project/ProjectDropdown.vue -+M resources/js/Components/Common/Project/ProjectEditModal.vue -+M resources/js/Components/Common/Project/ProjectMoreOptionsDropdown.vue -+M resources/js/Components/Common/Project/ProjectTable.vue -+M resources/js/Components/Common/Project/ProjectTableHeading.vue -+M resources/js/Components/Common/Project/ProjectTableRow.vue -+M resources/js/Components/Common/Reporting/ReportingOverview.vue -+M resources/js/Components/Dashboard/RecentlyTrackedTasksCardEntry.vue -+M resources/js/Components/NavigationSidebarItem.vue -+M resources/js/Components/NavigationSidebarLink.vue -+M resources/js/Layouts/AppLayout.vue -+M resources/js/Pages/Clients.vue -+M resources/js/Pages/ProjectShow.vue -+M resources/js/Pages/Projects.vue -+M resources/js/utils/useClients.ts -+M resources/js/utils/useProjects.ts -+M resources/js/utils/useReporting.ts -+M vite-module-loader.js -+``` -+ -+### File Change Stats (numstat) -+Numbers are: [insertions] [deletions] [path] -+```text -+0 47 .github/ISSUE_TEMPLATE/1_bug_report.yml -+0 8 .github/ISSUE_TEMPLATE/config.yml -+0 11 .github/PULL_REQUEST_TEMPLATE.md -+4 0 .github/workflows/README.md -+0 199 .github/workflows/build-private.yml -+0 218 .github/workflows/build-public.yml -+0 66 .github/workflows/generate-api-docs.yml -+1 1 .github/workflows/npm-build.yml -+1 1 .github/workflows/npm-typecheck.yml -+1 1 .github/workflows/phpstan.yml -+1 1 .github/workflows/phpunit.yml -+1 1 .github/workflows/playwright.yml -+0 42 CODE_OF_CONDUCT.md -+0 81 CONTRIBUTING.md -+596 0 INTERNAL_CHANGES_GUIDE.md -+0 651 LICENSE.md -+0 5 SECURITY.md -+3 8 app/Http/Controllers/Api/V1/ClientController.php -+4 20 app/Http/Controllers/Api/V1/ProjectController.php -+44 3 app/Http/Middleware/ShareInertiaData.php -+1 0 app/Actions/Jetstream/AddOrganizationMember.php -+1 0 app/Actions/Jetstream/UpdateOrganization.php -+4 1 composer.json -+398 337 composer.lock -+6 1 config/database.php -+0 209 docker-compose.yml -+0 65 docker/local/8.3/Dockerfile -+0 8 docker/local/8.3/php.ini -+0 26 docker/local/8.3/start-container -+0 14 docker/local/8.3/supervisord.conf -+0 10 docker/local/minio/create_bucket.sh -+0 2 docker/local/pgsql/create-testing-database.sql -+0 214 docker/prod/Dockerfile -+0 21 docker/prod/LICENSE -+0 35 docker/prod/deployment/healthcheck -+0 68 docker/prod/deployment/octane/FrankenPHP/Caddyfile -+0 65 docker/prod/deployment/octane/FrankenPHP/supervisord.frankenphp.conf -+0 31 docker/prod/deployment/php.ini -+0 55 docker/prod/deployment/start-container -+0 13 docker/prod/deployment/supervisord.conf -+0 14 docker/prod/deployment/supervisord.horizon.conf -+0 14 docker/prod/deployment/supervisord.reverb.conf -+0 26 docker/prod/deployment/supervisord.scheduler.conf -+0 13 docker/prod/deployment/supervisord.worker.conf -+5 11 e2e/clients.spec.ts -+5 11 e2e/projects.spec.ts -+923 1310 package-lock.json -+1 9 resources/js/Components/Common/Client/ClientMoreOptionsDropdown.vue -+10 6 resources/js/Components/Common/Client/ClientTable.vue -+3 6 resources/js/Components/Common/Client/ClientTableHeading.vue -+9 17 resources/js/Components/Common/Client/ClientTableRow.vue -+3 3 resources/js/Components/Common/Project/ProjectDropdown.vue -+2 2 resources/js/Components/Common/Project/ProjectEditModal.vue -+1 9 resources/js/Components/Common/Project/ProjectMoreOptionsDropdown.vue -+15 3 resources/js/Components/Common/Project/ProjectTable.vue -+2 8 resources/js/Components/Common/Project/ProjectTableHeading.vue -+6 17 resources/js/Components/Common/Project/ProjectTableRow.vue -+2 1 resources/js/Components/Common/Reporting/ReportingOverview.vue -+2 1 resources/js/Components/Dashboard/RecentlyTrackedTasksCardEntry.vue -+3 1 resources/js/Components/NavigationSidebarItem.vue -+5 1 resources/js/Components/NavigationSidebarLink.vue -+2 0 resources/js/Layouts/AppLayout.vue -+29 4 resources/js/Pages/Clients.vue -+2 2 resources/js/Pages/ProjectShow.vue -+38 7 resources/js/Pages/Projects.vue -+2 18 resources/js/utils/useClients.ts -+1 18 resources/js/utils/useProjects.ts -+3 2 resources/js/utils/useReporting.ts -+20 5 vite-module-loader.js -+``` -+ -+### High-Level Notes by Category -+- **Repo hygiene:** Issue/PR templates removed; internal `INTERNAL_CHANGES_GUIDE.md` added; several project policy docs removed. -+- **CI:** Multiple GitHub workflows adjusted; some workflows removed; minor 1-line tweaks in remaining workflows. -+- **Backend:** Small changes in `ClientController`, `ProjectController`, and `ShareInertiaData` middleware; minor DB config tweak; Composer dependencies updated. -+- **Docker:** Local and production Docker files removed (compose, Dockerfiles, configs, scripts). -+- **Frontend:** Multiple Vue components updated across Clients/Projects tables, dropdowns, and pages; navigation and layout tweaks; utility hooks adjusted. -+- **Tests:** e2e tests (`clients.spec.ts`, `projects.spec.ts`) updated. -+ -+### API Behavior Changes (Upgrade Notes) -+- Clients API: `GET /api/v1/organizations/{org}/clients` now returns clients ordered by `name` ascending (was `created_at` desc). If you rely on ordering, update your consumers accordingly. -+- Projects API: `GET /api/v1/organizations/{org}/projects` now returns projects ordered by `name` ascending (was `created_at`-based ordering in some flows). If you relied on creation-time ordering, sort client-side or use a dedicated query param in future versions. -+- Clients API: `DELETE /api/v1/organizations/{org}/clients/{client}` is disabled. It now returns `200` with `{ message: "Client deletion disabled" }` and does not delete data. -+- Projects API: `DELETE /api/v1/organizations/{org}/projects/{project}` is disabled. It now returns `200` with `{ message: "Project deletion disabled" }` and does not delete data. -+ -+### Step-by-Step Protocol (detailed) -+1) Clean and position on base (or desired) revision. -+ ```bash -+git reset --hard && git clean -fd -+git checkout f68f05d1aae30647f694c941597edc373561d50d -+ ``` -+2) Verify the working tree is clean. -+ ```bash -+git status --porcelain=v1 -+# expect no output -+ ``` -+3) Verify patch file checksum. -+ ```bash -+shasum -a 256 INTERNAL_CHANGES_GUIDE.patch -+# must equal f780ccdef9900eee8db7dade5252efb5ff911cd76bf3d3c0fa9389a328642592 -+ ``` -+4) Apply patch (index + fallback 3-way if needed). -+ ```bash -+git apply --index --whitespace=nowarn INTERNAL_CHANGES_GUIDE.patch || git apply --3way INTERNAL_CHANGES_GUIDE.patch -+ ``` -+5) Review staged changes. -+ ```bash -+git diff --staged --stat | cat -+ ``` -+6) Commit the replayed changes (optional; if you want a local commit). -+ ```bash -+git commit -m "Replay: changes from f68f05d1..324a12ff (via INTERNAL_CHANGES_GUIDE)" -+ ``` -+7) Dependencies and build. -+ ```bash -+composer install --no-interaction --prefer-dist -+npm ci -+npm run build -+ ``` -+8) Test and lint (optional but recommended). -+ ```bash -+php artisan test -+npx playwright test -+ ``` -+ -+### Commit Context -+```text -+324a12f (HEAD -> feature-relaunch, origin/feature-relaunch) wip -+``` -+ -+### Notes and Caveats -+- If you replay onto a codebase whose base commit differs, 3-way apply may cause conflicts. Resolve and continue. -+- The patch includes deletions for removed Docker and GitHub meta files; ensure this matches your target environment expectations. -+- After replaying, check application boot (e.g., `php artisan`) and frontend dev server if used. -+ -+### Maintenance -+- When HEAD changes, regenerate: -+ ```bash -+git diff --binary f68f05d1aae30647f694c941597edc373561d50d > INTERNAL_CHANGES_GUIDE.patch -+shasum -a 256 INTERNAL_CHANGES_GUIDE.patch -+ ``` -+- Update this guide’s header fields (current commit, checksum) and the sections for name-status, numstat, and directory footprint. -diff --git a/INTERNAL_CHANGES_GUIDE.patch b/INTERNAL_CHANGES_GUIDE.patch -new file mode 100644 -index 0000000..5866909 -diff --git a/LICENSE.md b/LICENSE.md -deleted file mode 100644 -index 37df9f9..0000000 ---- a/LICENSE.md -+++ /dev/null -@@ -1,651 +0,0 @@ --GNU Affero General Public License --================================= -- --_Version 3, 19 November 2007_ --_Copyright © 2007 Free Software Foundation, Inc. <>_ -- --Everyone is permitted to copy and distribute verbatim copies --of this license document, but changing it is not allowed. -- --## Preamble -- --The GNU Affero General Public License is a free, copyleft license for --software and other kinds of works, specifically designed to ensure --cooperation with the community in the case of network server software. -- --The licenses for most software and other practical works are designed --to take away your freedom to share and change the works. By contrast, --our General Public Licenses are intended to guarantee your freedom to --share and change all versions of a program--to make sure it remains free --software for all its users. -- --When we speak of free software, we are referring to freedom, not --price. Our General Public Licenses are designed to make sure that you --have the freedom to distribute copies of free software (and charge for --them if you wish), that you receive source code or can get it if you --want it, that you can change the software or use pieces of it in new --free programs, and that you know you can do these things. -- --Developers that use our General Public Licenses protect your rights --with two steps: **(1)** assert copyright on the software, and **(2)** offer --you this License which gives you legal permission to copy, distribute --and/or modify the software. -- --A secondary benefit of defending all users' freedom is that --improvements made in alternate versions of the program, if they --receive widespread use, become available for other developers to --incorporate. Many developers of free software are heartened and --encouraged by the resulting cooperation. However, in the case of --software used on network servers, this result may fail to come about. --The GNU General Public License permits making a modified version and --letting the public access it on a server without ever releasing its --source code to the public. -- --The GNU Affero General Public License is designed specifically to --ensure that, in such cases, the modified source code becomes available --to the community. It requires the operator of a network server to --provide the source code of the modified version running there to the --users of that server. Therefore, public use of a modified version, on --a publicly accessible server, gives the public access to the source --code of the modified version. -- --An older license, called the Affero General Public License and --published by Affero, was designed to accomplish similar goals. This is --a different license, not a version of the Affero GPL, but Affero has --released a new version of the Affero GPL which permits relicensing under --this license. -- --The precise terms and conditions for copying, distribution and --modification follow. -- --## TERMS AND CONDITIONS -- --### 0. Definitions -- --“This License” refers to version 3 of the GNU Affero General Public License. -- --“Copyright” also means copyright-like laws that apply to other kinds of --works, such as semiconductor masks. -- --“The Program” refers to any copyrightable work licensed under this --License. Each licensee is addressed as “you”. “Licensees” and --“recipients” may be individuals or organizations. -- --To “modify” a work means to copy from or adapt all or part of the work --in a fashion requiring copyright permission, other than the making of an --exact copy. The resulting work is called a “modified version” of the --earlier work or a work “based on” the earlier work. -- --A “covered work” means either the unmodified Program or a work based --on the Program. -- --To “propagate” a work means to do anything with it that, without --permission, would make you directly or secondarily liable for --infringement under applicable copyright law, except executing it on a --computer or modifying a private copy. Propagation includes copying, --distribution (with or without modification), making available to the --public, and in some countries other activities as well. -- --To “convey” a work means any kind of propagation that enables other --parties to make or receive copies. Mere interaction with a user through --a computer network, with no transfer of a copy, is not conveying. -- --An interactive user interface displays “Appropriate Legal Notices” --to the extent that it includes a convenient and prominently visible --feature that **(1)** displays an appropriate copyright notice, and **(2)** --tells the user that there is no warranty for the work (except to the --extent that warranties are provided), that licensees may convey the --work under this License, and how to view a copy of this License. If --the interface presents a list of user commands or options, such as a --menu, a prominent item in the list meets this criterion. -- --### 1. Source Code -- --The “source code” for a work means the preferred form of the work --for making modifications to it. “Object code” means any non-source --form of a work. -- --A “Standard Interface” means an interface that either is an official --standard defined by a recognized standards body, or, in the case of --interfaces specified for a particular programming language, one that --is widely used among developers working in that language. -- --The “System Libraries” of an executable work include anything, other --than the work as a whole, that **(a)** is included in the normal form of --packaging a Major Component, but which is not part of that Major --Component, and **(b)** serves only to enable use of the work with that --Major Component, or to implement a Standard Interface for which an --implementation is available to the public in source code form. A --“Major Component”, in this context, means a major essential component --(kernel, window system, and so on) of the specific operating system --(if any) on which the executable work runs, or a compiler used to --produce the work, or an object code interpreter used to run it. -- --The “Corresponding Source” for a work in object code form means all --the source code needed to generate, install, and (for an executable --work) run the object code and to modify the work, including scripts to --control those activities. However, it does not include the work's --System Libraries, or general-purpose tools or generally available free --programs which are used unmodified in performing those activities but --which are not part of the work. For example, Corresponding Source --includes interface definition files associated with source files for --the work, and the source code for shared libraries and dynamically --linked subprograms that the work is specifically designed to require, --such as by intimate data communication or control flow between those --subprograms and other parts of the work. -- --The Corresponding Source need not include anything that users --can regenerate automatically from other parts of the Corresponding --Source. -- --The Corresponding Source for a work in source code form is that --same work. -- --### 2. Basic Permissions -- --All rights granted under this License are granted for the term of --copyright on the Program, and are irrevocable provided the stated --conditions are met. This License explicitly affirms your unlimited --permission to run the unmodified Program. The output from running a --covered work is covered by this License only if the output, given its --content, constitutes a covered work. This License acknowledges your --rights of fair use or other equivalent, as provided by copyright law. -- --You may make, run and propagate covered works that you do not --convey, without conditions so long as your license otherwise remains --in force. You may convey covered works to others for the sole purpose --of having them make modifications exclusively for you, or provide you --with facilities for running those works, provided that you comply with --the terms of this License in conveying all material for which you do --not control copyright. Those thus making or running the covered works --for you must do so exclusively on your behalf, under your direction --and control, on terms that prohibit them from making any copies of --your copyrighted material outside their relationship with you. -- --Conveying under any other circumstances is permitted solely under --the conditions stated below. Sublicensing is not allowed; section 10 --makes it unnecessary. -- --### 3. Protecting Users' Legal Rights From Anti-Circumvention Law -- --No covered work shall be deemed part of an effective technological --measure under any applicable law fulfilling obligations under article --11 of the WIPO copyright treaty adopted on 20 December 1996, or --similar laws prohibiting or restricting circumvention of such --measures. -- --When you convey a covered work, you waive any legal power to forbid --circumvention of technological measures to the extent such circumvention --is effected by exercising rights under this License with respect to --the covered work, and you disclaim any intention to limit operation or --modification of the work as a means of enforcing, against the work's --users, your or third parties' legal rights to forbid circumvention of --technological measures. -- --### 4. Conveying Verbatim Copies -- --You may convey verbatim copies of the Program's source code as you --receive it, in any medium, provided that you conspicuously and --appropriately publish on each copy an appropriate copyright notice; --keep intact all notices stating that this License and any --non-permissive terms added in accord with section 7 apply to the code; --keep intact all notices of the absence of any warranty; and give all --recipients a copy of this License along with the Program. -- --You may charge any price or no price for each copy that you convey, --and you may offer support or warranty protection for a fee. -- --### 5. Conveying Modified Source Versions -- --You may convey a work based on the Program, or the modifications to --produce it from the Program, in the form of source code under the --terms of section 4, provided that you also meet all of these conditions: -- --* **a)** The work must carry prominent notices stating that you modified --it, and giving a relevant date. --* **b)** The work must carry prominent notices stating that it is --released under this License and any conditions added under section 7. --This requirement modifies the requirement in section 4 to --“keep intact all notices”. --* **c)** You must license the entire work, as a whole, under this --License to anyone who comes into possession of a copy. This --License will therefore apply, along with any applicable section 7 --additional terms, to the whole of the work, and all its parts, --regardless of how they are packaged. This License gives no --permission to license the work in any other way, but it does not --invalidate such permission if you have separately received it. --* **d)** If the work has interactive user interfaces, each must display --Appropriate Legal Notices; however, if the Program has interactive --interfaces that do not display Appropriate Legal Notices, your --work need not make them do so. -- --A compilation of a covered work with other separate and independent --works, which are not by their nature extensions of the covered work, --and which are not combined with it such as to form a larger program, --in or on a volume of a storage or distribution medium, is called an --“aggregate” if the compilation and its resulting copyright are not --used to limit the access or legal rights of the compilation's users --beyond what the individual works permit. Inclusion of a covered work --in an aggregate does not cause this License to apply to the other --parts of the aggregate. -- --### 6. Conveying Non-Source Forms -- --You may convey a covered work in object code form under the terms --of sections 4 and 5, provided that you also convey the --machine-readable Corresponding Source under the terms of this License, --in one of these ways: -- --* **a)** Convey the object code in, or embodied in, a physical product --(including a physical distribution medium), accompanied by the --Corresponding Source fixed on a durable physical medium --customarily used for software interchange. --* **b)** Convey the object code in, or embodied in, a physical product --(including a physical distribution medium), accompanied by a --written offer, valid for at least three years and valid for as --long as you offer spare parts or customer support for that product --model, to give anyone who possesses the object code either **(1)** a --copy of the Corresponding Source for all the software in the --product that is covered by this License, on a durable physical --medium customarily used for software interchange, for a price no --more than your reasonable cost of physically performing this --conveying of source, or **(2)** access to copy the --Corresponding Source from a network server at no charge. --* **c)** Convey individual copies of the object code with a copy of the --written offer to provide the Corresponding Source. This --alternative is allowed only occasionally and noncommercially, and --only if you received the object code with such an offer, in accord --with subsection 6b. --* **d)** Convey the object code by offering access from a designated --place (gratis or for a charge), and offer equivalent access to the --Corresponding Source in the same way through the same place at no --further charge. You need not require recipients to copy the --Corresponding Source along with the object code. If the place to --copy the object code is a network server, the Corresponding Source --may be on a different server (operated by you or a third party) --that supports equivalent copying facilities, provided you maintain --clear directions next to the object code saying where to find the --Corresponding Source. Regardless of what server hosts the --Corresponding Source, you remain obligated to ensure that it is --available for as long as needed to satisfy these requirements. --* **e)** Convey the object code using peer-to-peer transmission, provided --you inform other peers where the object code and Corresponding --Source of the work are being offered to the general public at no --charge under subsection 6d. -- --A separable portion of the object code, whose source code is excluded --from the Corresponding Source as a System Library, need not be --included in conveying the object code work. -- --A “User Product” is either **(1)** a “consumer product”, which means any --tangible personal property which is normally used for personal, family, --or household purposes, or **(2)** anything designed or sold for incorporation --into a dwelling. In determining whether a product is a consumer product, --doubtful cases shall be resolved in favor of coverage. For a particular --product received by a particular user, “normally used” refers to a --typical or common use of that class of product, regardless of the status --of the particular user or of the way in which the particular user --actually uses, or expects or is expected to use, the product. A product --is a consumer product regardless of whether the product has substantial --commercial, industrial or non-consumer uses, unless such uses represent --the only significant mode of use of the product. -- --“Installation Information” for a User Product means any methods, --procedures, authorization keys, or other information required to install --and execute modified versions of a covered work in that User Product from --a modified version of its Corresponding Source. The information must --suffice to ensure that the continued functioning of the modified object --code is in no case prevented or interfered with solely because --modification has been made. -- --If you convey an object code work under this section in, or with, or --specifically for use in, a User Product, and the conveying occurs as --part of a transaction in which the right of possession and use of the --User Product is transferred to the recipient in perpetuity or for a --fixed term (regardless of how the transaction is characterized), the --Corresponding Source conveyed under this section must be accompanied --by the Installation Information. But this requirement does not apply --if neither you nor any third party retains the ability to install --modified object code on the User Product (for example, the work has --been installed in ROM). -- --The requirement to provide Installation Information does not include a --requirement to continue to provide support service, warranty, or updates --for a work that has been modified or installed by the recipient, or for --the User Product in which it has been modified or installed. Access to a --network may be denied when the modification itself materially and --adversely affects the operation of the network or violates the rules and --protocols for communication across the network. -- --Corresponding Source conveyed, and Installation Information provided, --in accord with this section must be in a format that is publicly --documented (and with an implementation available to the public in --source code form), and must require no special password or key for --unpacking, reading or copying. -- --### 7. Additional Terms -- --“Additional permissions” are terms that supplement the terms of this --License by making exceptions from one or more of its conditions. --Additional permissions that are applicable to the entire Program shall --be treated as though they were included in this License, to the extent --that they are valid under applicable law. If additional permissions --apply only to part of the Program, that part may be used separately --under those permissions, but the entire Program remains governed by --this License without regard to the additional permissions. -- --When you convey a copy of a covered work, you may at your option --remove any additional permissions from that copy, or from any part of --it. (Additional permissions may be written to require their own --removal in certain cases when you modify the work.) You may place --additional permissions on material, added by you to a covered work, --for which you have or can give appropriate copyright permission. -- --Notwithstanding any other provision of this License, for material you --add to a covered work, you may (if authorized by the copyright holders of --that material) supplement the terms of this License with terms: -- --* **a)** Disclaiming warranty or limiting liability differently from the --terms of sections 15 and 16 of this License; or --* **b)** Requiring preservation of specified reasonable legal notices or --author attributions in that material or in the Appropriate Legal --Notices displayed by works containing it; or --* **c)** Prohibiting misrepresentation of the origin of that material, or --requiring that modified versions of such material be marked in --reasonable ways as different from the original version; or --* **d)** Limiting the use for publicity purposes of names of licensors or --authors of the material; or --* **e)** Declining to grant rights under trademark law for use of some --trade names, trademarks, or service marks; or --* **f)** Requiring indemnification of licensors and authors of that --material by anyone who conveys the material (or modified versions of --it) with contractual assumptions of liability to the recipient, for --any liability that these contractual assumptions directly impose on --those licensors and authors. -- --All other non-permissive additional terms are considered “further --restrictions” within the meaning of section 10. If the Program as you --received it, or any part of it, contains a notice stating that it is --governed by this License along with a term that is a further --restriction, you may remove that term. If a license document contains --a further restriction but permits relicensing or conveying under this --License, you may add to a covered work material governed by the terms --of that license document, provided that the further restriction does --not survive such relicensing or conveying. -- --If you add terms to a covered work in accord with this section, you --must place, in the relevant source files, a statement of the --additional terms that apply to those files, or a notice indicating --where to find the applicable terms. -- --Additional terms, permissive or non-permissive, may be stated in the --form of a separately written license, or stated as exceptions; --the above requirements apply either way. -- --### 8. Termination -- --You may not propagate or modify a covered work except as expressly --provided under this License. Any attempt otherwise to propagate or --modify it is void, and will automatically terminate your rights under --this License (including any patent licenses granted under the third --paragraph of section 11). -- --However, if you cease all violation of this License, then your --license from a particular copyright holder is reinstated **(a)** --provisionally, unless and until the copyright holder explicitly and --finally terminates your license, and **(b)** permanently, if the copyright --holder fails to notify you of the violation by some reasonable means --prior to 60 days after the cessation. -- --Moreover, your license from a particular copyright holder is --reinstated permanently if the copyright holder notifies you of the --violation by some reasonable means, this is the first time you have --received notice of violation of this License (for any work) from that --copyright holder, and you cure the violation prior to 30 days after --your receipt of the notice. -- --Termination of your rights under this section does not terminate the --licenses of parties who have received copies or rights from you under --this License. If your rights have been terminated and not permanently --reinstated, you do not qualify to receive new licenses for the same --material under section 10. -- --### 9. Acceptance Not Required for Having Copies -- --You are not required to accept this License in order to receive or --run a copy of the Program. Ancillary propagation of a covered work --occurring solely as a consequence of using peer-to-peer transmission --to receive a copy likewise does not require acceptance. However, --nothing other than this License grants you permission to propagate or --modify any covered work. These actions infringe copyright if you do --not accept this License. Therefore, by modifying or propagating a --covered work, you indicate your acceptance of this License to do so. -- --### 10. Automatic Licensing of Downstream Recipients -- --Each time you convey a covered work, the recipient automatically --receives a license from the original licensors, to run, modify and --propagate that work, subject to this License. You are not responsible --for enforcing compliance by third parties with this License. -- --An “entity transaction” is a transaction transferring control of an --organization, or substantially all assets of one, or subdividing an --organization, or merging organizations. If propagation of a covered --work results from an entity transaction, each party to that --transaction who receives a copy of the work also receives whatever --licenses to the work the party's predecessor in interest had or could --give under the previous paragraph, plus a right to possession of the --Corresponding Source of the work from the predecessor in interest, if --the predecessor has it or can get it with reasonable efforts. -- --You may not impose any further restrictions on the exercise of the --rights granted or affirmed under this License. For example, you may --not impose a license fee, royalty, or other charge for exercise of --rights granted under this License, and you may not initiate litigation --(including a cross-claim or counterclaim in a lawsuit) alleging that --any patent claim is infringed by making, using, selling, offering for --sale, or importing the Program or any portion of it. -- --### 11. Patents -- --A “contributor” is a copyright holder who authorizes use under this --License of the Program or a work on which the Program is based. The --work thus licensed is called the contributor's “contributor version”. -- --A contributor's “essential patent claims” are all patent claims --owned or controlled by the contributor, whether already acquired or --hereafter acquired, that would be infringed by some manner, permitted --by this License, of making, using, or selling its contributor version, --but do not include claims that would be infringed only as a --consequence of further modification of the contributor version. For --purposes of this definition, “control” includes the right to grant --patent sublicenses in a manner consistent with the requirements of --this License. -- --Each contributor grants you a non-exclusive, worldwide, royalty-free --patent license under the contributor's essential patent claims, to --make, use, sell, offer for sale, import and otherwise run, modify and --propagate the contents of its contributor version. -- --In the following three paragraphs, a “patent license” is any express --agreement or commitment, however denominated, not to enforce a patent --(such as an express permission to practice a patent or covenant not to --sue for patent infringement). To “grant” such a patent license to a --party means to make such an agreement or commitment not to enforce a --patent against the party. -- --If you convey a covered work, knowingly relying on a patent license, --and the Corresponding Source of the work is not available for anyone --to copy, free of charge and under the terms of this License, through a --publicly available network server or other readily accessible means, --then you must either **(1)** cause the Corresponding Source to be so --available, or **(2)** arrange to deprive yourself of the benefit of the --patent license for this particular work, or **(3)** arrange, in a manner --consistent with the requirements of this License, to extend the patent --license to downstream recipients. “Knowingly relying” means you have --actual knowledge that, but for the patent license, your conveying the --covered work in a country, or your recipient's use of the covered work --in a country, would infringe one or more identifiable patents in that --country that you have reason to believe are valid. -- --If, pursuant to or in connection with a single transaction or --arrangement, you convey, or propagate by procuring conveyance of, a --covered work, and grant a patent license to some of the parties --receiving the covered work authorizing them to use, propagate, modify --or convey a specific copy of the covered work, then the patent license --you grant is automatically extended to all recipients of the covered --work and works based on it. -- --A patent license is “discriminatory” if it does not include within --the scope of its coverage, prohibits the exercise of, or is --conditioned on the non-exercise of one or more of the rights that are --specifically granted under this License. You may not convey a covered --work if you are a party to an arrangement with a third party that is --in the business of distributing software, under which you make payment --to the third party based on the extent of your activity of conveying --the work, and under which the third party grants, to any of the --parties who would receive the covered work from you, a discriminatory --patent license **(a)** in connection with copies of the covered work --conveyed by you (or copies made from those copies), or **(b)** primarily --for and in connection with specific products or compilations that --contain the covered work, unless you entered into that arrangement, --or that patent license was granted, prior to 28 March 2007. -- --Nothing in this License shall be construed as excluding or limiting --any implied license or other defenses to infringement that may --otherwise be available to you under applicable patent law. -- --### 12. No Surrender of Others' Freedom -- --If conditions are imposed on you (whether by court order, agreement or --otherwise) that contradict the conditions of this License, they do not --excuse you from the conditions of this License. If you cannot convey a --covered work so as to satisfy simultaneously your obligations under this --License and any other pertinent obligations, then as a consequence you may --not convey it at all. For example, if you agree to terms that obligate you --to collect a royalty for further conveying from those to whom you convey --the Program, the only way you could satisfy both those terms and this --License would be to refrain entirely from conveying the Program. -- --### 13. Remote Network Interaction; Use with the GNU General Public License -- --Notwithstanding any other provision of this License, if you modify the --Program, your modified version must prominently offer all users --interacting with it remotely through a computer network (if your version --supports such interaction) an opportunity to receive the Corresponding --Source of your version by providing access to the Corresponding Source --from a network server at no charge, through some standard or customary --means of facilitating copying of software. This Corresponding Source --shall include the Corresponding Source for any work covered by version 3 --of the GNU General Public License that is incorporated pursuant to the --following paragraph. -- --Notwithstanding any other provision of this License, you have --permission to link or combine any covered work with a work licensed --under version 3 of the GNU General Public License into a single --combined work, and to convey the resulting work. The terms of this --License will continue to apply to the part which is the covered work, --but the work with which it is combined will remain governed by version --3 of the GNU General Public License. -- --### 14. Revised Versions of this License -- --The Free Software Foundation may publish revised and/or new versions of --the GNU Affero General Public License from time to time. Such new versions --will be similar in spirit to the present version, but may differ in detail to --address new problems or concerns. -- --Each version is given a distinguishing version number. If the --Program specifies that a certain numbered version of the GNU Affero General --Public License “or any later version” applies to it, you have the --option of following the terms and conditions either of that numbered --version or of any later version published by the Free Software --Foundation. If the Program does not specify a version number of the --GNU Affero General Public License, you may choose any version ever published --by the Free Software Foundation. -- --If the Program specifies that a proxy can decide which future --versions of the GNU Affero General Public License can be used, that proxy's --public statement of acceptance of a version permanently authorizes you --to choose that version for the Program. -- --Later license versions may give you additional or different --permissions. However, no additional obligations are imposed on any --author or copyright holder as a result of your choosing to follow a --later version. -- --### 15. Disclaimer of Warranty -- --THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY --APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT --HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM “AS IS” WITHOUT WARRANTY --OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, --THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR --PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM --IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF --ALL NECESSARY SERVICING, REPAIR OR CORRECTION. -- --### 16. Limitation of Liability -- --IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING --WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS --THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY --GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE --USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF --DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD --PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), --EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF --SUCH DAMAGES. -- --### 17. Interpretation of Sections 15 and 16 -- --If the disclaimer of warranty and limitation of liability provided --above cannot be given local legal effect according to their terms, --reviewing courts shall apply local law that most closely approximates --an absolute waiver of all civil liability in connection with the --Program, unless a warranty or assumption of liability accompanies a --copy of the Program in return for a fee. -- --_END OF TERMS AND CONDITIONS_ -- --## How to Apply These Terms to Your New Programs -- --If you develop a new program, and you want it to be of the greatest --possible use to the public, the best way to achieve this is to make it --free software which everyone can redistribute and change under these terms. -- --To do so, attach the following notices to the program. It is safest --to attach them to the start of each source file to most effectively --state the exclusion of warranty; and each file should have at least --the “copyright” line and a pointer to where the full notice is found. -- -- -- Copyright (C) 2024 Gregor Vostrak & Constantin Graf -- -- This program is free software: you can redistribute it and/or modify -- it under the terms of the GNU Affero General Public License as published by -- the Free Software Foundation, either version 3 of the License, or -- (at your option) any later version. -- -- This program is distributed in the hope that it will be useful, -- but WITHOUT ANY WARRANTY; without even the implied warranty of -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -- GNU Affero General Public License for more details. -- -- You should have received a copy of the GNU Affero General Public License -- along with this program. If not, see . -- --Also add information on how to contact you by electronic and paper mail. -- --If your software can interact with users remotely through a computer --network, you should also make sure that it provides a way for users to --get its source. For example, if your program is a web application, its --interface could display a “Source” link that leads users to an archive --of the code. There are many ways you could offer source, and different --solutions will be better for different programs; see section 13 for the --specific requirements. -- --You should also get your employer (if you work as a programmer) or school, --if any, to sign a “copyright disclaimer” for the program, if necessary. --For more information on this, and how to apply and follow the GNU AGPL, see --<>. -diff --git a/SECURITY.md b/SECURITY.md -deleted file mode 100644 -index 254017f..0000000 ---- a/SECURITY.md -+++ /dev/null -@@ -1,5 +0,0 @@ --# Security Policy -- --## Reporting a Vulnerability -- --If you discover a security vulnerability regarding this project, please e-mail me to [security@solidtime.io](mailto:security@solidtime.io)! -diff --git a/app/Actions/Jetstream/AddOrganizationMember.php b/app/Actions/Jetstream/AddOrganizationMember.php -index 7c8cc0f..0521287 100644 ---- a/app/Actions/Jetstream/AddOrganizationMember.php -+++ b/app/Actions/Jetstream/AddOrganizationMember.php -@@ -25,7 +25,7 @@ class AddOrganizationMember implements AddsTeamMembers - */ - public function add(User $owner, Organization $organization, string $email, ?string $role = null): void - { -- Gate::forUser($owner)->authorize('addTeamMember', $organization); // TODO: refactor after owner refactoring -+ Gate::forUser($owner)->authorize('addTeamMember', [$organization]); // TODO: refactor after owner refactoring - - $this->validate($organization, $email, $role); - -diff --git a/app/Actions/Jetstream/UpdateOrganization.php b/app/Actions/Jetstream/UpdateOrganization.php -index 295145f..439d8f9 100644 ---- a/app/Actions/Jetstream/UpdateOrganization.php -+++ b/app/Actions/Jetstream/UpdateOrganization.php -@@ -25,7 +25,7 @@ class UpdateOrganization implements UpdatesTeamNames - */ - public function update(User $user, Organization $organization, array $input): void - { -- Gate::forUser($user)->authorize('update', $organization); -+ Gate::forUser($user)->authorize('update', [$organization]); - - Validator::make($input, [ - 'name' => [ -diff --git a/app/Http/Controllers/Api/V1/ClientController.php b/app/Http/Controllers/Api/V1/ClientController.php -index b992ca6..991ccb6 100644 ---- a/app/Http/Controllers/Api/V1/ClientController.php -+++ b/app/Http/Controllers/Api/V1/ClientController.php -@@ -41,7 +41,7 @@ public function index(Organization $organization, ClientIndexRequest $request): - - $clientsQuery = Client::query() - ->whereBelongsTo($organization, 'organization') -- ->orderBy('created_at', 'desc'); -+ ->orderBy('name'); - - $filterArchived = $request->getFilterArchived(); - if ($filterArchived === 'true') { -@@ -105,12 +105,7 @@ public function destroy(Organization $organization, Client $client): JsonRespons - { - $this->checkPermission($organization, 'clients:delete', $client); - -- if ($client->projects()->exists()) { -- throw new EntityStillInUseApiException('client', 'project'); -- } -- -- $client->delete(); -- -- return response()->json(null, 204); -+ // Deletion disabled: return early to keep data intact -+ return response()->json(['message' => 'Client deletion disabled'], 200); - } - } -diff --git a/app/Http/Controllers/Api/V1/ProjectController.php b/app/Http/Controllers/Api/V1/ProjectController.php -index 72ee24f..5f9433c 100644 ---- a/app/Http/Controllers/Api/V1/ProjectController.php -+++ b/app/Http/Controllers/Api/V1/ProjectController.php -@@ -13,14 +13,12 @@ - use App\Http\Resources\V1\Project\ProjectResource; - use App\Models\Organization; - use App\Models\Project; --use App\Models\ProjectMember; - use App\Models\TimeEntry; - use App\Service\BillableRateService; - use Illuminate\Auth\Access\AuthorizationException; - use Illuminate\Http\JsonResponse; - use Illuminate\Http\Resources\Json\JsonResource; - use Illuminate\Support\Carbon; --use Illuminate\Support\Facades\DB; - - class ProjectController extends Controller - { -@@ -48,7 +46,8 @@ public function index(Organization $organization, ProjectIndexRequest $request): - $user = $this->user(); - - $projectsQuery = Project::query() -- ->whereBelongsTo($organization, 'organization'); -+ ->whereBelongsTo($organization, 'organization') -+ ->orderBy('name'); - - if (! $canViewAllProjects) { - $projectsQuery->visibleByEmployee($user); -@@ -167,22 +166,7 @@ public function destroy(Organization $organization, Project $project): JsonRespo - { - $this->checkPermission($organization, 'projects:delete', $project); - -- if ($project->tasks()->exists()) { -- throw new EntityStillInUseApiException('project', 'task'); -- } -- if ($project->timeEntries()->exists()) { -- throw new EntityStillInUseApiException('project', 'time_entry'); -- } -- -- DB::transaction(function () use (&$project): void { -- $project->members->each(function (ProjectMember $member): void { -- $member->delete(); -- }); -- -- $project->delete(); -- }); -- -- return response() -- ->json(null, 204); -+ // Deletion disabled: return early to keep data intact -+ return response()->json(['message' => 'Project deletion disabled'], 200); - } - } -diff --git a/app/Http/Middleware/ShareInertiaData.php b/app/Http/Middleware/ShareInertiaData.php -index b37a5c5..cb8e24d 100644 ---- a/app/Http/Middleware/ShareInertiaData.php -+++ b/app/Http/Middleware/ShareInertiaData.php -@@ -4,9 +4,11 @@ - - namespace App\Http\Middleware; - -+use App\Models\Client; - use App\Models\Organization; -+use App\Models\Project; - use App\Models\User; --use App\Service\PermissionStore; -+use App\Service\PermissionStore as AppPermissionStore; - use Closure; - use Illuminate\Http\Request; - use Illuminate\Support\Facades\Gate; -@@ -24,8 +26,8 @@ class ShareInertiaData - */ - public function handle(Request $request, Closure $next): Response - { -- /** @var PermissionStore $permissions */ -- $permissions = app(PermissionStore::class); -+ /** @var AppPermissionStore $permissions */ -+ $permissions = app(AppPermissionStore::class); - Inertia::share([ - 'jetstream' => function () use ($request) { - /** @var User|null $user */ -@@ -75,6 +77,43 @@ public function handle(Request $request, Closure $next): Response - 'name' => $user->currentTeam->name, - 'personal_team' => $user->currentTeam->personal_team, - 'currency' => $user->currentTeam->currency, -+ // Sidebar counts respecting visibility (projects assigned to the user) -+ 'counts' => (function () use ($user) { -+ /** @var Organization $organization */ -+ $organization = $user->currentTeam; -+ /** @var AppPermissionStore $permissionStore */ -+ $permissionStore = app(AppPermissionStore::class); -+ $canViewAllProjects = $permissionStore->has($organization, 'projects:view:all'); -+ -+ // Projects count (active only), restricted to assigned projects if not allowed to view all -+ $projectsQuery = Project::query() -+ ->whereBelongsTo($organization, 'organization') -+ ->whereNull('archived_at'); -+ if (! $canViewAllProjects) { -+ $projectsQuery->visibleByEmployee($user); -+ } -+ $projectsCount = (clone $projectsQuery)->count(); -+ -+ // Clients count: distinct clients with at least one visible active project -+ $clientsCount = Client::query() -+ ->whereBelongsTo($organization, 'organization') -+ ->whereNull('archived_at') -+ ->whereHas('projects', function ($query) use ($organization, $user, $canViewAllProjects): void { -+ /** @var \Illuminate\Database\Eloquent\Builder $query */ -+ $query->whereBelongsTo($organization, 'organization') -+ ->whereNull('archived_at'); -+ if (! $canViewAllProjects) { -+ $query->visibleByEmployee($user); -+ } -+ }) -+ ->distinct('clients.id') -+ ->count('clients.id'); -+ -+ return [ -+ 'projects' => $projectsCount, -+ 'clients' => $clientsCount, -+ ]; -+ })(), - ] : null, - ], array_filter([ - 'all_teams' => $user->organizations->map(function (Organization $organization): array { -diff --git a/composer.json b/composer.json -index 53c4084..8d59be8 100644 ---- a/composer.json -+++ b/composer.json -@@ -5,7 +5,7 @@ - "keywords": [], - "license": "AGPL-3.0-or-later", - "require": { -- "php": "8.3.*", -+ "php": "8.4.*", - "ext-zip": "*", - "brick/money": "^0.10.0", - "datomatic/laravel-enum-helper": "^2.0.0", -@@ -127,6 +127,9 @@ - "optimize-autoloader": true, - "preferred-install": "dist", - "sort-packages": true, -+ "platform": { -+ "php": "8.4.0" -+ }, - "allow-plugins": { - "pestphp/pest-plugin": true, - "php-http/discovery": true, -diff --git a/composer.lock b/composer.lock -index 10fe2ae..3304aca 100644 ---- a/composer.lock -+++ b/composer.lock -@@ -4,20 +4,20 @@ - "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", - "This file is @generated automatically" - ], -- "content-hash": "5c66bc515959a78418203fcc8439ed42", -+ "content-hash": "c6a9c17f83047eead9e608193d70ea28", - "packages": [ - { - "name": "anourvalar/eloquent-serialize", -- "version": "1.3.3", -+ "version": "1.3.4", - "source": { - "type": "git", - "url": "https://github.com/AnourValar/eloquent-serialize.git", -- "reference": "2f05023f1e465a91dc4f08483e6710325641a444" -+ "reference": "0934a98866e02b73e38696961a9d7984b834c9d9" - }, - "dist": { - "type": "zip", -- "url": "https://api.github.com/repos/AnourValar/eloquent-serialize/zipball/2f05023f1e465a91dc4f08483e6710325641a444", -- "reference": "2f05023f1e465a91dc4f08483e6710325641a444", -+ "url": "https://api.github.com/repos/AnourValar/eloquent-serialize/zipball/0934a98866e02b73e38696961a9d7984b834c9d9", -+ "reference": "0934a98866e02b73e38696961a9d7984b834c9d9", - "shasum": "" - }, - "require": { -@@ -68,9 +68,9 @@ - ], - "support": { - "issues": "https://github.com/AnourValar/eloquent-serialize/issues", -- "source": "https://github.com/AnourValar/eloquent-serialize/tree/1.3.3" -+ "source": "https://github.com/AnourValar/eloquent-serialize/tree/1.3.4" - }, -- "time": "2025-05-28T17:07:28+00:00" -+ "time": "2025-07-30T15:45:57+00:00" - }, - { - "name": "aws/aws-crt-php", -@@ -128,16 +128,16 @@ - }, - { - "name": "aws/aws-sdk-php", -- "version": "3.349.3", -+ "version": "3.352.4", - "source": { - "type": "git", - "url": "https://github.com/aws/aws-sdk-php.git", -- "reference": "b2d4718786398f47626add9c29840fc416175ef2" -+ "reference": "d3ce2a85687d55cd67d52682306227bc6aa836d6" - }, - "dist": { - "type": "zip", -- "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/b2d4718786398f47626add9c29840fc416175ef2", -- "reference": "b2d4718786398f47626add9c29840fc416175ef2", -+ "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/d3ce2a85687d55cd67d52682306227bc6aa836d6", -+ "reference": "d3ce2a85687d55cd67d52682306227bc6aa836d6", - "shasum": "" - }, - "require": { -@@ -219,9 +219,9 @@ - "support": { - "forum": "https://github.com/aws/aws-sdk-php/discussions", - "issues": "https://github.com/aws/aws-sdk-php/issues", -- "source": "https://github.com/aws/aws-sdk-php/tree/3.349.3" -+ "source": "https://github.com/aws/aws-sdk-php/tree/3.352.4" - }, -- "time": "2025-07-09T18:10:17+00:00" -+ "time": "2025-08-07T18:15:55+00:00" - }, - { - "name": "bacon/bacon-qr-code", -@@ -489,16 +489,16 @@ - }, - { - "name": "brick/money", -- "version": "0.10.1", -+ "version": "0.10.2", - "source": { - "type": "git", - "url": "https://github.com/brick/money.git", -- "reference": "779c1d3b708e4dd37fe8a32a189b9f241b52f194" -+ "reference": "4ee860c0371aabef5faaddcc28b27f208bb67b76" - }, - "dist": { - "type": "zip", -- "url": "https://api.github.com/repos/brick/money/zipball/779c1d3b708e4dd37fe8a32a189b9f241b52f194", -- "reference": "779c1d3b708e4dd37fe8a32a189b9f241b52f194", -+ "url": "https://api.github.com/repos/brick/money/zipball/4ee860c0371aabef5faaddcc28b27f208bb67b76", -+ "reference": "4ee860c0371aabef5faaddcc28b27f208bb67b76", - "shasum": "" - }, - "require": { -@@ -534,7 +534,7 @@ - ], - "support": { - "issues": "https://github.com/brick/money/issues", -- "source": "https://github.com/brick/money/tree/0.10.1" -+ "source": "https://github.com/brick/money/tree/0.10.2" - }, - "funding": [ - { -@@ -542,7 +542,7 @@ - "type": "github" - } - ], -- "time": "2025-03-05T13:00:01+00:00" -+ "time": "2025-08-05T13:08:53+00:00" - }, - { - "name": "carbonphp/carbon-doctrine-types", -@@ -1518,16 +1518,16 @@ - }, - { - "name": "dedoc/scramble", -- "version": "v0.12.23", -+ "version": "v0.12.28", - "source": { - "type": "git", - "url": "https://github.com/dedoc/scramble.git", -- "reference": "5b650167c81c59138e844c2ae550c14dc1a249d0" -+ "reference": "f06a98d1fd6678544428df7077d73194e2d28de3" - }, - "dist": { - "type": "zip", -- "url": "https://api.github.com/repos/dedoc/scramble/zipball/5b650167c81c59138e844c2ae550c14dc1a249d0", -- "reference": "5b650167c81c59138e844c2ae550c14dc1a249d0", -+ "url": "https://api.github.com/repos/dedoc/scramble/zipball/f06a98d1fd6678544428df7077d73194e2d28de3", -+ "reference": "f06a98d1fd6678544428df7077d73194e2d28de3", - "shasum": "" - }, - "require": { -@@ -1586,7 +1586,7 @@ - ], - "support": { - "issues": "https://github.com/dedoc/scramble/issues", -- "source": "https://github.com/dedoc/scramble/tree/v0.12.23" -+ "source": "https://github.com/dedoc/scramble/tree/v0.12.28" - }, - "funding": [ - { -@@ -1594,7 +1594,7 @@ - "type": "github" - } - ], -- "time": "2025-06-15T09:04:49+00:00" -+ "time": "2025-08-04T12:20:10+00:00" - }, - { - "name": "defuse/php-encryption", -@@ -1740,16 +1740,16 @@ - }, - { - "name": "doctrine/dbal", -- "version": "4.3.0", -+ "version": "4.3.2", - "source": { - "type": "git", - "url": "https://github.com/doctrine/dbal.git", -- "reference": "5fe09532be619202d59c70956c6fb20e97933ee3" -+ "reference": "7669f131d43b880de168b2d2df9687d152d6c762" - }, - "dist": { - "type": "zip", -- "url": "https://api.github.com/repos/doctrine/dbal/zipball/5fe09532be619202d59c70956c6fb20e97933ee3", -- "reference": "5fe09532be619202d59c70956c6fb20e97933ee3", -+ "url": "https://api.github.com/repos/doctrine/dbal/zipball/7669f131d43b880de168b2d2df9687d152d6c762", -+ "reference": "7669f131d43b880de168b2d2df9687d152d6c762", - "shasum": "" - }, - "require": { -@@ -1826,7 +1826,7 @@ - ], - "support": { - "issues": "https://github.com/doctrine/dbal/issues", -- "source": "https://github.com/doctrine/dbal/tree/4.3.0" -+ "source": "https://github.com/doctrine/dbal/tree/4.3.2" - }, - "funding": [ - { -@@ -1842,7 +1842,7 @@ - "type": "tidelift" - } - ], -- "time": "2025-06-16T19:31:04+00:00" -+ "time": "2025-08-05T13:30:38+00:00" - }, - { - "name": "doctrine/deprecations", -@@ -2255,16 +2255,16 @@ - }, - { - "name": "filament/actions", -- "version": "v3.3.31", -+ "version": "v3.3.35", - "source": { - "type": "git", - "url": "https://github.com/filamentphp/actions.git", -- "reference": "3fee2c23368e5ee8d4613786b1bed8d98a8073fc" -+ "reference": "9eaddc610d9adc00d738b8b116cea1be35a88f85" - }, - "dist": { - "type": "zip", -- "url": "https://api.github.com/repos/filamentphp/actions/zipball/3fee2c23368e5ee8d4613786b1bed8d98a8073fc", -- "reference": "3fee2c23368e5ee8d4613786b1bed8d98a8073fc", -+ "url": "https://api.github.com/repos/filamentphp/actions/zipball/9eaddc610d9adc00d738b8b116cea1be35a88f85", -+ "reference": "9eaddc610d9adc00d738b8b116cea1be35a88f85", - "shasum": "" - }, - "require": { -@@ -2304,20 +2304,20 @@ - "issues": "https://github.com/filamentphp/filament/issues", - "source": "https://github.com/filamentphp/filament" - }, -- "time": "2025-07-08T20:42:21+00:00" -+ "time": "2025-07-16T08:51:11+00:00" - }, - { - "name": "filament/filament", -- "version": "v3.3.31", -+ "version": "v3.3.35", - "source": { - "type": "git", - "url": "https://github.com/filamentphp/panels.git", -- "reference": "b432b938c35467b9626978fb8b72578ec4d162ae" -+ "reference": "d9d2367c910956e1e7a4c2903600f37bd740dd11" - }, - "dist": { - "type": "zip", -- "url": "https://api.github.com/repos/filamentphp/panels/zipball/b432b938c35467b9626978fb8b72578ec4d162ae", -- "reference": "b432b938c35467b9626978fb8b72578ec4d162ae", -+ "url": "https://api.github.com/repos/filamentphp/panels/zipball/d9d2367c910956e1e7a4c2903600f37bd740dd11", -+ "reference": "d9d2367c910956e1e7a4c2903600f37bd740dd11", - "shasum": "" - }, - "require": { -@@ -2369,20 +2369,20 @@ - "issues": "https://github.com/filamentphp/filament/issues", - "source": "https://github.com/filamentphp/filament" - }, -- "time": "2025-07-01T09:34:40+00:00" -+ "time": "2025-08-04T10:34:25+00:00" - }, - { - "name": "filament/forms", -- "version": "v3.3.31", -+ "version": "v3.3.35", - "source": { - "type": "git", - "url": "https://github.com/filamentphp/forms.git", -- "reference": "e348d8a92c96fc87b002830848e48559eb0ef715" -+ "reference": "158177c4a551c8aba5be3f45bc423195ab28e5bc" - }, - "dist": { - "type": "zip", -- "url": "https://api.github.com/repos/filamentphp/forms/zipball/e348d8a92c96fc87b002830848e48559eb0ef715", -- "reference": "e348d8a92c96fc87b002830848e48559eb0ef715", -+ "url": "https://api.github.com/repos/filamentphp/forms/zipball/158177c4a551c8aba5be3f45bc423195ab28e5bc", -+ "reference": "158177c4a551c8aba5be3f45bc423195ab28e5bc", - "shasum": "" - }, - "require": { -@@ -2425,11 +2425,11 @@ - "issues": "https://github.com/filamentphp/filament/issues", - "source": "https://github.com/filamentphp/filament" - }, -- "time": "2025-07-08T20:42:22+00:00" -+ "time": "2025-08-04T10:34:20+00:00" - }, - { - "name": "filament/infolists", -- "version": "v3.3.31", -+ "version": "v3.3.35", - "source": { - "type": "git", - "url": "https://github.com/filamentphp/infolists.git", -@@ -2480,7 +2480,7 @@ - }, - { - "name": "filament/notifications", -- "version": "v3.3.31", -+ "version": "v3.3.35", - "source": { - "type": "git", - "url": "https://github.com/filamentphp/notifications.git", -@@ -2532,16 +2532,16 @@ - }, - { - "name": "filament/support", -- "version": "v3.3.31", -+ "version": "v3.3.35", - "source": { - "type": "git", - "url": "https://github.com/filamentphp/support.git", -- "reference": "ec8c7e9e6b49d4f1150a19bfd6fc585c717a857d" -+ "reference": "89d8e729025c195a06f2e510af4517fc9a8fd07f" - }, - "dist": { - "type": "zip", -- "url": "https://api.github.com/repos/filamentphp/support/zipball/ec8c7e9e6b49d4f1150a19bfd6fc585c717a857d", -- "reference": "ec8c7e9e6b49d4f1150a19bfd6fc585c717a857d", -+ "url": "https://api.github.com/repos/filamentphp/support/zipball/89d8e729025c195a06f2e510af4517fc9a8fd07f", -+ "reference": "89d8e729025c195a06f2e510af4517fc9a8fd07f", - "shasum": "" - }, - "require": { -@@ -2587,20 +2587,20 @@ - "issues": "https://github.com/filamentphp/filament/issues", - "source": "https://github.com/filamentphp/filament" - }, -- "time": "2025-07-08T20:42:46+00:00" -+ "time": "2025-07-28T09:02:43+00:00" - }, - { - "name": "filament/tables", -- "version": "v3.3.31", -+ "version": "v3.3.35", - "source": { - "type": "git", - "url": "https://github.com/filamentphp/tables.git", -- "reference": "3f0d827c960f1ee4a67ab71c416ad67e24747dc4" -+ "reference": "22bc439ec6f2b5fd5703ef499381d7beb0a6b369" - }, - "dist": { - "type": "zip", -- "url": "https://api.github.com/repos/filamentphp/tables/zipball/3f0d827c960f1ee4a67ab71c416ad67e24747dc4", -- "reference": "3f0d827c960f1ee4a67ab71c416ad67e24747dc4", -+ "url": "https://api.github.com/repos/filamentphp/tables/zipball/22bc439ec6f2b5fd5703ef499381d7beb0a6b369", -+ "reference": "22bc439ec6f2b5fd5703ef499381d7beb0a6b369", - "shasum": "" - }, - "require": { -@@ -2639,11 +2639,11 @@ - "issues": "https://github.com/filamentphp/filament/issues", - "source": "https://github.com/filamentphp/filament" - }, -- "time": "2025-07-08T20:42:18+00:00" -+ "time": "2025-07-28T09:02:34+00:00" - }, - { - "name": "filament/widgets", -- "version": "v3.3.31", -+ "version": "v3.3.35", - "source": { - "type": "git", - "url": "https://github.com/filamentphp/widgets.git", -@@ -3449,16 +3449,16 @@ - }, - { - "name": "inertiajs/inertia-laravel", -- "version": "v2.0.3", -+ "version": "v2.0.4", - "source": { - "type": "git", - "url": "https://github.com/inertiajs/inertia-laravel.git", -- "reference": "b732a5cc33423b2c2366fea38b17dc637d2a0b4f" -+ "reference": "bab0c0c992aa36e63d800903288d490d6b774d97" - }, - "dist": { - "type": "zip", -- "url": "https://api.github.com/repos/inertiajs/inertia-laravel/zipball/b732a5cc33423b2c2366fea38b17dc637d2a0b4f", -- "reference": "b732a5cc33423b2c2366fea38b17dc637d2a0b4f", -+ "url": "https://api.github.com/repos/inertiajs/inertia-laravel/zipball/bab0c0c992aa36e63d800903288d490d6b774d97", -+ "reference": "bab0c0c992aa36e63d800903288d490d6b774d97", - "shasum": "" - }, - "require": { -@@ -3468,6 +3468,7 @@ - "symfony/console": "^6.2|^7.0" - }, - "require-dev": { -+ "guzzlehttp/guzzle": "^7.2", - "laravel/pint": "^1.16", - "mockery/mockery": "^1.3.3", - "orchestra/testbench": "^8.0|^9.2|^10.0", -@@ -3511,9 +3512,9 @@ - ], - "support": { - "issues": "https://github.com/inertiajs/inertia-laravel/issues", -- "source": "https://github.com/inertiajs/inertia-laravel/tree/v2.0.3" -+ "source": "https://github.com/inertiajs/inertia-laravel/tree/v2.0.4" - }, -- "time": "2025-06-20T07:38:21+00:00" -+ "time": "2025-07-15T08:08:04+00:00" - }, - { - "name": "jawira/case-converter", -@@ -3658,16 +3659,16 @@ - }, - { - "name": "kirschbaum-development/eloquent-power-joins", -- "version": "4.2.6", -+ "version": "4.2.7", - "source": { - "type": "git", - "url": "https://github.com/kirschbaum-development/eloquent-power-joins.git", -- "reference": "72cff1e838bb3f826dc09a5566219ad7fa56237f" -+ "reference": "f2f8d3575a54d91b3e5058d65ac1fccb3ea7dd94" - }, - "dist": { - "type": "zip", -- "url": "https://api.github.com/repos/kirschbaum-development/eloquent-power-joins/zipball/72cff1e838bb3f826dc09a5566219ad7fa56237f", -- "reference": "72cff1e838bb3f826dc09a5566219ad7fa56237f", -+ "url": "https://api.github.com/repos/kirschbaum-development/eloquent-power-joins/zipball/f2f8d3575a54d91b3e5058d65ac1fccb3ea7dd94", -+ "reference": "f2f8d3575a54d91b3e5058d65ac1fccb3ea7dd94", - "shasum": "" - }, - "require": { -@@ -3715,9 +3716,9 @@ - ], - "support": { - "issues": "https://github.com/kirschbaum-development/eloquent-power-joins/issues", -- "source": "https://github.com/kirschbaum-development/eloquent-power-joins/tree/4.2.6" -+ "source": "https://github.com/kirschbaum-development/eloquent-power-joins/tree/4.2.7" - }, -- "time": "2025-07-10T16:55:34+00:00" -+ "time": "2025-08-06T10:46:13+00:00" - }, - { - "name": "korridor/laravel-computed-attributes", -@@ -4139,16 +4140,16 @@ - }, - { - "name": "laravel/fortify", -- "version": "v1.27.0", -+ "version": "v1.28.0", - "source": { - "type": "git", - "url": "https://github.com/laravel/fortify.git", -- "reference": "0fb2ec99dfee77ed66884668fc06683acca91ebd" -+ "reference": "138d9790081343d4c4357daa5425790cd7f6bd82" - }, - "dist": { - "type": "zip", -- "url": "https://api.github.com/repos/laravel/fortify/zipball/0fb2ec99dfee77ed66884668fc06683acca91ebd", -- "reference": "0fb2ec99dfee77ed66884668fc06683acca91ebd", -+ "url": "https://api.github.com/repos/laravel/fortify/zipball/138d9790081343d4c4357daa5425790cd7f6bd82", -+ "reference": "138d9790081343d4c4357daa5425790cd7f6bd82", - "shasum": "" - }, - "require": { -@@ -4200,20 +4201,20 @@ - "issues": "https://github.com/laravel/fortify/issues", - "source": "https://github.com/laravel/fortify" - }, -- "time": "2025-06-11T14:30:52+00:00" -+ "time": "2025-07-22T15:26:32+00:00" - }, - { - "name": "laravel/framework", -- "version": "v12.20.0", -+ "version": "v12.22.0", - "source": { - "type": "git", - "url": "https://github.com/laravel/framework.git", -- "reference": "1b9a00f8caf5503c92aa436279172beae1a484ff" -+ "reference": "6ab00c913ef6ec6fad0bd506f7452c0bb9e792c3" - }, - "dist": { - "type": "zip", -- "url": "https://api.github.com/repos/laravel/framework/zipball/1b9a00f8caf5503c92aa436279172beae1a484ff", -- "reference": "1b9a00f8caf5503c92aa436279172beae1a484ff", -+ "url": "https://api.github.com/repos/laravel/framework/zipball/6ab00c913ef6ec6fad0bd506f7452c0bb9e792c3", -+ "reference": "6ab00c913ef6ec6fad0bd506f7452c0bb9e792c3", - "shasum": "" - }, - "require": { -@@ -4415,20 +4416,20 @@ - "issues": "https://github.com/laravel/framework/issues", - "source": "https://github.com/laravel/framework" - }, -- "time": "2025-07-08T15:02:21+00:00" -+ "time": "2025-08-07T13:49:53+00:00" - }, - { - "name": "laravel/jetstream", -- "version": "v5.3.7", -+ "version": "v5.3.8", - "source": { - "type": "git", - "url": "https://github.com/laravel/jetstream.git", -- "reference": "b606c21daeaa38547f853789212e3802b0f6ff08" -+ "reference": "5720f0c0a81ad4bc44602d45c2d5ce55f8c7fe24" - }, - "dist": { - "type": "zip", -- "url": "https://api.github.com/repos/laravel/jetstream/zipball/b606c21daeaa38547f853789212e3802b0f6ff08", -- "reference": "b606c21daeaa38547f853789212e3802b0f6ff08", -+ "url": "https://api.github.com/repos/laravel/jetstream/zipball/5720f0c0a81ad4bc44602d45c2d5ce55f8c7fe24", -+ "reference": "5720f0c0a81ad4bc44602d45c2d5ce55f8c7fe24", - "shasum": "" - }, - "require": { -@@ -4482,20 +4483,20 @@ - "issues": "https://github.com/laravel/jetstream/issues", - "source": "https://github.com/laravel/jetstream" - }, -- "time": "2025-06-16T13:27:00+00:00" -+ "time": "2025-07-18T18:49:50+00:00" - }, - { - "name": "laravel/octane", -- "version": "v2.11.0", -+ "version": "v2.12.1", - "source": { - "type": "git", - "url": "https://github.com/laravel/octane.git", -- "reference": "00e4d40047a24c267c9d3d0abfb47a6e27a7dc7f" -+ "reference": "4ca38b90d76f31b8c1e27873316c2db34450151c" - }, - "dist": { - "type": "zip", -- "url": "https://api.github.com/repos/laravel/octane/zipball/00e4d40047a24c267c9d3d0abfb47a6e27a7dc7f", -- "reference": "00e4d40047a24c267c9d3d0abfb47a6e27a7dc7f", -+ "url": "https://api.github.com/repos/laravel/octane/zipball/4ca38b90d76f31b8c1e27873316c2db34450151c", -+ "reference": "4ca38b90d76f31b8c1e27873316c2db34450151c", - "shasum": "" - }, - "require": { -@@ -4572,20 +4573,20 @@ - "issues": "https://github.com/laravel/octane/issues", - "source": "https://github.com/laravel/octane" - }, -- "time": "2025-06-28T17:28:13+00:00" -+ "time": "2025-07-25T15:03:05+00:00" - }, - { - "name": "laravel/passport", -- "version": "v13.0.5", -+ "version": "v13.1.0", - "source": { - "type": "git", - "url": "https://github.com/laravel/passport.git", -- "reference": "9a3b47bc784dc9334aad67f690b13230b0434960" -+ "reference": "7e99ca9979fccf4841847a849126c40143b8d548" - }, - "dist": { - "type": "zip", -- "url": "https://api.github.com/repos/laravel/passport/zipball/9a3b47bc784dc9334aad67f690b13230b0434960", -- "reference": "9a3b47bc784dc9334aad67f690b13230b0434960", -+ "url": "https://api.github.com/repos/laravel/passport/zipball/7e99ca9979fccf4841847a849126c40143b8d548", -+ "reference": "7e99ca9979fccf4841847a849126c40143b8d548", - "shasum": "" - }, - "require": { -@@ -4649,7 +4650,7 @@ - "issues": "https://github.com/laravel/passport/issues", - "source": "https://github.com/laravel/passport" - }, -- "time": "2025-06-12T15:12:08+00:00" -+ "time": "2025-08-07T13:52:56+00:00" - }, - { - "name": "laravel/prompts", -@@ -4976,16 +4977,16 @@ - }, - { - "name": "league/commonmark", -- "version": "2.7.0", -+ "version": "2.7.1", - "source": { - "type": "git", - "url": "https://github.com/thephpleague/commonmark.git", -- "reference": "6fbb36d44824ed4091adbcf4c7d4a3923cdb3405" -+ "reference": "10732241927d3971d28e7ea7b5712721fa2296ca" - }, - "dist": { - "type": "zip", -- "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/6fbb36d44824ed4091adbcf4c7d4a3923cdb3405", -- "reference": "6fbb36d44824ed4091adbcf4c7d4a3923cdb3405", -+ "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/10732241927d3971d28e7ea7b5712721fa2296ca", -+ "reference": "10732241927d3971d28e7ea7b5712721fa2296ca", - "shasum": "" - }, - "require": { -@@ -5014,7 +5015,7 @@ - "symfony/process": "^5.4 | ^6.0 | ^7.0", - "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0 | ^7.0", - "unleashedtech/php-coding-standard": "^3.1.1", -- "vimeo/psalm": "^4.24.0 || ^5.0.0" -+ "vimeo/psalm": "^4.24.0 || ^5.0.0 || ^6.0.0" - }, - "suggest": { - "symfony/yaml": "v2.3+ required if using the Front Matter extension" -@@ -5079,7 +5080,7 @@ - "type": "tidelift" - } - ], -- "time": "2025-05-05T12:20:28+00:00" -+ "time": "2025-07-20T12:47:49+00:00" - }, - { - "name": "league/config", -@@ -5895,16 +5896,16 @@ - }, - { - "name": "livewire/livewire", -- "version": "v3.6.3", -+ "version": "v3.6.4", - "source": { - "type": "git", - "url": "https://github.com/livewire/livewire.git", -- "reference": "56aa1bb63a46e06181c56fa64717a7287e19115e" -+ "reference": "ef04be759da41b14d2d129e670533180a44987dc" - }, - "dist": { - "type": "zip", -- "url": "https://api.github.com/repos/livewire/livewire/zipball/56aa1bb63a46e06181c56fa64717a7287e19115e", -- "reference": "56aa1bb63a46e06181c56fa64717a7287e19115e", -+ "url": "https://api.github.com/repos/livewire/livewire/zipball/ef04be759da41b14d2d129e670533180a44987dc", -+ "reference": "ef04be759da41b14d2d129e670533180a44987dc", - "shasum": "" - }, - "require": { -@@ -5959,7 +5960,7 @@ - "description": "A front-end framework for Laravel.", - "support": { - "issues": "https://github.com/livewire/livewire/issues", -- "source": "https://github.com/livewire/livewire/tree/v3.6.3" -+ "source": "https://github.com/livewire/livewire/tree/v3.6.4" - }, - "funding": [ - { -@@ -5967,20 +5968,20 @@ - "type": "github" - } - ], -- "time": "2025-04-12T22:26:52+00:00" -+ "time": "2025-07-17T05:12:15+00:00" - }, - { - "name": "maatwebsite/excel", -- "version": "3.1.64", -+ "version": "3.1.66", - "source": { - "type": "git", - "url": "https://github.com/SpartnerNL/Laravel-Excel.git", -- "reference": "e25d44a2d91da9179cd2d7fec952313548597a79" -+ "reference": "3b29c2426a46674f444890c45f742452a396aae8" - }, - "dist": { - "type": "zip", -- "url": "https://api.github.com/repos/SpartnerNL/Laravel-Excel/zipball/e25d44a2d91da9179cd2d7fec952313548597a79", -- "reference": "e25d44a2d91da9179cd2d7fec952313548597a79", -+ "url": "https://api.github.com/repos/SpartnerNL/Laravel-Excel/zipball/3b29c2426a46674f444890c45f742452a396aae8", -+ "reference": "3b29c2426a46674f444890c45f742452a396aae8", - "shasum": "" - }, - "require": { -@@ -5988,7 +5989,7 @@ - "ext-json": "*", - "illuminate/support": "5.8.*||^6.0||^7.0||^8.0||^9.0||^10.0||^11.0||^12.0", - "php": "^7.0||^8.0", -- "phpoffice/phpspreadsheet": "^1.29.9", -+ "phpoffice/phpspreadsheet": "^1.29.12", - "psr/simple-cache": "^1.0||^2.0||^3.0" - }, - "require-dev": { -@@ -6036,7 +6037,7 @@ - ], - "support": { - "issues": "https://github.com/SpartnerNL/Laravel-Excel/issues", -- "source": "https://github.com/SpartnerNL/Laravel-Excel/tree/3.1.64" -+ "source": "https://github.com/SpartnerNL/Laravel-Excel/tree/3.1.66" - }, - "funding": [ - { -@@ -6048,26 +6049,26 @@ - "type": "github" - } - ], -- "time": "2025-02-24T11:12:50+00:00" -+ "time": "2025-08-07T08:31:22+00:00" - }, - { - "name": "maennchen/zipstream-php", -- "version": "3.1.2", -+ "version": "3.2.0", - "source": { - "type": "git", - "url": "https://github.com/maennchen/ZipStream-PHP.git", -- "reference": "aeadcf5c412332eb426c0f9b4485f6accba2a99f" -+ "reference": "9712d8fa4cdf9240380b01eb4be55ad8dcf71416" - }, - "dist": { - "type": "zip", -- "url": "https://api.github.com/repos/maennchen/ZipStream-PHP/zipball/aeadcf5c412332eb426c0f9b4485f6accba2a99f", -- "reference": "aeadcf5c412332eb426c0f9b4485f6accba2a99f", -+ "url": "https://api.github.com/repos/maennchen/ZipStream-PHP/zipball/9712d8fa4cdf9240380b01eb4be55ad8dcf71416", -+ "reference": "9712d8fa4cdf9240380b01eb4be55ad8dcf71416", - "shasum": "" - }, - "require": { - "ext-mbstring": "*", - "ext-zlib": "*", -- "php-64bit": "^8.2" -+ "php-64bit": "^8.3" - }, - "require-dev": { - "brianium/paratest": "^7.7", -@@ -6076,7 +6077,7 @@ - "guzzlehttp/guzzle": "^7.5", - "mikey179/vfsstream": "^1.6", - "php-coveralls/php-coveralls": "^2.5", -- "phpunit/phpunit": "^11.0", -+ "phpunit/phpunit": "^12.0", - "vimeo/psalm": "^6.0" - }, - "suggest": { -@@ -6118,7 +6119,7 @@ - ], - "support": { - "issues": "https://github.com/maennchen/ZipStream-PHP/issues", -- "source": "https://github.com/maennchen/ZipStream-PHP/tree/3.1.2" -+ "source": "https://github.com/maennchen/ZipStream-PHP/tree/3.2.0" - }, - "funding": [ - { -@@ -6126,7 +6127,7 @@ - "type": "github" - } - ], -- "time": "2025-01-27T12:07:53+00:00" -+ "time": "2025-07-17T11:15:13+00:00" - }, - { - "name": "marc-mabe/php-enum", -@@ -6310,16 +6311,16 @@ - }, - { - "name": "masterminds/html5", -- "version": "2.9.0", -+ "version": "2.10.0", - "source": { - "type": "git", - "url": "https://github.com/Masterminds/html5-php.git", -- "reference": "f5ac2c0b0a2eefca70b2ce32a5809992227e75a6" -+ "reference": "fcf91eb64359852f00d921887b219479b4f21251" - }, - "dist": { - "type": "zip", -- "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/f5ac2c0b0a2eefca70b2ce32a5809992227e75a6", -- "reference": "f5ac2c0b0a2eefca70b2ce32a5809992227e75a6", -+ "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/fcf91eb64359852f00d921887b219479b4f21251", -+ "reference": "fcf91eb64359852f00d921887b219479b4f21251", - "shasum": "" - }, - "require": { -@@ -6371,9 +6372,9 @@ - ], - "support": { - "issues": "https://github.com/Masterminds/html5-php/issues", -- "source": "https://github.com/Masterminds/html5-php/tree/2.9.0" -+ "source": "https://github.com/Masterminds/html5-php/tree/2.10.0" - }, -- "time": "2024-03-31T07:05:07+00:00" -+ "time": "2025-07-25T09:04:22+00:00" - }, - { - "name": "mobiledetect/mobiledetectlib", -@@ -6611,16 +6612,16 @@ - }, - { - "name": "myclabs/deep-copy", -- "version": "1.13.3", -+ "version": "1.13.4", - "source": { - "type": "git", - "url": "https://github.com/myclabs/DeepCopy.git", -- "reference": "faed855a7b5f4d4637717c2b3863e277116beb36" -+ "reference": "07d290f0c47959fd5eed98c95ee5602db07e0b6a" - }, - "dist": { - "type": "zip", -- "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/faed855a7b5f4d4637717c2b3863e277116beb36", -- "reference": "faed855a7b5f4d4637717c2b3863e277116beb36", -+ "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/07d290f0c47959fd5eed98c95ee5602db07e0b6a", -+ "reference": "07d290f0c47959fd5eed98c95ee5602db07e0b6a", - "shasum": "" - }, - "require": { -@@ -6659,7 +6660,7 @@ - ], - "support": { - "issues": "https://github.com/myclabs/DeepCopy/issues", -- "source": "https://github.com/myclabs/DeepCopy/tree/1.13.3" -+ "source": "https://github.com/myclabs/DeepCopy/tree/1.13.4" - }, - "funding": [ - { -@@ -6667,20 +6668,20 @@ - "type": "tidelift" - } - ], -- "time": "2025-07-05T12:25:42+00:00" -+ "time": "2025-08-01T08:46:24+00:00" - }, - { - "name": "nesbot/carbon", -- "version": "3.10.1", -+ "version": "3.10.2", - "source": { - "type": "git", - "url": "https://github.com/CarbonPHP/carbon.git", -- "reference": "1fd1935b2d90aef2f093c5e35f7ae1257c448d00" -+ "reference": "76b5c07b8a9d2025ed1610e14cef1f3fd6ad2c24" - }, - "dist": { - "type": "zip", -- "url": "https://api.github.com/repos/CarbonPHP/carbon/zipball/1fd1935b2d90aef2f093c5e35f7ae1257c448d00", -- "reference": "1fd1935b2d90aef2f093c5e35f7ae1257c448d00", -+ "url": "https://api.github.com/repos/CarbonPHP/carbon/zipball/76b5c07b8a9d2025ed1610e14cef1f3fd6ad2c24", -+ "reference": "76b5c07b8a9d2025ed1610e14cef1f3fd6ad2c24", - "shasum": "" - }, - "require": { -@@ -6772,7 +6773,7 @@ - "type": "tidelift" - } - ], -- "time": "2025-06-21T15:19:35+00:00" -+ "time": "2025-08-02T09:36:06+00:00" - }, - { - "name": "nette/schema", -@@ -6838,29 +6839,29 @@ - }, - { - "name": "nette/utils", -- "version": "v4.0.7", -+ "version": "v4.0.8", - "source": { - "type": "git", - "url": "https://github.com/nette/utils.git", -- "reference": "e67c4061eb40b9c113b218214e42cb5a0dda28f2" -+ "reference": "c930ca4e3cf4f17dcfb03037703679d2396d2ede" - }, - "dist": { - "type": "zip", -- "url": "https://api.github.com/repos/nette/utils/zipball/e67c4061eb40b9c113b218214e42cb5a0dda28f2", -- "reference": "e67c4061eb40b9c113b218214e42cb5a0dda28f2", -+ "url": "https://api.github.com/repos/nette/utils/zipball/c930ca4e3cf4f17dcfb03037703679d2396d2ede", -+ "reference": "c930ca4e3cf4f17dcfb03037703679d2396d2ede", - "shasum": "" - }, - "require": { -- "php": "8.0 - 8.4" -+ "php": "8.0 - 8.5" - }, - "conflict": { - "nette/finder": "<3", - "nette/schema": "<1.2.2" - }, - "require-dev": { -- "jetbrains/phpstorm-attributes": "dev-master", -+ "jetbrains/phpstorm-attributes": "^1.2", - "nette/tester": "^2.5", -- "phpstan/phpstan": "^1.0", -+ "phpstan/phpstan-nette": "^2.0@stable", - "tracy/tracy": "^2.9" - }, - "suggest": { -@@ -6878,6 +6879,9 @@ - } - }, - "autoload": { -+ "psr-4": { -+ "Nette\\": "src" -+ }, - "classmap": [ - "src/" - ] -@@ -6918,22 +6922,22 @@ - ], - "support": { - "issues": "https://github.com/nette/utils/issues", -- "source": "https://github.com/nette/utils/tree/v4.0.7" -+ "source": "https://github.com/nette/utils/tree/v4.0.8" - }, -- "time": "2025-06-03T04:55:08+00:00" -+ "time": "2025-08-06T21:43:34+00:00" - }, - { - "name": "nikic/php-parser", -- "version": "v5.5.0", -+ "version": "v5.6.0", - "source": { - "type": "git", - "url": "https://github.com/nikic/PHP-Parser.git", -- "reference": "ae59794362fe85e051a58ad36b289443f57be7a9" -+ "reference": "221b0d0fdf1369c71047ad1d18bb5880017bbc56" - }, - "dist": { - "type": "zip", -- "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/ae59794362fe85e051a58ad36b289443f57be7a9", -- "reference": "ae59794362fe85e051a58ad36b289443f57be7a9", -+ "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/221b0d0fdf1369c71047ad1d18bb5880017bbc56", -+ "reference": "221b0d0fdf1369c71047ad1d18bb5880017bbc56", - "shasum": "" - }, - "require": { -@@ -6976,22 +6980,22 @@ - ], - "support": { - "issues": "https://github.com/nikic/PHP-Parser/issues", -- "source": "https://github.com/nikic/PHP-Parser/tree/v5.5.0" -+ "source": "https://github.com/nikic/PHP-Parser/tree/v5.6.0" - }, -- "time": "2025-05-31T08:24:38+00:00" -+ "time": "2025-07-27T20:03:57+00:00" - }, - { - "name": "novadaemon/filament-pretty-json", -- "version": "v2.5.0", -+ "version": "v2.6.0", - "source": { - "type": "git", - "url": "https://github.com/novadaemon/filament-pretty-json.git", -- "reference": "e1577286c6b26d85ba0deaf95fcd13ee6d09c831" -+ "reference": "3370781f67e5283c2d8a3b8d2be5e922487bed6c" - }, - "dist": { - "type": "zip", -- "url": "https://api.github.com/repos/novadaemon/filament-pretty-json/zipball/e1577286c6b26d85ba0deaf95fcd13ee6d09c831", -- "reference": "e1577286c6b26d85ba0deaf95fcd13ee6d09c831", -+ "url": "https://api.github.com/repos/novadaemon/filament-pretty-json/zipball/3370781f67e5283c2d8a3b8d2be5e922487bed6c", -+ "reference": "3370781f67e5283c2d8a3b8d2be5e922487bed6c", - "shasum": "" - }, - "require": { -@@ -7050,7 +7054,7 @@ - "type": "github" - } - ], -- "time": "2025-05-12T12:42:29+00:00" -+ "time": "2025-08-06T15:50:30+00:00" - }, - { - "name": "nunomaduro/termwind", -@@ -7603,16 +7607,16 @@ - }, - { - "name": "phpoffice/phpspreadsheet", -- "version": "1.29.11", -+ "version": "1.29.12", - "source": { - "type": "git", - "url": "https://github.com/PHPOffice/PhpSpreadsheet.git", -- "reference": "05b6c4378ddf3e81b460ea645c42b46432c0db25" -+ "reference": "7c06eed662cce7ecab88f6f9f7626b443f5285df" - }, - "dist": { - "type": "zip", -- "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/05b6c4378ddf3e81b460ea645c42b46432c0db25", -- "reference": "05b6c4378ddf3e81b460ea645c42b46432c0db25", -+ "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/7c06eed662cce7ecab88f6f9f7626b443f5285df", -+ "reference": "7c06eed662cce7ecab88f6f9f7626b443f5285df", - "shasum": "" - }, - "require": { -@@ -7703,9 +7707,9 @@ - ], - "support": { - "issues": "https://github.com/PHPOffice/PhpSpreadsheet/issues", -- "source": "https://github.com/PHPOffice/PhpSpreadsheet/tree/1.29.11" -+ "source": "https://github.com/PHPOffice/PhpSpreadsheet/tree/1.29.12" - }, -- "time": "2025-06-23T01:22:06+00:00" -+ "time": "2025-07-23T04:40:30+00:00" - }, - { - "name": "phpoption/phpoption", -@@ -8567,16 +8571,16 @@ - }, - { - "name": "psy/psysh", -- "version": "v0.12.9", -+ "version": "v0.12.10", - "source": { - "type": "git", - "url": "https://github.com/bobthecow/psysh.git", -- "reference": "1b801844becfe648985372cb4b12ad6840245ace" -+ "reference": "6e80abe6f2257121f1eb9a4c55bf29d921025b22" - }, - "dist": { - "type": "zip", -- "url": "https://api.github.com/repos/bobthecow/psysh/zipball/1b801844becfe648985372cb4b12ad6840245ace", -- "reference": "1b801844becfe648985372cb4b12ad6840245ace", -+ "url": "https://api.github.com/repos/bobthecow/psysh/zipball/6e80abe6f2257121f1eb9a4c55bf29d921025b22", -+ "reference": "6e80abe6f2257121f1eb9a4c55bf29d921025b22", - "shasum": "" - }, - "require": { -@@ -8626,12 +8630,11 @@ - "authors": [ - { - "name": "Justin Hileman", -- "email": "justin@justinhileman.info", -- "homepage": "http://justinhileman.com" -+ "email": "justin@justinhileman.info" - } - ], - "description": "An interactive shell for modern PHP.", -- "homepage": "http://psysh.org", -+ "homepage": "https://psysh.org", - "keywords": [ - "REPL", - "console", -@@ -8640,26 +8643,26 @@ - ], - "support": { - "issues": "https://github.com/bobthecow/psysh/issues", -- "source": "https://github.com/bobthecow/psysh/tree/v0.12.9" -+ "source": "https://github.com/bobthecow/psysh/tree/v0.12.10" - }, -- "time": "2025-06-23T02:35:06+00:00" -+ "time": "2025-08-04T12:39:37+00:00" - }, - { - "name": "pxlrbt/filament-environment-indicator", -- "version": "v2.1.0", -+ "version": "v2.2.0", - "source": { - "type": "git", - "url": "https://github.com/pxlrbt/filament-environment-indicator.git", -- "reference": "e55bca20af0c9cff8a90d0a8779b09df5c4bb9d4" -+ "reference": "4f2cb470df70b6c261020823309e65047713cbdd" - }, - "dist": { - "type": "zip", -- "url": "https://api.github.com/repos/pxlrbt/filament-environment-indicator/zipball/e55bca20af0c9cff8a90d0a8779b09df5c4bb9d4", -- "reference": "e55bca20af0c9cff8a90d0a8779b09df5c4bb9d4", -+ "url": "https://api.github.com/repos/pxlrbt/filament-environment-indicator/zipball/4f2cb470df70b6c261020823309e65047713cbdd", -+ "reference": "4f2cb470df70b6c261020823309e65047713cbdd", - "shasum": "" - }, - "require": { -- "filament/filament": "^3.0-stable", -+ "filament/filament": "^3.0", - "php": "^8.0" - }, - "require-dev": { -@@ -8696,7 +8699,7 @@ - ], - "support": { - "issues": "https://github.com/pxlrbt/filament-environment-indicator/issues", -- "source": "https://github.com/pxlrbt/filament-environment-indicator/tree/v2.1.0" -+ "source": "https://github.com/pxlrbt/filament-environment-indicator/tree/v2.2.0" - }, - "funding": [ - { -@@ -8704,7 +8707,7 @@ - "type": "github" - } - ], -- "time": "2024-11-18T13:24:51+00:00" -+ "time": "2025-07-25T14:36:56+00:00" - }, - { - "name": "ralouphie/getallheaders", -@@ -9348,16 +9351,16 @@ - }, - { - "name": "spatie/laravel-package-tools", -- "version": "1.92.6", -+ "version": "1.92.7", - "source": { - "type": "git", - "url": "https://github.com/spatie/laravel-package-tools.git", -- "reference": "afa90e37741a953d33728e7106a1f24a13fdd808" -+ "reference": "f09a799850b1ed765103a4f0b4355006360c49a5" - }, - "dist": { - "type": "zip", -- "url": "https://api.github.com/repos/spatie/laravel-package-tools/zipball/afa90e37741a953d33728e7106a1f24a13fdd808", -- "reference": "afa90e37741a953d33728e7106a1f24a13fdd808", -+ "url": "https://api.github.com/repos/spatie/laravel-package-tools/zipball/f09a799850b1ed765103a4f0b4355006360c49a5", -+ "reference": "f09a799850b1ed765103a4f0b4355006360c49a5", - "shasum": "" - }, - "require": { -@@ -9397,7 +9400,7 @@ - ], - "support": { - "issues": "https://github.com/spatie/laravel-package-tools/issues", -- "source": "https://github.com/spatie/laravel-package-tools/tree/1.92.6" -+ "source": "https://github.com/spatie/laravel-package-tools/tree/1.92.7" - }, - "funding": [ - { -@@ -9405,7 +9408,7 @@ - "type": "github" - } - ], -- "time": "2025-07-14T08:02:47+00:00" -+ "time": "2025-07-17T15:46:43+00:00" - }, - { - "name": "spatie/regex", -@@ -9754,16 +9757,16 @@ - }, - { - "name": "symfony/console", -- "version": "v7.3.1", -+ "version": "v7.3.2", - "source": { - "type": "git", - "url": "https://github.com/symfony/console.git", -- "reference": "9e27aecde8f506ba0fd1d9989620c04a87697101" -+ "reference": "5f360ebc65c55265a74d23d7fe27f957870158a1" - }, - "dist": { - "type": "zip", -- "url": "https://api.github.com/repos/symfony/console/zipball/9e27aecde8f506ba0fd1d9989620c04a87697101", -- "reference": "9e27aecde8f506ba0fd1d9989620c04a87697101", -+ "url": "https://api.github.com/repos/symfony/console/zipball/5f360ebc65c55265a74d23d7fe27f957870158a1", -+ "reference": "5f360ebc65c55265a74d23d7fe27f957870158a1", - "shasum": "" - }, - "require": { -@@ -9828,7 +9831,7 @@ - "terminal" - ], - "support": { -- "source": "https://github.com/symfony/console/tree/v7.3.1" -+ "source": "https://github.com/symfony/console/tree/v7.3.2" - }, - "funding": [ - { -@@ -9839,12 +9842,16 @@ - "url": "https://github.com/fabpot", - "type": "github" - }, -+ { -+ "url": "https://github.com/nicolas-grekas", -+ "type": "github" -+ }, - { - "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", - "type": "tidelift" - } - ], -- "time": "2025-06-27T19:55:54+00:00" -+ "time": "2025-07-30T17:13:41+00:00" - }, - { - "name": "symfony/css-selector", -@@ -9980,16 +9987,16 @@ - }, - { - "name": "symfony/error-handler", -- "version": "v7.3.1", -+ "version": "v7.3.2", - "source": { - "type": "git", - "url": "https://github.com/symfony/error-handler.git", -- "reference": "35b55b166f6752d6aaf21aa042fc5ed280fce235" -+ "reference": "0b31a944fcd8759ae294da4d2808cbc53aebd0c3" - }, - "dist": { - "type": "zip", -- "url": "https://api.github.com/repos/symfony/error-handler/zipball/35b55b166f6752d6aaf21aa042fc5ed280fce235", -- "reference": "35b55b166f6752d6aaf21aa042fc5ed280fce235", -+ "url": "https://api.github.com/repos/symfony/error-handler/zipball/0b31a944fcd8759ae294da4d2808cbc53aebd0c3", -+ "reference": "0b31a944fcd8759ae294da4d2808cbc53aebd0c3", - "shasum": "" - }, - "require": { -@@ -10037,7 +10044,7 @@ - "description": "Provides tools to manage errors and ease debugging PHP code", - "homepage": "https://symfony.com", - "support": { -- "source": "https://github.com/symfony/error-handler/tree/v7.3.1" -+ "source": "https://github.com/symfony/error-handler/tree/v7.3.2" - }, - "funding": [ - { -@@ -10048,12 +10055,16 @@ - "url": "https://github.com/fabpot", - "type": "github" - }, -+ { -+ "url": "https://github.com/nicolas-grekas", -+ "type": "github" -+ }, - { - "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", - "type": "tidelift" - } - ], -- "time": "2025-06-13T07:48:40+00:00" -+ "time": "2025-07-07T08:17:57+00:00" - }, - { - "name": "symfony/event-dispatcher", -@@ -10213,16 +10224,16 @@ - }, - { - "name": "symfony/filesystem", -- "version": "v7.3.0", -+ "version": "v7.3.2", - "source": { - "type": "git", - "url": "https://github.com/symfony/filesystem.git", -- "reference": "b8dce482de9d7c9fe2891155035a7248ab5c7fdb" -+ "reference": "edcbb768a186b5c3f25d0643159a787d3e63b7fd" - }, - "dist": { - "type": "zip", -- "url": "https://api.github.com/repos/symfony/filesystem/zipball/b8dce482de9d7c9fe2891155035a7248ab5c7fdb", -- "reference": "b8dce482de9d7c9fe2891155035a7248ab5c7fdb", -+ "url": "https://api.github.com/repos/symfony/filesystem/zipball/edcbb768a186b5c3f25d0643159a787d3e63b7fd", -+ "reference": "edcbb768a186b5c3f25d0643159a787d3e63b7fd", - "shasum": "" - }, - "require": { -@@ -10259,7 +10270,7 @@ - "description": "Provides basic utilities for the filesystem", - "homepage": "https://symfony.com", - "support": { -- "source": "https://github.com/symfony/filesystem/tree/v7.3.0" -+ "source": "https://github.com/symfony/filesystem/tree/v7.3.2" - }, - "funding": [ - { -@@ -10270,25 +10281,29 @@ - "url": "https://github.com/fabpot", - "type": "github" - }, -+ { -+ "url": "https://github.com/nicolas-grekas", -+ "type": "github" -+ }, - { - "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", - "type": "tidelift" - } - ], -- "time": "2024-10-25T15:15:23+00:00" -+ "time": "2025-07-07T08:17:47+00:00" - }, - { - "name": "symfony/finder", -- "version": "v7.3.0", -+ "version": "v7.3.2", - "source": { - "type": "git", - "url": "https://github.com/symfony/finder.git", -- "reference": "ec2344cf77a48253bbca6939aa3d2477773ea63d" -+ "reference": "2a6614966ba1074fa93dae0bc804227422df4dfe" - }, - "dist": { - "type": "zip", -- "url": "https://api.github.com/repos/symfony/finder/zipball/ec2344cf77a48253bbca6939aa3d2477773ea63d", -- "reference": "ec2344cf77a48253bbca6939aa3d2477773ea63d", -+ "url": "https://api.github.com/repos/symfony/finder/zipball/2a6614966ba1074fa93dae0bc804227422df4dfe", -+ "reference": "2a6614966ba1074fa93dae0bc804227422df4dfe", - "shasum": "" - }, - "require": { -@@ -10323,7 +10338,7 @@ - "description": "Finds files and directories via an intuitive fluent interface", - "homepage": "https://symfony.com", - "support": { -- "source": "https://github.com/symfony/finder/tree/v7.3.0" -+ "source": "https://github.com/symfony/finder/tree/v7.3.2" - }, - "funding": [ - { -@@ -10334,25 +10349,29 @@ - "url": "https://github.com/fabpot", - "type": "github" - }, -+ { -+ "url": "https://github.com/nicolas-grekas", -+ "type": "github" -+ }, - { - "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", - "type": "tidelift" - } - ], -- "time": "2024-12-30T19:00:26+00:00" -+ "time": "2025-07-15T13:41:35+00:00" - }, - { - "name": "symfony/html-sanitizer", -- "version": "v7.3.0", -+ "version": "v7.3.2", - "source": { - "type": "git", - "url": "https://github.com/symfony/html-sanitizer.git", -- "reference": "cf21254e982b12276329940ca4af5e623ee06c58" -+ "reference": "3388e208450fcac57d24aef4d5ae41037b663630" - }, - "dist": { - "type": "zip", -- "url": "https://api.github.com/repos/symfony/html-sanitizer/zipball/cf21254e982b12276329940ca4af5e623ee06c58", -- "reference": "cf21254e982b12276329940ca4af5e623ee06c58", -+ "url": "https://api.github.com/repos/symfony/html-sanitizer/zipball/3388e208450fcac57d24aef4d5ae41037b663630", -+ "reference": "3388e208450fcac57d24aef4d5ae41037b663630", - "shasum": "" - }, - "require": { -@@ -10392,7 +10411,7 @@ - "sanitizer" - ], - "support": { -- "source": "https://github.com/symfony/html-sanitizer/tree/v7.3.0" -+ "source": "https://github.com/symfony/html-sanitizer/tree/v7.3.2" - }, - "funding": [ - { -@@ -10403,25 +10422,29 @@ - "url": "https://github.com/fabpot", - "type": "github" - }, -+ { -+ "url": "https://github.com/nicolas-grekas", -+ "type": "github" -+ }, - { - "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", - "type": "tidelift" - } - ], -- "time": "2025-03-31T08:49:55+00:00" -+ "time": "2025-07-10T08:29:33+00:00" - }, - { - "name": "symfony/http-foundation", -- "version": "v7.3.1", -+ "version": "v7.3.2", - "source": { - "type": "git", - "url": "https://github.com/symfony/http-foundation.git", -- "reference": "23dd60256610c86a3414575b70c596e5deff6ed9" -+ "reference": "6877c122b3a6cc3695849622720054f6e6fa5fa6" - }, - "dist": { - "type": "zip", -- "url": "https://api.github.com/repos/symfony/http-foundation/zipball/23dd60256610c86a3414575b70c596e5deff6ed9", -- "reference": "23dd60256610c86a3414575b70c596e5deff6ed9", -+ "url": "https://api.github.com/repos/symfony/http-foundation/zipball/6877c122b3a6cc3695849622720054f6e6fa5fa6", -+ "reference": "6877c122b3a6cc3695849622720054f6e6fa5fa6", - "shasum": "" - }, - "require": { -@@ -10471,7 +10494,7 @@ - "description": "Defines an object-oriented layer for the HTTP specification", - "homepage": "https://symfony.com", - "support": { -- "source": "https://github.com/symfony/http-foundation/tree/v7.3.1" -+ "source": "https://github.com/symfony/http-foundation/tree/v7.3.2" - }, - "funding": [ - { -@@ -10482,25 +10505,29 @@ - "url": "https://github.com/fabpot", - "type": "github" - }, -+ { -+ "url": "https://github.com/nicolas-grekas", -+ "type": "github" -+ }, - { - "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", - "type": "tidelift" - } - ], -- "time": "2025-06-23T15:07:14+00:00" -+ "time": "2025-07-10T08:47:49+00:00" - }, - { - "name": "symfony/http-kernel", -- "version": "v7.3.1", -+ "version": "v7.3.2", - "source": { - "type": "git", - "url": "https://github.com/symfony/http-kernel.git", -- "reference": "1644879a66e4aa29c36fe33dfa6c54b450ce1831" -+ "reference": "6ecc895559ec0097e221ed2fd5eb44d5fede083c" - }, - "dist": { - "type": "zip", -- "url": "https://api.github.com/repos/symfony/http-kernel/zipball/1644879a66e4aa29c36fe33dfa6c54b450ce1831", -- "reference": "1644879a66e4aa29c36fe33dfa6c54b450ce1831", -+ "url": "https://api.github.com/repos/symfony/http-kernel/zipball/6ecc895559ec0097e221ed2fd5eb44d5fede083c", -+ "reference": "6ecc895559ec0097e221ed2fd5eb44d5fede083c", - "shasum": "" - }, - "require": { -@@ -10585,7 +10612,7 @@ - "description": "Provides a structured process for converting a Request into a Response", - "homepage": "https://symfony.com", - "support": { -- "source": "https://github.com/symfony/http-kernel/tree/v7.3.1" -+ "source": "https://github.com/symfony/http-kernel/tree/v7.3.2" - }, - "funding": [ - { -@@ -10596,25 +10623,29 @@ - "url": "https://github.com/fabpot", - "type": "github" - }, -+ { -+ "url": "https://github.com/nicolas-grekas", -+ "type": "github" -+ }, - { - "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", - "type": "tidelift" - } - ], -- "time": "2025-06-28T08:24:55+00:00" -+ "time": "2025-07-31T10:45:04+00:00" - }, - { - "name": "symfony/mailer", -- "version": "v7.3.1", -+ "version": "v7.3.2", - "source": { - "type": "git", - "url": "https://github.com/symfony/mailer.git", -- "reference": "b5db5105b290bdbea5ab27b89c69effcf1cb3368" -+ "reference": "d43e84d9522345f96ad6283d5dfccc8c1cfc299b" - }, - "dist": { - "type": "zip", -- "url": "https://api.github.com/repos/symfony/mailer/zipball/b5db5105b290bdbea5ab27b89c69effcf1cb3368", -- "reference": "b5db5105b290bdbea5ab27b89c69effcf1cb3368", -+ "url": "https://api.github.com/repos/symfony/mailer/zipball/d43e84d9522345f96ad6283d5dfccc8c1cfc299b", -+ "reference": "d43e84d9522345f96ad6283d5dfccc8c1cfc299b", - "shasum": "" - }, - "require": { -@@ -10665,7 +10696,7 @@ - "description": "Helps sending emails", - "homepage": "https://symfony.com", - "support": { -- "source": "https://github.com/symfony/mailer/tree/v7.3.1" -+ "source": "https://github.com/symfony/mailer/tree/v7.3.2" - }, - "funding": [ - { -@@ -10676,25 +10707,29 @@ - "url": "https://github.com/fabpot", - "type": "github" - }, -+ { -+ "url": "https://github.com/nicolas-grekas", -+ "type": "github" -+ }, - { - "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", - "type": "tidelift" - } - ], -- "time": "2025-06-27T19:55:54+00:00" -+ "time": "2025-07-15T11:36:08+00:00" - }, - { - "name": "symfony/mime", -- "version": "v7.3.0", -+ "version": "v7.3.2", - "source": { - "type": "git", - "url": "https://github.com/symfony/mime.git", -- "reference": "0e7b19b2f399c31df0cdbe5d8cbf53f02f6cfcd9" -+ "reference": "e0a0f859148daf1edf6c60b398eb40bfc96697d1" - }, - "dist": { - "type": "zip", -- "url": "https://api.github.com/repos/symfony/mime/zipball/0e7b19b2f399c31df0cdbe5d8cbf53f02f6cfcd9", -- "reference": "0e7b19b2f399c31df0cdbe5d8cbf53f02f6cfcd9", -+ "url": "https://api.github.com/repos/symfony/mime/zipball/e0a0f859148daf1edf6c60b398eb40bfc96697d1", -+ "reference": "e0a0f859148daf1edf6c60b398eb40bfc96697d1", - "shasum": "" - }, - "require": { -@@ -10749,7 +10784,7 @@ - "mime-type" - ], - "support": { -- "source": "https://github.com/symfony/mime/tree/v7.3.0" -+ "source": "https://github.com/symfony/mime/tree/v7.3.2" - }, - "funding": [ - { -@@ -10760,12 +10795,16 @@ - "url": "https://github.com/fabpot", - "type": "github" - }, -+ { -+ "url": "https://github.com/nicolas-grekas", -+ "type": "github" -+ }, - { - "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", - "type": "tidelift" - } - ], -- "time": "2025-02-19T08:51:26+00:00" -+ "time": "2025-07-15T13:41:35+00:00" - }, - { - "name": "symfony/polyfill-ctype", -@@ -11702,16 +11741,16 @@ - }, - { - "name": "symfony/routing", -- "version": "v7.3.0", -+ "version": "v7.3.2", - "source": { - "type": "git", - "url": "https://github.com/symfony/routing.git", -- "reference": "8e213820c5fea844ecea29203d2a308019007c15" -+ "reference": "7614b8ca5fa89b9cd233e21b627bfc5774f586e4" - }, - "dist": { - "type": "zip", -- "url": "https://api.github.com/repos/symfony/routing/zipball/8e213820c5fea844ecea29203d2a308019007c15", -- "reference": "8e213820c5fea844ecea29203d2a308019007c15", -+ "url": "https://api.github.com/repos/symfony/routing/zipball/7614b8ca5fa89b9cd233e21b627bfc5774f586e4", -+ "reference": "7614b8ca5fa89b9cd233e21b627bfc5774f586e4", - "shasum": "" - }, - "require": { -@@ -11763,7 +11802,7 @@ - "url" - ], - "support": { -- "source": "https://github.com/symfony/routing/tree/v7.3.0" -+ "source": "https://github.com/symfony/routing/tree/v7.3.2" - }, - "funding": [ - { -@@ -11774,12 +11813,16 @@ - "url": "https://github.com/fabpot", - "type": "github" - }, -+ { -+ "url": "https://github.com/nicolas-grekas", -+ "type": "github" -+ }, - { - "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", - "type": "tidelift" - } - ], -- "time": "2025-05-24T20:43:28+00:00" -+ "time": "2025-07-15T11:36:08+00:00" - }, - { - "name": "symfony/service-contracts", -@@ -11866,16 +11909,16 @@ - }, - { - "name": "symfony/string", -- "version": "v7.3.0", -+ "version": "v7.3.2", - "source": { - "type": "git", - "url": "https://github.com/symfony/string.git", -- "reference": "f3570b8c61ca887a9e2938e85cb6458515d2b125" -+ "reference": "42f505aff654e62ac7ac2ce21033818297ca89ca" - }, - "dist": { - "type": "zip", -- "url": "https://api.github.com/repos/symfony/string/zipball/f3570b8c61ca887a9e2938e85cb6458515d2b125", -- "reference": "f3570b8c61ca887a9e2938e85cb6458515d2b125", -+ "url": "https://api.github.com/repos/symfony/string/zipball/42f505aff654e62ac7ac2ce21033818297ca89ca", -+ "reference": "42f505aff654e62ac7ac2ce21033818297ca89ca", - "shasum": "" - }, - "require": { -@@ -11933,7 +11976,7 @@ - "utf8" - ], - "support": { -- "source": "https://github.com/symfony/string/tree/v7.3.0" -+ "source": "https://github.com/symfony/string/tree/v7.3.2" - }, - "funding": [ - { -@@ -11944,25 +11987,29 @@ - "url": "https://github.com/fabpot", - "type": "github" - }, -+ { -+ "url": "https://github.com/nicolas-grekas", -+ "type": "github" -+ }, - { - "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", - "type": "tidelift" - } - ], -- "time": "2025-04-20T20:19:01+00:00" -+ "time": "2025-07-10T08:47:49+00:00" - }, - { - "name": "symfony/translation", -- "version": "v7.3.1", -+ "version": "v7.3.2", - "source": { - "type": "git", - "url": "https://github.com/symfony/translation.git", -- "reference": "241d5ac4910d256660238a7ecf250deba4c73063" -+ "reference": "81b48f4daa96272efcce9c7a6c4b58e629df3c90" - }, - "dist": { - "type": "zip", -- "url": "https://api.github.com/repos/symfony/translation/zipball/241d5ac4910d256660238a7ecf250deba4c73063", -- "reference": "241d5ac4910d256660238a7ecf250deba4c73063", -+ "url": "https://api.github.com/repos/symfony/translation/zipball/81b48f4daa96272efcce9c7a6c4b58e629df3c90", -+ "reference": "81b48f4daa96272efcce9c7a6c4b58e629df3c90", - "shasum": "" - }, - "require": { -@@ -12029,7 +12076,7 @@ - "description": "Provides tools to internationalize your application", - "homepage": "https://symfony.com", - "support": { -- "source": "https://github.com/symfony/translation/tree/v7.3.1" -+ "source": "https://github.com/symfony/translation/tree/v7.3.2" - }, - "funding": [ - { -@@ -12040,12 +12087,16 @@ - "url": "https://github.com/fabpot", - "type": "github" - }, -+ { -+ "url": "https://github.com/nicolas-grekas", -+ "type": "github" -+ }, - { - "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", - "type": "tidelift" - } - ], -- "time": "2025-06-27T19:55:54+00:00" -+ "time": "2025-07-30T17:31:46+00:00" - }, - { - "name": "symfony/translation-contracts", -@@ -12201,16 +12252,16 @@ - }, - { - "name": "symfony/var-dumper", -- "version": "v7.3.1", -+ "version": "v7.3.2", - "source": { - "type": "git", - "url": "https://github.com/symfony/var-dumper.git", -- "reference": "6e209fbe5f5a7b6043baba46fe5735a4b85d0d42" -+ "reference": "53205bea27450dc5c65377518b3275e126d45e75" - }, - "dist": { - "type": "zip", -- "url": "https://api.github.com/repos/symfony/var-dumper/zipball/6e209fbe5f5a7b6043baba46fe5735a4b85d0d42", -- "reference": "6e209fbe5f5a7b6043baba46fe5735a4b85d0d42", -+ "url": "https://api.github.com/repos/symfony/var-dumper/zipball/53205bea27450dc5c65377518b3275e126d45e75", -+ "reference": "53205bea27450dc5c65377518b3275e126d45e75", - "shasum": "" - }, - "require": { -@@ -12222,7 +12273,6 @@ - "symfony/console": "<6.4" - }, - "require-dev": { -- "ext-iconv": "*", - "symfony/console": "^6.4|^7.0", - "symfony/http-kernel": "^6.4|^7.0", - "symfony/process": "^6.4|^7.0", -@@ -12265,7 +12315,7 @@ - "dump" - ], - "support": { -- "source": "https://github.com/symfony/var-dumper/tree/v7.3.1" -+ "source": "https://github.com/symfony/var-dumper/tree/v7.3.2" - }, - "funding": [ - { -@@ -12276,12 +12326,16 @@ - "url": "https://github.com/fabpot", - "type": "github" - }, -+ { -+ "url": "https://github.com/nicolas-grekas", -+ "type": "github" -+ }, - { - "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", - "type": "tidelift" - } - ], -- "time": "2025-06-27T19:55:54+00:00" -+ "time": "2025-07-29T20:02:46+00:00" - }, - { - "name": "tightenco/ziggy", -@@ -12756,20 +12810,20 @@ - "packages-dev": [ - { - "name": "barryvdh/laravel-ide-helper", -- "version": "v3.5.5", -+ "version": "v3.6.0", - "source": { - "type": "git", - "url": "https://github.com/barryvdh/laravel-ide-helper.git", -- "reference": "8d441ec99f8612b942b55f5183151d91591b618a" -+ "reference": "8d00250cba25728373e92c1d8dcebcbf64623d29" - }, - "dist": { - "type": "zip", -- "url": "https://api.github.com/repos/barryvdh/laravel-ide-helper/zipball/8d441ec99f8612b942b55f5183151d91591b618a", -- "reference": "8d441ec99f8612b942b55f5183151d91591b618a", -+ "url": "https://api.github.com/repos/barryvdh/laravel-ide-helper/zipball/8d00250cba25728373e92c1d8dcebcbf64623d29", -+ "reference": "8d00250cba25728373e92c1d8dcebcbf64623d29", - "shasum": "" - }, - "require": { -- "barryvdh/reflection-docblock": "^2.3", -+ "barryvdh/reflection-docblock": "^2.4", - "composer/class-map-generator": "^1.0", - "ext-json": "*", - "illuminate/console": "^11.15 || ^12", -@@ -12834,7 +12888,7 @@ - ], - "support": { - "issues": "https://github.com/barryvdh/laravel-ide-helper/issues", -- "source": "https://github.com/barryvdh/laravel-ide-helper/tree/v3.5.5" -+ "source": "https://github.com/barryvdh/laravel-ide-helper/tree/v3.6.0" - }, - "funding": [ - { -@@ -12846,20 +12900,20 @@ - "type": "github" - } - ], -- "time": "2025-02-11T13:59:46+00:00" -+ "time": "2025-07-17T20:11:57+00:00" - }, - { - "name": "barryvdh/reflection-docblock", -- "version": "v2.3.1", -+ "version": "v2.4.0", - "source": { - "type": "git", - "url": "https://github.com/barryvdh/ReflectionDocBlock.git", -- "reference": "b6ff9f93603561f50e53b64310495d20b8dff5d8" -+ "reference": "d103774cbe7e94ddee7e4870f97f727b43fe7201" - }, - "dist": { - "type": "zip", -- "url": "https://api.github.com/repos/barryvdh/ReflectionDocBlock/zipball/b6ff9f93603561f50e53b64310495d20b8dff5d8", -- "reference": "b6ff9f93603561f50e53b64310495d20b8dff5d8", -+ "url": "https://api.github.com/repos/barryvdh/ReflectionDocBlock/zipball/d103774cbe7e94ddee7e4870f97f727b43fe7201", -+ "reference": "d103774cbe7e94ddee7e4870f97f727b43fe7201", - "shasum": "" - }, - "require": { -@@ -12896,22 +12950,22 @@ - } - ], - "support": { -- "source": "https://github.com/barryvdh/ReflectionDocBlock/tree/v2.3.1" -+ "source": "https://github.com/barryvdh/ReflectionDocBlock/tree/v2.4.0" - }, -- "time": "2025-01-18T19:26:32+00:00" -+ "time": "2025-07-17T06:07:30+00:00" - }, - { - "name": "brianium/paratest", -- "version": "v7.10.3", -+ "version": "v7.11.0", - "source": { - "type": "git", - "url": "https://github.com/paratestphp/paratest.git", -- "reference": "cfee22cc949d170e61e7111c89ea9fc86aa02ffb" -+ "reference": "c48f73d568f09df27177e178b61f8e910683dd5d" - }, - "dist": { - "type": "zip", -- "url": "https://api.github.com/repos/paratestphp/paratest/zipball/cfee22cc949d170e61e7111c89ea9fc86aa02ffb", -- "reference": "cfee22cc949d170e61e7111c89ea9fc86aa02ffb", -+ "url": "https://api.github.com/repos/paratestphp/paratest/zipball/c48f73d568f09df27177e178b61f8e910683dd5d", -+ "reference": "c48f73d568f09df27177e178b61f8e910683dd5d", - "shasum": "" - }, - "require": { -@@ -12925,9 +12979,9 @@ - "phpunit/php-code-coverage": "^12.3.1", - "phpunit/php-file-iterator": "^6", - "phpunit/php-timer": "^8", -- "phpunit/phpunit": "^12.2.3", -+ "phpunit/phpunit": "^12.2.7", - "sebastian/environment": "^8.0.2", -- "symfony/console": "^6.4.20 || ^7.3.0", -+ "symfony/console": "^6.4.20 || ^7.3.1", - "symfony/process": "^6.4.20 || ^7.3.0" - }, - "require-dev": { -@@ -12980,7 +13034,7 @@ - ], - "support": { - "issues": "https://github.com/paratestphp/paratest/issues", -- "source": "https://github.com/paratestphp/paratest/tree/v7.10.3" -+ "source": "https://github.com/paratestphp/paratest/tree/v7.11.0" - }, - "funding": [ - { -@@ -12992,7 +13046,7 @@ - "type": "paypal" - } - ], -- "time": "2025-06-22T16:27:15+00:00" -+ "time": "2025-07-16T09:15:54+00:00" - }, - { - "name": "fakerphp/faker", -@@ -13191,16 +13245,16 @@ - }, - { - "name": "fumeapp/modeltyper", -- "version": "v3.3.0", -+ "version": "v3.4.0", - "source": { - "type": "git", - "url": "https://github.com/fumeapp/modeltyper.git", -- "reference": "03556593e6332b25aaed188b2891ffe9f900fb84" -+ "reference": "cf347b8f287a3c0242e45bf35fb6435e68867e15" - }, - "dist": { - "type": "zip", -- "url": "https://api.github.com/repos/fumeapp/modeltyper/zipball/03556593e6332b25aaed188b2891ffe9f900fb84", -- "reference": "03556593e6332b25aaed188b2891ffe9f900fb84", -+ "url": "https://api.github.com/repos/fumeapp/modeltyper/zipball/cf347b8f287a3c0242e45bf35fb6435e68867e15", -+ "reference": "cf347b8f287a3c0242e45bf35fb6435e68867e15", - "shasum": "" - }, - "require": { -@@ -13248,9 +13302,9 @@ - "description": "Generate TypeScript interfaces from Laravel Models", - "support": { - "issues": "https://github.com/fumeapp/modeltyper/issues", -- "source": "https://github.com/fumeapp/modeltyper/tree/v3.3.0" -+ "source": "https://github.com/fumeapp/modeltyper/tree/v3.4.0" - }, -- "time": "2025-06-18T14:16:32+00:00" -+ "time": "2025-07-29T21:01:15+00:00" - }, - { - "name": "hamcrest/hamcrest-php", -@@ -13406,16 +13460,16 @@ - }, - { - "name": "larastan/larastan", -- "version": "v3.5.0", -+ "version": "v3.6.0", - "source": { - "type": "git", - "url": "https://github.com/larastan/larastan.git", -- "reference": "e8ccd73008487ba91da9877b373f8c447743f1ce" -+ "reference": "6431d010dd383a9279eb8874a76ddb571738564a" - }, - "dist": { - "type": "zip", -- "url": "https://api.github.com/repos/larastan/larastan/zipball/e8ccd73008487ba91da9877b373f8c447743f1ce", -- "reference": "e8ccd73008487ba91da9877b373f8c447743f1ce", -+ "url": "https://api.github.com/repos/larastan/larastan/zipball/6431d010dd383a9279eb8874a76ddb571738564a", -+ "reference": "6431d010dd383a9279eb8874a76ddb571738564a", - "shasum": "" - }, - "require": { -@@ -13483,7 +13537,7 @@ - ], - "support": { - "issues": "https://github.com/larastan/larastan/issues", -- "source": "https://github.com/larastan/larastan/tree/v3.5.0" -+ "source": "https://github.com/larastan/larastan/tree/v3.6.0" - }, - "funding": [ - { -@@ -13491,7 +13545,7 @@ - "type": "github" - } - ], -- "time": "2025-06-19T22:41:50+00:00" -+ "time": "2025-07-11T06:52:52+00:00" - }, - { - "name": "laravel/pint", -@@ -13564,16 +13618,16 @@ - }, - { - "name": "laravel/sail", -- "version": "v1.43.1", -+ "version": "v1.44.0", - "source": { - "type": "git", - "url": "https://github.com/laravel/sail.git", -- "reference": "3e7d899232a8c5e3ea4fc6dee7525ad583887e72" -+ "reference": "a09097bd2a8a38e23ac472fa6a6cf5b0d1c1d3fe" - }, - "dist": { - "type": "zip", -- "url": "https://api.github.com/repos/laravel/sail/zipball/3e7d899232a8c5e3ea4fc6dee7525ad583887e72", -- "reference": "3e7d899232a8c5e3ea4fc6dee7525ad583887e72", -+ "url": "https://api.github.com/repos/laravel/sail/zipball/a09097bd2a8a38e23ac472fa6a6cf5b0d1c1d3fe", -+ "reference": "a09097bd2a8a38e23ac472fa6a6cf5b0d1c1d3fe", - "shasum": "" - }, - "require": { -@@ -13623,20 +13677,20 @@ - "issues": "https://github.com/laravel/sail/issues", - "source": "https://github.com/laravel/sail" - }, -- "time": "2025-05-19T13:19:21+00:00" -+ "time": "2025-07-04T16:17:06+00:00" - }, - { - "name": "laravel/telescope", -- "version": "v5.10.0", -+ "version": "v5.11.0", - "source": { - "type": "git", - "url": "https://github.com/laravel/telescope.git", -- "reference": "fc0a8662682c0375b534033873debb780c003486" -+ "reference": "a23245e8d2e2d38d82371a93fce4cccd0147204c" - }, - "dist": { - "type": "zip", -- "url": "https://api.github.com/repos/laravel/telescope/zipball/fc0a8662682c0375b534033873debb780c003486", -- "reference": "fc0a8662682c0375b534033873debb780c003486", -+ "url": "https://api.github.com/repos/laravel/telescope/zipball/a23245e8d2e2d38d82371a93fce4cccd0147204c", -+ "reference": "a23245e8d2e2d38d82371a93fce4cccd0147204c", - "shasum": "" - }, - "require": { -@@ -13690,9 +13744,9 @@ - ], - "support": { - "issues": "https://github.com/laravel/telescope/issues", -- "source": "https://github.com/laravel/telescope/tree/v5.10.0" -+ "source": "https://github.com/laravel/telescope/tree/v5.11.0" - }, -- "time": "2025-07-07T14:47:19+00:00" -+ "time": "2025-08-03T15:13:28+00:00" - }, - { - "name": "mockery/mockery", -@@ -13996,16 +14050,16 @@ - }, - { - "name": "phpstan/phpstan", -- "version": "2.1.17", -+ "version": "2.1.22", - "source": { - "type": "git", - "url": "https://github.com/phpstan/phpstan.git", -- "reference": "89b5ef665716fa2a52ecd2633f21007a6a349053" -+ "reference": "41600c8379eb5aee63e9413fe9e97273e25d57e4" - }, - "dist": { - "type": "zip", -- "url": "https://api.github.com/repos/phpstan/phpstan/zipball/89b5ef665716fa2a52ecd2633f21007a6a349053", -- "reference": "89b5ef665716fa2a52ecd2633f21007a6a349053", -+ "url": "https://api.github.com/repos/phpstan/phpstan/zipball/41600c8379eb5aee63e9413fe9e97273e25d57e4", -+ "reference": "41600c8379eb5aee63e9413fe9e97273e25d57e4", - "shasum": "" - }, - "require": { -@@ -14050,20 +14104,20 @@ - "type": "github" - } - ], -- "time": "2025-05-21T20:55:28+00:00" -+ "time": "2025-08-04T19:17:37+00:00" - }, - { - "name": "phpunit/php-code-coverage", -- "version": "12.3.1", -+ "version": "12.3.2", - "source": { - "type": "git", - "url": "https://github.com/sebastianbergmann/php-code-coverage.git", -- "reference": "ddec29dfc128eba9c204389960f2063f3b7fa170" -+ "reference": "086553c5b2e0e1e20293d782d788ab768202b621" - }, - "dist": { - "type": "zip", -- "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/ddec29dfc128eba9c204389960f2063f3b7fa170", -- "reference": "ddec29dfc128eba9c204389960f2063f3b7fa170", -+ "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/086553c5b2e0e1e20293d782d788ab768202b621", -+ "reference": "086553c5b2e0e1e20293d782d788ab768202b621", - "shasum": "" - }, - "require": { -@@ -14119,7 +14173,7 @@ - "support": { - "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues", - "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy", -- "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/12.3.1" -+ "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/12.3.2" - }, - "funding": [ - { -@@ -14139,7 +14193,7 @@ - "type": "tidelift" - } - ], -- "time": "2025-06-18T08:58:13+00:00" -+ "time": "2025-07-29T06:19:24+00:00" - }, - { - "name": "phpunit/php-file-iterator", -@@ -14388,16 +14442,16 @@ - }, - { - "name": "phpunit/phpunit", -- "version": "12.2.7", -+ "version": "12.3.0", - "source": { - "type": "git", - "url": "https://github.com/sebastianbergmann/phpunit.git", -- "reference": "8b1348b254e5959acaf1539c6bd790515fb49414" -+ "reference": "264da860d6fe0d00582355a6ecbbf7ae57b44895" - }, - "dist": { - "type": "zip", -- "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/8b1348b254e5959acaf1539c6bd790515fb49414", -- "reference": "8b1348b254e5959acaf1539c6bd790515fb49414", -+ "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/264da860d6fe0d00582355a6ecbbf7ae57b44895", -+ "reference": "264da860d6fe0d00582355a6ecbbf7ae57b44895", - "shasum": "" - }, - "require": { -@@ -14411,7 +14465,7 @@ - "phar-io/manifest": "^2.0.4", - "phar-io/version": "^3.2.1", - "php": ">=8.3", -- "phpunit/php-code-coverage": "^12.3.1", -+ "phpunit/php-code-coverage": "^12.3.2", - "phpunit/php-file-iterator": "^6.0.0", - "phpunit/php-invoker": "^6.0.0", - "phpunit/php-text-template": "^5.0.0", -@@ -14433,7 +14487,7 @@ - "type": "library", - "extra": { - "branch-alias": { -- "dev-main": "12.2-dev" -+ "dev-main": "12.3-dev" - } - }, - "autoload": { -@@ -14465,7 +14519,7 @@ - "support": { - "issues": "https://github.com/sebastianbergmann/phpunit/issues", - "security": "https://github.com/sebastianbergmann/phpunit/security/policy", -- "source": "https://github.com/sebastianbergmann/phpunit/tree/12.2.7" -+ "source": "https://github.com/sebastianbergmann/phpunit/tree/12.3.0" - }, - "funding": [ - { -@@ -14489,7 +14543,7 @@ - "type": "tidelift" - } - ], -- "time": "2025-07-11T04:11:13+00:00" -+ "time": "2025-08-01T05:14:47+00:00" - }, - { - "name": "sebastian/cli-parser", -@@ -15762,16 +15816,16 @@ - }, - { - "name": "symfony/yaml", -- "version": "v7.3.1", -+ "version": "v7.3.2", - "source": { - "type": "git", - "url": "https://github.com/symfony/yaml.git", -- "reference": "0c3555045a46ab3cd4cc5a69d161225195230edb" -+ "reference": "b8d7d868da9eb0919e99c8830431ea087d6aae30" - }, - "dist": { - "type": "zip", -- "url": "https://api.github.com/repos/symfony/yaml/zipball/0c3555045a46ab3cd4cc5a69d161225195230edb", -- "reference": "0c3555045a46ab3cd4cc5a69d161225195230edb", -+ "url": "https://api.github.com/repos/symfony/yaml/zipball/b8d7d868da9eb0919e99c8830431ea087d6aae30", -+ "reference": "b8d7d868da9eb0919e99c8830431ea087d6aae30", - "shasum": "" - }, - "require": { -@@ -15814,7 +15868,7 @@ - "description": "Loads and dumps YAML files", - "homepage": "https://symfony.com", - "support": { -- "source": "https://github.com/symfony/yaml/tree/v7.3.1" -+ "source": "https://github.com/symfony/yaml/tree/v7.3.2" - }, - "funding": [ - { -@@ -15825,12 +15879,16 @@ - "url": "https://github.com/fabpot", - "type": "github" - }, -+ { -+ "url": "https://github.com/nicolas-grekas", -+ "type": "github" -+ }, - { - "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", - "type": "tidelift" - } - ], -- "time": "2025-06-03T06:57:57+00:00" -+ "time": "2025-07-10T08:47:49+00:00" - }, - { - "name": "theseer/tokenizer", -@@ -15949,9 +16007,12 @@ - "prefer-stable": true, - "prefer-lowest": false, - "platform": { -- "php": "8.3.*", -+ "php": "8.4.*", - "ext-zip": "*" - }, - "platform-dev": {}, -+ "platform-overrides": { -+ "php": "8.4.0" -+ }, - "plugin-api-version": "2.6.0" - } -diff --git a/config/database.php b/config/database.php -index 5ac598c..f514e0c 100644 ---- a/config/database.php -+++ b/config/database.php -@@ -68,7 +68,12 @@ - 'pgsql' => [ - 'driver' => 'pgsql', - 'url' => env('DATABASE_URL'), -- 'host' => env('DB_HOST', '127.0.0.1'), -+ 'read' => [ -+ 'host' => env('DB_READ_HOST', env('DB_HOST')), -+ ], -+ 'write' => [ -+ 'host' => env('DB_WRITE_HOST', env('DB_HOST')), -+ ], - 'port' => env('DB_PORT', '5432'), - 'database' => env('DB_DATABASE', 'forge'), - 'username' => env('DB_USERNAME', 'forge'), -diff --git a/docker-compose.yml b/docker-compose.yml -deleted file mode 100644 -index 53d73ed..0000000 ---- a/docker-compose.yml -+++ /dev/null -@@ -1,209 +0,0 @@ --services: -- laravel.test: -- build: -- context: ./docker/local/8.3 -- dockerfile: Dockerfile -- args: -- WWWGROUP: '${WWWGROUP}' -- image: sail-8.3/app -- labels: -- - "traefik.enable=true" -- - "traefik.docker.network=${NETWORK_NAME}" -- - "traefik.http.services.solidtime-dev.loadbalancer.server.port=80" -- - "traefik.http.routers.solidtime-dev.rule=Host(`${NGINX_HOST_NAME}`)" -- - "traefik.http.routers.solidtime-dev.entrypoints=web" -- - "traefik.http.routers.solidtime-dev.service=solidtime-dev" -- - "traefik.http.routers.solidtime-dev-https.rule=Host(`${NGINX_HOST_NAME}`)" -- - "traefik.http.routers.solidtime-dev-https.service=solidtime-dev" -- - "traefik.http.routers.solidtime-dev-https.entrypoints=websecure" -- - "traefik.http.routers.solidtime-dev-https.tls=true" -- # vite -- - "traefik.http.services.solidtime-dev-vite.loadbalancer.server.port=5173" -- # http -- - "traefik.http.routers.solidtime-dev-vite.rule=Host(`${VITE_HOST_NAME}`)" -- - "traefik.http.routers.solidtime-dev-vite.service=solidtime-dev-vite" -- - "traefik.http.routers.solidtime-dev-vite.entrypoints=web" -- extra_hosts: -- - "host.docker.internal:host-gateway" -- - "storage.${NGINX_HOST_NAME}:${REVERSE_PROXY_IP:-10.100.100.10}" -- environment: -- XDG_CONFIG_HOME: /var/www/html/config -- XDG_DATA_HOME: /var/www/html/data -- WWWUSER: '${WWWUSER}' -- LARAVEL_SAIL: 1 -- XDEBUG_MODE: '${SAIL_XDEBUG_MODE:-off}' -- XDEBUG_CONFIG: '${SAIL_XDEBUG_CONFIG:-client_host=host.docker.internal}' -- IGNITION_LOCAL_SITES_PATH: '${PWD}' -- VITE_HOST_NAME: '${VITE_HOST_NAME}' -- volumes: -- - '.:/var/www/html' -- networks: -- - sail -- - reverse-proxy -- depends_on: -- - pgsql -- pgsql: -- image: 'postgres:15' -- ports: -- - '${FORWARD_DB_PORT:-5432}:5432' -- environment: -- PGPASSWORD: '${DB_PASSWORD:-secret}' -- POSTGRES_DB: '${DB_DATABASE}' -- POSTGRES_USER: '${DB_USERNAME}' -- POSTGRES_PASSWORD: '${DB_PASSWORD:-secret}' -- volumes: -- - 'sail-pgsql:/var/lib/postgresql/data' -- - './docker/local/pgsql/create-testing-database.sql:/docker-entrypoint-initdb.d/10-create-testing-database.sql' -- networks: -- - sail -- healthcheck: -- test: -- - CMD -- - pg_isready -- - '-q' -- - '-d' -- - '${DB_DATABASE}' -- - '-U' -- - '${DB_USERNAME}' -- retries: 3 -- timeout: 5s -- pgsql_test: -- image: 'postgres:15' -- environment: -- PGPASSWORD: '${DB_PASSWORD:-secret}' -- POSTGRES_DB: '${DB_DATABASE}' -- POSTGRES_USER: '${DB_USERNAME}' -- POSTGRES_PASSWORD: '${DB_PASSWORD:-secret}' -- volumes: -- - 'sail-pgsql-test:/var/lib/postgresql/data' -- - './docker/local/pgsql/create-testing-database.sql:/docker-entrypoint-initdb.d/10-create-testing-database.sql' -- networks: -- - sail -- healthcheck: -- test: -- - CMD -- - pg_isready -- - '-q' -- - '-d' -- - '${DB_DATABASE}' -- - '-U' -- - '${DB_USERNAME}' -- retries: 3 -- timeout: 5s -- mailpit: -- image: 'axllent/mailpit:latest' -- labels: -- - "traefik.enable=true" -- - "traefik.docker.network=${NETWORK_NAME}" -- - "traefik.http.services.solidtime-dev-mailpit.loadbalancer.server.port=8025" -- - "traefik.http.routers.solidtime-dev-mailpit.rule=Host(`mail.${NGINX_HOST_NAME}`)" -- - "traefik.http.routers.solidtime-dev-mailpit.entrypoints=web" -- - "traefik.http.routers.solidtime-dev-mailpit.service=solidtime-dev-mailpit" -- - "traefik.http.routers.solidtime-dev-mailpit-https.rule=Host(`mail.${NGINX_HOST_NAME}`)" -- - "traefik.http.routers.solidtime-dev-mailpit-https.service=solidtime-dev-mailpit" -- - "traefik.http.routers.solidtime-dev-mailpit-https.entrypoints=websecure" -- - "traefik.http.routers.solidtime-dev-mailpit-https.tls=true" -- networks: -- - sail -- - reverse-proxy -- playwright: -- image: mcr.microsoft.com/playwright:v1.51.1-jammy -- command: ['npx', 'playwright', 'test', '--ui-port=8080', '--ui-host=0.0.0.0'] -- working_dir: /src -- extra_hosts: -- - "${NGINX_HOST_NAME}:${REVERSE_PROXY_IP:-10.100.100.10}" -- - "${VITE_HOST_NAME}:${REVERSE_PROXY_IP:-10.100.100.10}" -- labels: -- - "traefik.enable=true" -- - "traefik.docker.network=${NETWORK_NAME}" -- - "traefik.http.services.solidtime-dev-playwright.loadbalancer.server.port=8080" -- - "traefik.http.routers.solidtime-dev-playwright.rule=Host(`playwright.${NGINX_HOST_NAME}`)" -- - "traefik.http.routers.solidtime-dev-playwright.entrypoints=web" -- - "traefik.http.routers.solidtime-dev-playwright-https.rule=Host(`playwright.${NGINX_HOST_NAME}`)" -- - "traefik.http.routers.solidtime-dev-playwright-https.entrypoints=websecure" -- - "traefik.http.routers.solidtime-dev-playwright-https.tls=true" -- networks: -- - sail -- - reverse-proxy -- volumes: -- - '.:/src' -- minio: -- image: 'minio/minio:latest' -- environment: -- MINIO_BROWSER_REDIRECT_URL: 'https://storage-management.${NGINX_HOST_NAME}' -- MINIO_ROOT_USER: 'sail' -- MINIO_ROOT_PASSWORD: 'password' -- volumes: -- - 'sail-minio:/data/minio' -- networks: -- - reverse-proxy -- - sail -- command: minio server /data/minio --console-address ":8900" -- healthcheck: -- test: [ "CMD", "mc", "ready", "local" ] -- interval: 5s -- timeout: 5s -- retries: 5 -- labels: -- - "traefik.enable=true" -- - "traefik.docker.network=${NETWORK_NAME}" -- # Storage Frontend -- - "traefik.http.services.solidtime-dev-storage-frontend.loadbalancer.server.port=9000" -- # http -- - "traefik.http.routers.solidtime-dev-storage-frontend.rule=Host(`storage.${NGINX_HOST_NAME}`)" -- - "traefik.http.routers.solidtime-dev-storage-frontend.service=solidtime-dev-storage-frontend" -- - "traefik.http.routers.solidtime-dev-storage-frontend.entrypoints=web" -- # https -- - "traefik.http.routers.solidtime-dev-storage-frontend-https.rule=Host(`storage.${NGINX_HOST_NAME}`)" -- - "traefik.http.routers.solidtime-dev-storage-frontend-https.service=solidtime-dev-storage-frontend" -- - "traefik.http.routers.solidtime-dev-storage-frontend-https.entrypoints=websecure" -- - "traefik.http.routers.solidtime-dev-storage-frontend-https.tls=true" -- # Storage Management -- - "traefik.http.services.solidtime-dev-storage-management.loadbalancer.server.port=8900" -- # http -- - "traefik.http.routers.solidtime-dev-storage-management.rule=Host(`storage-management.${NGINX_HOST_NAME}`)" -- - "traefik.http.routers.solidtime-dev-storage-management.service=solidtime-dev-storage-management" -- - "traefik.http.routers.solidtime-dev-storage-management.entrypoints=web" -- # https -- - "traefik.http.routers.solidtime-dev-storage-management-https.rule=Host(`storage-management.${NGINX_HOST_NAME}`)" -- - "traefik.http.routers.solidtime-dev-storage-management-https.service=solidtime-dev-storage-management" -- - "traefik.http.routers.solidtime-dev-storage-management-https.entrypoints=websecure" -- - "traefik.http.routers.solidtime-dev-storage-management-https.tls=true" -- -- minio-create-bucket: -- image: minio/mc:latest -- depends_on: -- - minio -- environment: -- S3_ACCESS_KEY_ID: ${S3_ACCESS_KEY_ID} -- S3_SECRET_ACCESS_KEY: ${S3_SECRET_ACCESS_KEY} -- S3_BUCKET: ${S3_BUCKET} -- S3_ENDPOINT: ${S3_ENDPOINT} -- volumes: -- - './docker/local/minio:/etc/minio' -- networks: -- - sail -- - reverse-proxy -- entrypoint: /etc/minio/create_bucket.sh -- extra_hosts: -- - "storage.${NGINX_HOST_NAME}:${REVERSE_PROXY_IP:-10.100.100.10}" -- -- gotenberg: -- image: gotenberg/gotenberg:8 -- networks: -- - sail -- healthcheck: -- test: ["CMD", "curl", "--silent", "--fail", "http://localhost:3000/health"] --networks: -- reverse-proxy: -- name: "${NETWORK_NAME}" -- external: true -- sail: -- driver: bridge --volumes: -- sail-pgsql: -- driver: local -- sail-pgsql-test: -- driver: local -- sail-minio: -- driver: local -diff --git a/docker/local/8.3/Dockerfile b/docker/local/8.3/Dockerfile -deleted file mode 100644 -index b2a1f39..0000000 ---- a/docker/local/8.3/Dockerfile -+++ /dev/null -@@ -1,65 +0,0 @@ --FROM ubuntu:22.04 -- --LABEL maintainer="Taylor Otwell" -- --ARG WWWGROUP --ARG NODE_VERSION=20 --ARG POSTGRES_VERSION=15 -- --WORKDIR /var/www/html -- --ENV DEBIAN_FRONTEND noninteractive --ENV TZ=UTC --ENV SUPERVISOR_PHP_COMMAND="/usr/bin/php -d variables_order=EGPCS /var/www/html/artisan serve --host=0.0.0.0 --port=80" --ENV SUPERVISOR_PHP_USER="sail" -- --RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone -- --RUN apt-get update \ -- && mkdir -p /etc/apt/keyrings \ -- && apt-get install -y gnupg gosu curl ca-certificates zip unzip git supervisor sqlite3 libcap2-bin libpng-dev python2 dnsutils librsvg2-bin fswatch ffmpeg \ -- && curl -sS 'https://keyserver.ubuntu.com/pks/lookup?op=get&search=0x14aa40ec0831756756d7f66c4f4ea0aae5267a6c' | gpg --dearmor | tee /etc/apt/keyrings/ppa_ondrej_php.gpg > /dev/null \ -- && echo "deb [signed-by=/etc/apt/keyrings/ppa_ondrej_php.gpg] https://ppa.launchpadcontent.net/ondrej/php/ubuntu jammy main" > /etc/apt/sources.list.d/ppa_ondrej_php.list \ -- && apt-get update \ -- && apt-get install -y php8.3-cli php8.3-dev \ -- php8.3-pgsql php8.3-sqlite3 php8.3-gd \ -- php8.3-curl \ -- php8.3-imap php8.3-mysql php8.3-mbstring \ -- php8.3-xml php8.3-zip php8.3-bcmath php8.3-soap \ -- php8.3-intl php8.3-readline \ -- php8.3-ldap \ -- php8.3-msgpack php8.3-igbinary php8.3-redis php8.3-swoole \ -- php8.3-memcached php8.3-pcov php8.3-imagick php8.3-xdebug \ -- && curl -sLS https://getcomposer.org/installer | php -- --install-dir=/usr/bin/ --filename=composer \ -- && curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key | gpg --dearmor -o /etc/apt/keyrings/nodesource.gpg \ -- && echo "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_$NODE_VERSION.x nodistro main" > /etc/apt/sources.list.d/nodesource.list \ -- && apt-get update \ -- && apt-get install -y nodejs \ -- && npm install -g npm \ -- && npm install -g pnpm \ -- && npm install -g bun \ -- && curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | gpg --dearmor | tee /etc/apt/keyrings/yarn.gpg >/dev/null \ -- && echo "deb [signed-by=/etc/apt/keyrings/yarn.gpg] https://dl.yarnpkg.com/debian/ stable main" > /etc/apt/sources.list.d/yarn.list \ -- && curl -sS https://www.postgresql.org/media/keys/ACCC4CF8.asc | gpg --dearmor | tee /etc/apt/keyrings/pgdg.gpg >/dev/null \ -- && echo "deb [signed-by=/etc/apt/keyrings/pgdg.gpg] http://apt.postgresql.org/pub/repos/apt jammy-pgdg main" > /etc/apt/sources.list.d/pgdg.list \ -- && apt-get update \ -- && apt-get install -y yarn \ -- && apt-get install -y mysql-client \ -- && apt-get install -y postgresql-client-$POSTGRES_VERSION \ -- && apt-get -y autoremove \ -- && apt-get clean \ -- && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* -- --RUN setcap "cap_net_bind_service=+ep" /usr/bin/php8.3 -- --RUN groupadd --force -g $WWWGROUP sail --RUN useradd -ms /bin/bash --no-user-group -g $WWWGROUP -u 1337 sail -- --COPY start-container /usr/local/bin/start-container --COPY supervisord.conf /etc/supervisor/conf.d/supervisord.conf --COPY php.ini /etc/php/8.3/cli/conf.d/99-sail.ini --RUN chmod +x /usr/local/bin/start-container -- --EXPOSE 8000 -- --ENTRYPOINT ["start-container"] -diff --git a/docker/local/8.3/php.ini b/docker/local/8.3/php.ini -deleted file mode 100644 -index 0320d71..0000000 ---- a/docker/local/8.3/php.ini -+++ /dev/null -@@ -1,8 +0,0 @@ --[PHP] --post_max_size = 100M --upload_max_filesize = 100M --variables_order = EGPCS --pcov.directory = . -- --[opcache] --opcache.enable_cli=1 -diff --git a/docker/local/8.3/start-container b/docker/local/8.3/start-container -deleted file mode 100644 -index 40c55df..0000000 ---- a/docker/local/8.3/start-container -+++ /dev/null -@@ -1,26 +0,0 @@ --#!/usr/bin/env bash -- --if [ "$SUPERVISOR_PHP_USER" != "root" ] && [ "$SUPERVISOR_PHP_USER" != "sail" ]; then -- echo "You should set SUPERVISOR_PHP_USER to either 'sail' or 'root'." -- exit 1 --fi -- --if [ ! -z "$WWWUSER" ]; then -- usermod -u $WWWUSER sail --fi -- --if [ ! -d /.composer ]; then -- mkdir /.composer --fi -- --chmod -R ugo+rw /.composer -- --if [ $# -gt 0 ]; then -- if [ "$SUPERVISOR_PHP_USER" = "root" ]; then -- exec "$@" -- else -- exec gosu $WWWUSER "$@" -- fi --else -- exec /usr/bin/supervisord -c /etc/supervisor/conf.d/supervisord.conf --fi -diff --git a/docker/local/8.3/supervisord.conf b/docker/local/8.3/supervisord.conf -deleted file mode 100644 -index 656da8a..0000000 ---- a/docker/local/8.3/supervisord.conf -+++ /dev/null -@@ -1,14 +0,0 @@ --[supervisord] --nodaemon=true --user=root --logfile=/var/log/supervisor/supervisord.log --pidfile=/var/run/supervisord.pid -- --[program:php] --command=%(ENV_SUPERVISOR_PHP_COMMAND)s --user=%(ENV_SUPERVISOR_PHP_USER)s --environment=LARAVEL_SAIL="1" --stdout_logfile=/dev/stdout --stdout_logfile_maxbytes=0 --stderr_logfile=/dev/stderr --stderr_logfile_maxbytes=0 -diff --git a/docker/local/minio/create_bucket.sh b/docker/local/minio/create_bucket.sh -deleted file mode 100755 -index 944a252..0000000 ---- a/docker/local/minio/create_bucket.sh -+++ /dev/null -@@ -1,10 +0,0 @@ --#!/bin/sh -- --# Source: https://helgesver.re/articles/laravel-sail-create-minio-bucket-automatically -- --/usr/bin/mc config host add local ${S3_ENDPOINT} ${S3_ACCESS_KEY_ID} ${S3_SECRET_ACCESS_KEY}; --/usr/bin/mc rm -r --force local/${S3_BUCKET}; --/usr/bin/mc mb --ignore-existing local/${S3_BUCKET}; --/usr/bin/mc anonymous set public local/${S3_BUCKET}; -- --exit 0; -diff --git a/docker/local/pgsql/create-testing-database.sql b/docker/local/pgsql/create-testing-database.sql -deleted file mode 100644 -index d84dc07..0000000 ---- a/docker/local/pgsql/create-testing-database.sql -+++ /dev/null -@@ -1,2 +0,0 @@ --SELECT 'CREATE DATABASE testing' --WHERE NOT EXISTS (SELECT FROM pg_database WHERE datname = 'testing')\gexec -diff --git a/docker/prod/Dockerfile b/docker/prod/Dockerfile -deleted file mode 100644 -index f414b05..0000000 ---- a/docker/prod/Dockerfile -+++ /dev/null -@@ -1,214 +0,0 @@ --ARG PHP_VERSION=8.3 --ARG FRANKENPHP_VERSION=1.8 --ARG COMPOSER_VERSION=2.8 --ARG BUN_VERSION="latest" --ARG APP_ENV --ARG DOCKER_FILES_BASE_PATH="docker/prod/" -- --FROM composer:${COMPOSER_VERSION} AS vendor -- --FROM dunglas/frankenphp:${FRANKENPHP_VERSION}-builder-php${PHP_VERSION} AS upstream -- --COPY --from=caddy:builder /usr/bin/xcaddy /usr/bin/xcaddy -- --RUN CGO_ENABLED=1 \ -- XCADDY_SETCAP=1 \ -- XCADDY_GO_BUILD_FLAGS="-ldflags='-w -s' -tags=nobadger,nomysql,nopgx" \ -- CGO_CFLAGS=$(php-config --includes) \ -- CGO_LDFLAGS="$(php-config --ldflags) $(php-config --libs)" \ -- xcaddy build \ -- --output /usr/local/bin/frankenphp \ -- --with github.com/dunglas/frankenphp=./ \ -- --with github.com/dunglas/frankenphp/caddy=./caddy/ \ -- --with github.com/dunglas/caddy-cbrotli -- --FROM dunglas/frankenphp:${FRANKENPHP_VERSION}-php${PHP_VERSION} AS base -- --COPY --from=upstream /usr/local/bin/frankenphp /usr/local/bin/frankenphp -- --LABEL maintainer="solidtime " --LABEL org.opencontainers.image.title="solidtime" --LABEL org.opencontainers.image.description="solidtime is a modern open source timetracker for freelancers and agencies" --LABEL org.opencontainers.image.source="https://github.com/solidtime-io/solidtime" --LABEL org.opencontainers.image.licenses="AGPL" -- --ARG WWWUSER=1000 --ARG WWWGROUP=1000 --ARG TZ=UTC --ARG APP_DIR=/var/www/html --ARG APP_ENV --ARG APP_HOST --ARG DOCKER_FILES_BASE_PATH -- --ENV DEBIAN_FRONTEND=noninteractive \ -- TERM=xterm-color \ -- OCTANE_SERVER=frankenphp \ -- TZ=${TZ} \ -- USER=octane \ -- ROOT=${APP_DIR} \ -- APP_ENV=${APP_ENV} \ -- COMPOSER_FUND=0 \ -- COMPOSER_MAX_PARALLEL_HTTP=24 \ -- XDG_CONFIG_HOME=${APP_DIR}/.config \ -- XDG_DATA_HOME=${APP_DIR}/.data \ -- SERVER_NAME=${APP_HOST} -- --WORKDIR ${ROOT} -- --SHELL ["/bin/bash", "-eou", "pipefail", "-c"] -- --RUN ln -snf /usr/share/zoneinfo/${TZ} /etc/localtime \ -- && echo ${TZ} > /etc/timezone -- --RUN apt-get update; \ -- apt-get upgrade -yqq; \ -- apt-get install -yqq --no-install-recommends --show-progress \ -- apt-utils \ -- curl \ -- wget \ -- vim \ -- git \ -- ncdu \ -- procps \ -- unzip \ -- ca-certificates \ -- supervisor \ -- libsodium-dev \ -- libbrotli-dev \ -- # Install PHP extensions (included with dunglas/frankenphp) -- && install-php-extensions \ -- bz2 \ -- pcntl \ -- mbstring \ -- bcmath \ -- sockets \ -- pgsql \ -- pdo_pgsql \ -- opcache \ -- exif \ -- pdo_mysql \ -- zip \ -- uv \ -- vips \ -- intl \ -- gd \ -- redis \ -- rdkafka \ -- memcached \ -- igbinary \ -- ldap \ -- && apt-get -y autoremove \ -- && apt-get clean \ -- && docker-php-source delete \ -- && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* \ -- && rm /var/log/lastlog /var/log/faillog -- --RUN arch="$(uname -m)" \ -- && case "$arch" in \ -- armhf) _cronic_fname='supercronic-linux-arm' ;; \ -- aarch64) _cronic_fname='supercronic-linux-arm64' ;; \ -- x86_64) _cronic_fname='supercronic-linux-amd64' ;; \ -- x86) _cronic_fname='supercronic-linux-386' ;; \ -- *) echo >&2 "error: unsupported architecture: $arch"; exit 1 ;; \ -- esac \ -- && wget -q "https://github.com/aptible/supercronic/releases/download/v0.2.29/${_cronic_fname}" \ -- -O /usr/bin/supercronic \ -- && chmod +x /usr/bin/supercronic \ -- && mkdir -p /etc/supercronic \ -- && echo "*/1 * * * * php ${ROOT}/artisan schedule:run --no-interaction" > /etc/supercronic/laravel -- --RUN userdel --remove --force www-data \ -- && groupadd --force -g ${WWWGROUP} ${USER} \ -- && useradd -ms /bin/bash --no-log-init --no-user-group -g ${WWWGROUP} -u ${WWWUSER} ${USER} \ -- && setcap -r /usr/local/bin/frankenphp -- --RUN chown -R ${USER}:${USER} ${ROOT} /var/{log,run} \ -- && chmod -R a+rw ${ROOT} /var/{log,run} -- --RUN cp ${PHP_INI_DIR}/php.ini-production ${PHP_INI_DIR}/php.ini -- --USER ${USER} -- --COPY --link --chown=${WWWUSER}:${WWWUSER} --from=vendor /usr/bin/composer /usr/bin/composer -- --COPY --link --chown=${WWWUSER}:${WWWUSER} ${DOCKER_FILES_BASE_PATH}deployment/supervisord.conf /etc/ --COPY --link --chown=${WWWUSER}:${WWWUSER} ${DOCKER_FILES_BASE_PATH}deployment/octane/FrankenPHP/supervisord.frankenphp.conf /etc/supervisor/conf.d/ --COPY --link --chown=${WWWUSER}:${WWWUSER} ${DOCKER_FILES_BASE_PATH}deployment/supervisord.*.conf /etc/supervisor/conf.d/ --COPY --link --chown=${WWWUSER}:${WWWUSER} ${DOCKER_FILES_BASE_PATH}deployment/start-container /usr/local/bin/start-container --COPY --link --chown=${WWWUSER}:${WWWUSER} ${DOCKER_FILES_BASE_PATH}deployment/healthcheck /usr/local/bin/healthcheck --COPY --link --chown=${WWWUSER}:${WWWUSER} ${DOCKER_FILES_BASE_PATH}deployment/php.ini ${PHP_INI_DIR}/conf.d/99-octane.ini -- --RUN chmod +x /usr/local/bin/start-container /usr/local/bin/healthcheck -- --########################################### -- --#FROM base AS common --# --#USER ${USER} --# --#COPY --link --chown=${WWWUSER}:${WWWUSER} . . --# --#RUN composer install \ --# --no-dev \ --# --no-interaction \ --# --no-autoloader \ --# --no-ansi \ --# --no-scripts \ --# --audit -- --########################################### --# Build frontend assets with Bun --########################################### -- --#FROM oven/bun:${BUN_VERSION} AS build --# --#ARG APP_ENV --# --#ENV ROOT=/var/www/html \ --# APP_ENV=${APP_ENV} \ --# NODE_ENV=${APP_ENV:-production} --# --#WORKDIR ${ROOT} --# --#COPY --link package.json bun.lock* ./ --# --#RUN bun install --frozen-lockfile --# --#COPY --link . . --#COPY --link --from=common ${ROOT}/vendor vendor --# --#RUN bun run build -- --########################################### -- --#FROM common AS runner -- --USER ${USER} -- --ENV WITH_HORIZON=false \ -- WITH_SCHEDULER=false \ -- WITH_REVERB=false -- --COPY --link --chown=${WWWUSER}:${WWWUSER} . . --#COPY --link --chown=${WWWUSER}:${WWWUSER} --from=build ${ROOT}/public public -- --RUN mkdir -p \ -- storage/framework/{sessions,views,cache,testing} \ -- storage/logs \ -- bootstrap/cache && chmod -R a+rw storage -- --#RUN composer install \ --# --classmap-authoritative \ --# --no-interaction \ --# --no-ansi \ --# --no-dev \ --# && composer clear-cache -- --RUN cat .env --#RUN php artisan env -- --EXPOSE 8000 -- --ENTRYPOINT ["start-container"] -- --#HEALTHCHECK --start-period=5s --interval=2s --timeout=5s --retries=8 CMD healthcheck || exit 1 -diff --git a/docker/prod/LICENSE b/docker/prod/LICENSE -deleted file mode 100644 -index 96aa7dd..0000000 ---- a/docker/prod/LICENSE -+++ /dev/null -@@ -1,21 +0,0 @@ --MIT License -- --Copyright (c) 2021 Exa Company -- --Permission is hereby granted, free of charge, to any person obtaining a copy --of this software and associated documentation files (the "Software"), to deal --in the Software without restriction, including without limitation the rights --to use, copy, modify, merge, publish, distribute, sublicense, and/or sell --copies of the Software, and to permit persons to whom the Software is --furnished to do so, subject to the following conditions: -- --The above copyright notice and this permission notice shall be included in all --copies or substantial portions of the Software. -- --THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR --IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, --FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE --AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER --LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, --OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE --SOFTWARE. -diff --git a/docker/prod/deployment/healthcheck b/docker/prod/deployment/healthcheck -deleted file mode 100644 -index c428181..0000000 ---- a/docker/prod/deployment/healthcheck -+++ /dev/null -@@ -1,35 +0,0 @@ --#!/usr/bin/env sh -- --set -e -- --container_mode=${CONTAINER_MODE:-"http"} -- --if [ "${container_mode}" = "http" ]; then -- php "${ROOT}/artisan" octane:status --elif [ "${container_mode}" = "horizon" ]; then -- php "${ROOT}/artisan" horizon:status --elif [ "${container_mode}" = "scheduler" ]; then -- if [ "$(supervisorctl status scheduler:scheduler_0 | awk '{print tolower($2)}')" = "running" ]; then -- exit 0 -- else -- echo "Healthcheck failed." -- exit 1 -- fi --elif [ "${container_mode}" = "reverb" ]; then -- if [ "$(supervisorctl status reverb:reverb_0 | awk '{print tolower($2)}')" = "running" ]; then -- exit 0 -- else -- echo "Healthcheck failed." -- exit 1 -- fi --elif [ "${container_mode}" = "worker" ]; then -- if [ "$(supervisorctl status worker:worker_0 | awk '{print tolower($2)}')" = "running" ]; then -- exit 0 -- else -- echo "Healthcheck failed." -- exit 1 -- fi --else -- echo "Container mode mismatched." -- exit 1 --fi -diff --git a/docker/prod/deployment/octane/FrankenPHP/Caddyfile b/docker/prod/deployment/octane/FrankenPHP/Caddyfile -deleted file mode 100644 -index 08211d0..0000000 ---- a/docker/prod/deployment/octane/FrankenPHP/Caddyfile -+++ /dev/null -@@ -1,68 +0,0 @@ --{ -- {$CADDY_GLOBAL_OPTIONS} -- -- admin {$CADDY_SERVER_ADMIN_HOST}:{$CADDY_SERVER_ADMIN_PORT} -- -- frankenphp { -- worker "{$APP_PUBLIC_PATH}/frankenphp-worker.php" {$CADDY_SERVER_WORKER_COUNT} -- } -- -- metrics { -- per_host -- } -- -- servers { -- protocols h1 -- } --} -- --{$CADDY_EXTRA_CONFIG} -- --{$CADDY_SERVER_SERVER_NAME} { -- log { -- level WARN -- -- format filter { -- wrap {$CADDY_SERVER_LOGGER} -- fields { -- uri query { -- replace authorization REDACTED -- } -- } -- } -- } -- -- route { -- root * "{$APP_PUBLIC_PATH}" -- encode zstd br gzip -- -- {$CADDY_SERVER_EXTRA_DIRECTIVES} -- -- request_body { -- max_size 500MB -- } -- -- @static { -- file -- path *.js *.css *.jpg *.jpeg *.webp *.weba *.webm *.gif *.png *.ico *.cur *.gz *.svg *.svgz *.mp4 *.mp3 *.ogg *.ogv *.htc *.woff2 *.woff -- } -- -- @staticshort { -- file -- path *.json *.xml *.rss -- } -- -- header @static Cache-Control "public, immutable, stale-while-revalidate, max-age=31536000" -- -- header @staticshort Cache-Control "no-cache, max-age=3600" -- -- @rejected `path('*.bak', '*.conf', '*.dist', '*.fla', '*.ini', '*.inc', '*.inci', '*.log', '*.orig', '*.psd', '*.sh', '*.sql', '*.swo', '*.swp', '*.swop', '*/.*') && !path('*/.well-known/*')` -- error @rejected 401 -- -- php_server { -- index frankenphp-worker.php -- try_files {path} frankenphp-worker.php -- resolve_root_symlink -- } -- } --} -diff --git a/docker/prod/deployment/octane/FrankenPHP/supervisord.frankenphp.conf b/docker/prod/deployment/octane/FrankenPHP/supervisord.frankenphp.conf -deleted file mode 100644 -index 20dbc3e..0000000 ---- a/docker/prod/deployment/octane/FrankenPHP/supervisord.frankenphp.conf -+++ /dev/null -@@ -1,65 +0,0 @@ --[program:octane] --process_name = %(program_name)s_%(process_num)s --command = php %(ENV_ROOT)s/artisan octane:frankenphp --host=0.0.0.0 --port=8000 --admin-port=2019 --caddyfile=%(ENV_ROOT)s/docker/prod/deployment/octane/FrankenPHP/Caddyfile --user = %(ENV_USER)s --priority = 1 --autostart = true --autorestart = true --environment = LARAVEL_OCTANE = "1" --stdout_logfile = /dev/stdout --stdout_logfile_maxbytes = 0 --stderr_logfile = /dev/stderr --stderr_logfile_maxbytes = 0 -- --[program:horizon] --process_name = %(program_name)s_%(process_num)s --command = php %(ENV_ROOT)s/artisan horizon --user = %(ENV_USER)s --priority = 3 --autostart = %(ENV_WITH_HORIZON)s --autorestart = true --stdout_logfile = %(ENV_ROOT)s/storage/logs/horizon.log --stdout_logfile_maxbytes = 200MB --stderr_logfile = %(ENV_ROOT)s/storage/logs/horizon.log --stderr_logfile_maxbytes = 200MB --stopwaitsecs = 3600 -- --[program:scheduler] --process_name = %(program_name)s_%(process_num)s --command = supercronic -overlapping /etc/supercronic/laravel --user = %(ENV_USER)s --autostart = %(ENV_WITH_SCHEDULER)s --autorestart = true --stdout_logfile = %(ENV_ROOT)s/storage/logs/scheduler.log --stdout_logfile_maxbytes = 200MB --stderr_logfile = %(ENV_ROOT)s/storage/logs/scheduler.log --stderr_logfile_maxbytes = 200MB -- --[program:clear-scheduler-cache] --process_name = %(program_name)s_%(process_num)s --command = php %(ENV_ROOT)s/artisan schedule:clear-cache --user = %(ENV_USER)s --autostart = %(ENV_WITH_SCHEDULER)s --autorestart = false --startsecs = 0 --startretries = 1 --stdout_logfile = %(ENV_ROOT)s/storage/logs/scheduler.log --stdout_logfile_maxbytes = 200MB --stderr_logfile = %(ENV_ROOT)s/storage/logs/scheduler.log --stderr_logfile_maxbytes = 200MB -- --[program:reverb] --process_name = %(program_name)s_%(process_num)s --command = php %(ENV_ROOT)s/artisan reverb:start --user = %(ENV_USER)s --priority = 2 --autostart = %(ENV_WITH_REVERB)s --autorestart = true --stdout_logfile = %(ENV_ROOT)s/storage/logs/reverb.log --stdout_logfile_maxbytes = 200MB --stderr_logfile = %(ENV_ROOT)s/storage/logs/reverb.log --stderr_logfile_maxbytes = 200MB --minfds = 10000 -- --[include] --files = /etc/supervisord.conf -diff --git a/docker/prod/deployment/php.ini b/docker/prod/deployment/php.ini -deleted file mode 100644 -index d770d10..0000000 ---- a/docker/prod/deployment/php.ini -+++ /dev/null -@@ -1,31 +0,0 @@ --[PHP] --post_max_size = 100M --upload_max_filesize = 100M --expose_php = 0 --realpath_cache_size = 16M --realpath_cache_ttl = 360 --max_input_time = 5 --register_argc_argv = 0 --date.timezone = ${TZ:-UTC} -- --[Opcache] --opcache.enable = 1 --opcache.enable_cli = 1 --opcache.memory_consumption = 256M --opcache.use_cwd = 0 --opcache.max_file_size = 0 --opcache.max_accelerated_files = 32531 --opcache.validate_timestamps = 0 --opcache.file_update_protection = 0 --opcache.interned_strings_buffer = 16 -- --[JIT] --opcache.jit_buffer_size = 128M --opcache.jit = function --opcache.jit_prof_threshold = 0.001 --opcache.jit_max_root_traces = 2048 --opcache.jit_max_side_traces = 256 -- --[zlib] --zlib.output_compression = On --zlib.output_compression_level = 9 -diff --git a/docker/prod/deployment/start-container b/docker/prod/deployment/start-container -deleted file mode 100644 -index 0fb3fcd..0000000 ---- a/docker/prod/deployment/start-container -+++ /dev/null -@@ -1,55 +0,0 @@ --#!/usr/bin/env sh --set -e -- --container_mode=${CONTAINER_MODE:-"http"} --octane_server=${OCTANE_SERVER} --auto_db_migrate=${AUTO_DB_MIGRATE:-false} -- --initialStuff() { -- echo "Container mode: $container_mode" -- -- if [ ${auto_db_migrate} = "true" ]; then -- echo "Auto database migration enabled." -- php artisan migrate --isolated --force -- fi -- -- php artisan storage:link; \ -- php artisan optimize:clear; \ -- php artisan optimize; --} -- --if [ "$1" != "" ]; then -- exec "$@" --elif [ "${container_mode}" = "http" ]; then -- initialStuff -- echo "Octane Server: $octane_server" -- if [ "${octane_server}" = "frankenphp" ]; then -- exec /usr/bin/supervisord -c /etc/supervisor/conf.d/supervisord.frankenphp.conf -- elif [ "${octane_server}" = "swoole" ]; then -- exec /usr/bin/supervisord -c /etc/supervisor/conf.d/supervisord.swoole.conf -- elif [ "${octane_server}" = "roadrunner" ]; then -- exec /usr/bin/supervisord -c /etc/supervisor/conf.d/supervisord.roadrunner.conf -- else -- echo "Invalid Octane server supplied." -- exit 1 -- fi --elif [ "${container_mode}" = "horizon" ]; then -- initialStuff -- exec /usr/bin/supervisord -c /etc/supervisor/conf.d/supervisord.horizon.conf --elif [ "${container_mode}" = "reverb" ]; then -- initialStuff -- exec /usr/bin/supervisord -c /etc/supervisor/conf.d/supervisord.reverb.conf --elif [ "${container_mode}" = "scheduler" ]; then -- initialStuff -- exec /usr/bin/supervisord -c /etc/supervisor/conf.d/supervisord.scheduler.conf --elif [ "${container_mode}" = "worker" ]; then -- if [ -z "${WORKER_COMMAND}" ]; then -- echo "WORKER_COMMAND is undefined." -- exit 1 -- fi -- initialStuff -- exec /usr/bin/supervisord -c /etc/supervisor/conf.d/supervisord.worker.conf --else -- echo "Container mode mismatched." -- exit 1 --fi -diff --git a/docker/prod/deployment/supervisord.conf b/docker/prod/deployment/supervisord.conf -deleted file mode 100644 -index 80d8cdc..0000000 ---- a/docker/prod/deployment/supervisord.conf -+++ /dev/null -@@ -1,13 +0,0 @@ --[supervisord] --nodaemon = true --user = %(ENV_USER)s --logfile = /var/log/supervisor/supervisord.log --pidfile = /var/run/supervisord.pid -- --[supervisorctl] -- --[inet_http_server] --port = 127.0.0.1:9001 -- --[rpcinterface:supervisor] --supervisor.rpcinterface_factory = supervisor.rpcinterface:make_main_rpcinterface -diff --git a/docker/prod/deployment/supervisord.horizon.conf b/docker/prod/deployment/supervisord.horizon.conf -deleted file mode 100644 -index c57062c..0000000 ---- a/docker/prod/deployment/supervisord.horizon.conf -+++ /dev/null -@@ -1,14 +0,0 @@ --[program:horizon] --process_name = %(program_name)s_%(process_num)s --command = php %(ENV_ROOT)s/artisan horizon --user = %(ENV_USER)s --autostart = true --autorestart = true --stdout_logfile = /dev/stdout --stdout_logfile_maxbytes = 0 --stderr_logfile = /dev/stderr --stderr_logfile_maxbytes = 0 --stopwaitsecs = 3600 -- --[include] --files = /etc/supervisord.conf -diff --git a/docker/prod/deployment/supervisord.reverb.conf b/docker/prod/deployment/supervisord.reverb.conf -deleted file mode 100644 -index 6e540eb..0000000 ---- a/docker/prod/deployment/supervisord.reverb.conf -+++ /dev/null -@@ -1,14 +0,0 @@ --[program:reverb] --process_name = %(program_name)s_%(process_num)s --command = php %(ENV_ROOT)s/artisan reverb:start --user = %(ENV_USER)s --autostart = true --autorestart = true --stdout_logfile = /dev/stdout --stdout_logfile_maxbytes = 0 --stderr_logfile = /dev/stderr --stderr_logfile_maxbytes = 0 --minfds = 10000 -- --[include] --files = /etc/supervisord.conf -diff --git a/docker/prod/deployment/supervisord.scheduler.conf b/docker/prod/deployment/supervisord.scheduler.conf -deleted file mode 100644 -index 20722be..0000000 ---- a/docker/prod/deployment/supervisord.scheduler.conf -+++ /dev/null -@@ -1,26 +0,0 @@ --[program:scheduler] --process_name = %(program_name)s_%(process_num)s --command = supercronic -overlapping /etc/supercronic/laravel --user = %(ENV_USER)s --autostart = true --autorestart = true --stdout_logfile = /dev/stdout --stdout_logfile_maxbytes = 0 --stderr_logfile = /dev/stderr --stderr_logfile_maxbytes = 0 -- --[program:clear-scheduler-cache] --process_name = %(program_name)s_%(process_num)s --command = php %(ENV_ROOT)s/artisan schedule:clear-cache --user = %(ENV_USER)s --autostart = true --autorestart = false --startsecs = 0 --startretries = 1 --stdout_logfile = /dev/stdout --stdout_logfile_maxbytes = 0 --stderr_logfile = /dev/stderr --stderr_logfile_maxbytes = 0 -- --[include] --files = /etc/supervisord.conf -diff --git a/docker/prod/deployment/supervisord.worker.conf b/docker/prod/deployment/supervisord.worker.conf -deleted file mode 100644 -index 0d939c0..0000000 ---- a/docker/prod/deployment/supervisord.worker.conf -+++ /dev/null -@@ -1,13 +0,0 @@ --[program:worker] --process_name = %(program_name)s_%(process_num)s --command = %(ENV_WORKER_COMMAND)s --user = %(ENV_USER)s --autostart = true --autorestart = true --stdout_logfile = /dev/stdout --stdout_logfile_maxbytes = 0 --stderr_logfile = /dev/stderr --stderr_logfile_maxbytes = 0 -- --[include] --files = /etc/supervisord.conf -diff --git a/e2e/clients.spec.ts b/e2e/clients.spec.ts -index dab9c81..fe0ba9f 100644 ---- a/e2e/clients.spec.ts -+++ b/e2e/clients.spec.ts -@@ -7,7 +7,9 @@ async function goToProjectsOverview(page: Page) { - } - - // Create new project via modal --test('test that creating and deleting a new client via the modal works', async ({ page }) => { -+test.skip('test that creating and deleting a new client via the modal works (disabled - deletion no longer supported)', async ({ -+ page, -+}) => { - const newClientName = 'New Project ' + Math.floor(1 + Math.random() * 10000); - await goToProjectsOverview(page); - await page.getByRole('button', { name: 'Create Client' }).click(); -@@ -27,18 +29,12 @@ test('test that creating and deleting a new client via the modal works', async ( - await expect(page.getByTestId('client_table')).toContainText(newClientName); - const moreButton = page.locator("[aria-label='Actions for Client " + newClientName + "']"); - moreButton.click(); -- const deleteButton = page.locator("[aria-label='Delete Client " + newClientName + "']"); -- -+ // Deletion removed. Verify archive exists instead. -+ const archiveButton = page.locator("[aria-label='Archive Client " + newClientName + "']"); - await Promise.all([ -- deleteButton.click(), -- page.waitForResponse( -- async (response) => -- response.url().includes('/clients') && -- response.request().method() === 'DELETE' && -- response.status() === 204 -- ), -+ archiveButton.click(), -+ expect(page.getByTestId('client_table')).not.toContainText(newClientName), - ]); -- await expect(page.getByTestId('client_table')).not.toContainText(newClientName); - }); - - test('test that archiving and unarchiving clients works', async ({ page }) => { -diff --git a/e2e/projects.spec.ts b/e2e/projects.spec.ts -index 9dd51c5..105bd41 100644 ---- a/e2e/projects.spec.ts -+++ b/e2e/projects.spec.ts -@@ -9,7 +9,9 @@ async function goToProjectsOverview(page: Page) { - } - - // Create new project via modal --test('test that creating and deleting a new project via the modal works', async ({ page }) => { -+test.skip('test that creating and deleting a new project via the modal works (disabled - deletion no longer supported)', async ({ -+ page, -+}) => { - const newProjectName = 'New Project ' + Math.floor(1 + Math.random() * 10000); - await goToProjectsOverview(page); - await page.getByRole('button', { name: 'Create Project' }).click(); -@@ -31,18 +33,12 @@ test('test that creating and deleting a new project via the modal works', async - await expect(page.getByTestId('project_table')).toContainText(newProjectName); - const moreButton = page.locator("[aria-label='Actions for Project " + newProjectName + "']"); - moreButton.click(); -- const deleteButton = page.locator("[aria-label='Delete Project " + newProjectName + "']"); -- -+ // Deletion removed. Verify archive exists instead. -+ const archiveButton = page.locator("[aria-label='Archive Project " + newProjectName + "']"); - await Promise.all([ -- deleteButton.click(), -- page.waitForResponse( -- async (response) => -- response.url().includes('/projects') && -- response.request().method() === 'DELETE' && -- response.status() === 204 -- ), -+ archiveButton.click(), -+ expect(page.getByTestId('project_table')).not.toContainText(newProjectName), - ]); -- await expect(page.getByTestId('project_table')).not.toContainText(newProjectName); - }); - - test('test that archiving and unarchiving projects works', async ({ page }) => { -@@ -108,12 +104,12 @@ test('test that updating billable rate works with existing time entries', async - (await response.json()).data.billable_rate === newBillableRate * 100 - ), - ]); -- await expect( -- page -- .getByRole('row') -- .first() -- .getByText(formatCentsWithOrganizationDefaults(newBillableRate * 100)) -- ).toBeVisible(); -+ -+ // UI no longer shows billable rate in the overview by default. -+ // Reopen the edit modal and verify the value was persisted. -+ await page.getByRole('row').first().getByRole('button').click(); -+ await page.getByRole('menuitem').getByText('Edit').first().click(); -+ await expect(page.getByPlaceholder('Billable Rate')).toHaveValue(newBillableRate.toString()); - }); - - // Create new project with new Client -diff --git a/e2e/tasks.spec.ts b/e2e/tasks.spec.ts -index 8e2073d..e769ffe 100644 ---- a/e2e/tasks.spec.ts -+++ b/e2e/tasks.spec.ts -@@ -69,18 +69,12 @@ test('test that creating and deleting a new tag in a new project works', async ( - - const moreButton = page.locator("[aria-label='Actions for Project " + newProjectName + "']"); - moreButton.click(); -- const deleteButton = page.locator("[aria-label='Delete Project " + newProjectName + "']"); -- -+ // Deletion no longer supported: archive instead. -+ const archiveButton = page.locator("[aria-label='Archive Project " + newProjectName + "']"); - await Promise.all([ -- deleteButton.click(), -- page.waitForResponse( -- async (response) => -- response.url().includes('/projects') && -- response.request().method() === 'DELETE' && -- response.status() === 204 -- ), -+ archiveButton.click(), -+ expect(page.getByTestId('project_table')).not.toContainText(newProjectName), - ]); -- await expect(page.getByTestId('project_table')).not.toContainText(newProjectName); - }); - - test('test that archiving and unarchiving tasks works', async ({ page }) => { -diff --git a/e2e/timetracker.spec.ts b/e2e/timetracker.spec.ts -index c7896ca..5a371a3 100644 ---- a/e2e/timetracker.spec.ts -+++ b/e2e/timetracker.spec.ts -@@ -187,10 +187,10 @@ test('test that entering a random value in the time range does not start the tim - }) => { - await goToDashboard(page); - await page.getByTestId('time_entry_time').fill('asdasdasd'); -- await page.getByTestId('time_entry_time').press('Tab'), -+ (await page.getByTestId('time_entry_time').press('Tab'), - await page.locator( - '[data-testid="dashboard_timer"] [data-testid="timer_button"].bg-accent-300/70' -- ); -+ )); - }); - - test('test that entering a time starts the timer on enter', async ({ page }) => { -diff --git a/package-lock.json b/package-lock.json -index 193c3a8..b8cbbff 100644 ---- a/package-lock.json -+++ b/package-lock.json -@@ -1,5 +1,5 @@ - { -- "name": "html", -+ "name": "time.codebar", - "lockfileVersion": 3, - "requires": true, - "packages": { -@@ -61,7 +61,6 @@ - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/@alloc/quick-lru/-/quick-lru-5.2.0.tgz", - "integrity": "sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==", -- "license": "MIT", - "engines": { - "node": ">=10" - }, -@@ -74,7 +73,6 @@ - "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.3.0.tgz", - "integrity": "sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==", - "dev": true, -- "license": "Apache-2.0", - "dependencies": { - "@jridgewell/gen-mapping": "^0.3.5", - "@jridgewell/trace-mapping": "^0.3.24" -@@ -88,7 +86,6 @@ - "resolved": "https://registry.npmjs.org/@apidevtools/json-schema-ref-parser/-/json-schema-ref-parser-11.7.2.tgz", - "integrity": "sha512-4gY54eEGEstClvEkGnwVkTkrx0sqwemEFG5OSRRn3tD91XH0+Q8XIkYIfo7IwEWPpJZwILb9GUXeShtplRc/eA==", - "dev": true, -- "license": "MIT", - "dependencies": { - "@jsdevtools/ono": "^7.1.3", - "@types/json-schema": "^7.0.15", -@@ -106,7 +103,6 @@ - "resolved": "https://registry.npmjs.org/@apidevtools/openapi-schemas/-/openapi-schemas-2.1.0.tgz", - "integrity": "sha512-Zc1AlqrJlX3SlpupFGpiLi2EbteyP7fXmUOGup6/DnkRgjP9bgMM/ag+n91rsv0U1Gpz0H3VILA/o3bW7Ua6BQ==", - "dev": true, -- "license": "MIT", - "engines": { - "node": ">=10" - } -@@ -115,15 +111,13 @@ - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/@apidevtools/swagger-methods/-/swagger-methods-3.0.2.tgz", - "integrity": "sha512-QAkD5kK2b1WfjDS/UQn/qQkbwF31uqRjPTrsCs5ZG9BQGAkjwvqGFjjPqAuzac/IYzpPtRzjCP1WrTuAIjMrXg==", -- "dev": true, -- "license": "MIT" -+ "dev": true - }, - "node_modules/@apidevtools/swagger-parser": { - "version": "10.1.1", - "resolved": "https://registry.npmjs.org/@apidevtools/swagger-parser/-/swagger-parser-10.1.1.tgz", - "integrity": "sha512-u/kozRnsPO/x8QtKYJOqoGtC4kH6yg1lfYkB9Au0WhYB0FNLpyFusttQtvhlwjtG3rOwiRz4D8DnnXa8iEpIKA==", - "dev": true, -- "license": "MIT", - "dependencies": { - "@apidevtools/json-schema-ref-parser": "11.7.2", - "@apidevtools/openapi-schemas": "^2.1.0", -@@ -142,7 +136,6 @@ - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz", - "integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==", - "dev": true, -- "license": "MIT", - "dependencies": { - "fast-deep-equal": "^3.1.3", - "fast-uri": "^3.0.1", -@@ -159,7 +152,6 @@ - "resolved": "https://registry.npmjs.org/ajv-draft-04/-/ajv-draft-04-1.0.0.tgz", - "integrity": "sha512-mv00Te6nmYbRp5DCwclxtt7yV/joXJPGS7nM+97GdxvuttCOfgI3K4U25zboyeX0O+myI8ERluxQe5wljMmVIw==", - "dev": true, -- "license": "MIT", - "peerDependencies": { - "ajv": "^8.5.0" - }, -@@ -173,51 +165,47 @@ - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", - "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", -- "dev": true, -- "license": "MIT" -+ "dev": true - }, - "node_modules/@babel/code-frame": { -- "version": "7.26.2", -- "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.26.2.tgz", -- "integrity": "sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==", -+ "version": "7.27.1", -+ "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.27.1.tgz", -+ "integrity": "sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==", - "dev": true, -- "license": "MIT", - "dependencies": { -- "@babel/helper-validator-identifier": "^7.25.9", -+ "@babel/helper-validator-identifier": "^7.27.1", - "js-tokens": "^4.0.0", -- "picocolors": "^1.0.0" -+ "picocolors": "^1.1.1" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/compat-data": { -- "version": "7.26.8", -- "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.26.8.tgz", -- "integrity": "sha512-oH5UPLMWR3L2wEFLnFJ1TZXqHufiTKAiLfqw5zkhS4dKXLJ10yVztfil/twG8EDTA4F/tvVNw9nOl4ZMslB8rQ==", -+ "version": "7.28.0", -+ "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.28.0.tgz", -+ "integrity": "sha512-60X7qkglvrap8mn1lh2ebxXdZYtUcpd7gsmy9kLaBJ4i/WdY8PqTSdxyA8qraikqKQK5C1KRBKXqznrVapyNaw==", - "dev": true, -- "license": "MIT", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/core": { -- "version": "7.26.10", -- "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.26.10.tgz", -- "integrity": "sha512-vMqyb7XCDMPvJFFOaT9kxtiRh42GwlZEg1/uIgtZshS5a/8OaduUfCi7kynKgc3Tw/6Uo2D+db9qBttghhmxwQ==", -+ "version": "7.28.0", -+ "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.28.0.tgz", -+ "integrity": "sha512-UlLAnTPrFdNGoFtbSXwcGFQBtQZJCNjaN6hQNP3UPvuNXT1i82N26KL3dZeIpNalWywr9IuQuncaAfUaS1g6sQ==", - "dev": true, -- "license": "MIT", - "dependencies": { - "@ampproject/remapping": "^2.2.0", -- "@babel/code-frame": "^7.26.2", -- "@babel/generator": "^7.26.10", -- "@babel/helper-compilation-targets": "^7.26.5", -- "@babel/helper-module-transforms": "^7.26.0", -- "@babel/helpers": "^7.26.10", -- "@babel/parser": "^7.26.10", -- "@babel/template": "^7.26.9", -- "@babel/traverse": "^7.26.10", -- "@babel/types": "^7.26.10", -+ "@babel/code-frame": "^7.27.1", -+ "@babel/generator": "^7.28.0", -+ "@babel/helper-compilation-targets": "^7.27.2", -+ "@babel/helper-module-transforms": "^7.27.3", -+ "@babel/helpers": "^7.27.6", -+ "@babel/parser": "^7.28.0", -+ "@babel/template": "^7.27.2", -+ "@babel/traverse": "^7.28.0", -+ "@babel/types": "^7.28.0", - "convert-source-map": "^2.0.0", - "debug": "^4.1.0", - "gensync": "^1.0.0-beta.2", -@@ -237,22 +225,20 @@ - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", - "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", - "dev": true, -- "license": "ISC", - "bin": { - "semver": "bin/semver.js" - } - }, - "node_modules/@babel/generator": { -- "version": "7.27.0", -- "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.27.0.tgz", -- "integrity": "sha512-VybsKvpiN1gU1sdMZIp7FcqphVVKEwcuj02x73uvcHE0PTihx1nlBcowYWhDwjpoAXRv43+gDzyggGnn1XZhVw==", -+ "version": "7.28.0", -+ "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.28.0.tgz", -+ "integrity": "sha512-lJjzvrbEeWrhB4P3QBsH7tey117PjLZnDbLiQEKjQ/fNJTjuq4HSqgFA+UNSwZT8D7dxxbnuSBMsa1lrWzKlQg==", - "dev": true, -- "license": "MIT", - "dependencies": { -- "@babel/parser": "^7.27.0", -- "@babel/types": "^7.27.0", -- "@jridgewell/gen-mapping": "^0.3.5", -- "@jridgewell/trace-mapping": "^0.3.25", -+ "@babel/parser": "^7.28.0", -+ "@babel/types": "^7.28.0", -+ "@jridgewell/gen-mapping": "^0.3.12", -+ "@jridgewell/trace-mapping": "^0.3.28", - "jsesc": "^3.0.2" - }, - "engines": { -@@ -260,14 +246,13 @@ - } - }, - "node_modules/@babel/helper-compilation-targets": { -- "version": "7.27.0", -- "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.27.0.tgz", -- "integrity": "sha512-LVk7fbXml0H2xH34dFzKQ7TDZ2G4/rVTOrq9V+icbbadjbVxxeFeDsNHv2SrZeWoA+6ZiTyWYWtScEIW07EAcA==", -+ "version": "7.27.2", -+ "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.27.2.tgz", -+ "integrity": "sha512-2+1thGUUWWjLTYTHZWK1n8Yga0ijBz1XAhUXcKy81rd5g6yh7hGqMp45v7cadSbEHc9G3OTv45SyneRN3ps4DQ==", - "dev": true, -- "license": "MIT", - "dependencies": { -- "@babel/compat-data": "^7.26.8", -- "@babel/helper-validator-option": "^7.25.9", -+ "@babel/compat-data": "^7.27.2", -+ "@babel/helper-validator-option": "^7.27.1", - "browserslist": "^4.24.0", - "lru-cache": "^5.1.1", - "semver": "^6.3.1" -@@ -281,35 +266,41 @@ - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", - "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", - "dev": true, -- "license": "ISC", - "bin": { - "semver": "bin/semver.js" - } - }, -+ "node_modules/@babel/helper-globals": { -+ "version": "7.28.0", -+ "resolved": "https://registry.npmjs.org/@babel/helper-globals/-/helper-globals-7.28.0.tgz", -+ "integrity": "sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==", -+ "dev": true, -+ "engines": { -+ "node": ">=6.9.0" -+ } -+ }, - "node_modules/@babel/helper-module-imports": { -- "version": "7.25.9", -- "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.25.9.tgz", -- "integrity": "sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw==", -+ "version": "7.27.1", -+ "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.27.1.tgz", -+ "integrity": "sha512-0gSFWUPNXNopqtIPQvlD5WgXYI5GY2kP2cCvoT8kczjbfcfuIljTbcWrulD1CIPIX2gt1wghbDy08yE1p+/r3w==", - "dev": true, -- "license": "MIT", - "dependencies": { -- "@babel/traverse": "^7.25.9", -- "@babel/types": "^7.25.9" -+ "@babel/traverse": "^7.27.1", -+ "@babel/types": "^7.27.1" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-module-transforms": { -- "version": "7.26.0", -- "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.26.0.tgz", -- "integrity": "sha512-xO+xu6B5K2czEnQye6BHA7DolFFmS3LB7stHZFaOLb1pAwO1HWLS8fXA+eh0A2yIvltPVmx3eNNDBJA2SLHXFw==", -+ "version": "7.27.3", -+ "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.27.3.tgz", -+ "integrity": "sha512-dSOvYwvyLsWBeIRyOeHXp5vPj5l1I011r52FM1+r1jCERv+aFXYk4whgQccYEGYxK2H3ZAIA8nuPkQ0HaUo3qg==", - "dev": true, -- "license": "MIT", - "dependencies": { -- "@babel/helper-module-imports": "^7.25.9", -- "@babel/helper-validator-identifier": "^7.25.9", -- "@babel/traverse": "^7.25.9" -+ "@babel/helper-module-imports": "^7.27.1", -+ "@babel/helper-validator-identifier": "^7.27.1", -+ "@babel/traverse": "^7.27.3" - }, - "engines": { - "node": ">=6.9.0" -@@ -319,54 +310,49 @@ - } - }, - "node_modules/@babel/helper-string-parser": { -- "version": "7.25.9", -- "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.25.9.tgz", -- "integrity": "sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==", -- "license": "MIT", -+ "version": "7.27.1", -+ "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz", -+ "integrity": "sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-validator-identifier": { -- "version": "7.25.9", -- "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.25.9.tgz", -- "integrity": "sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==", -- "license": "MIT", -+ "version": "7.27.1", -+ "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.27.1.tgz", -+ "integrity": "sha512-D2hP9eA+Sqx1kBZgzxZh0y1trbuU+JoDkiEwqhQ36nodYqJwyEIhPSdMNd7lOm/4io72luTPWH20Yda0xOuUow==", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-validator-option": { -- "version": "7.25.9", -- "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.25.9.tgz", -- "integrity": "sha512-e/zv1co8pp55dNdEcCynfj9X7nyUKUXoUEwfXqaZt0omVOmDe9oOTdKStH4GmAw6zxMFs50ZayuMfHDKlO7Tfw==", -+ "version": "7.27.1", -+ "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.27.1.tgz", -+ "integrity": "sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==", - "dev": true, -- "license": "MIT", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helpers": { -- "version": "7.27.0", -- "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.27.0.tgz", -- "integrity": "sha512-U5eyP/CTFPuNE3qk+WZMxFkp/4zUzdceQlfzf7DdGdhp+Fezd7HD+i8Y24ZuTMKX3wQBld449jijbGq6OdGNQg==", -+ "version": "7.28.2", -+ "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.28.2.tgz", -+ "integrity": "sha512-/V9771t+EgXz62aCcyofnQhGM8DQACbRhvzKFsXKC9QM+5MadF8ZmIm0crDMaz3+o0h0zXfJnd4EhbYbxsrcFw==", - "dev": true, -- "license": "MIT", - "dependencies": { -- "@babel/template": "^7.27.0", -- "@babel/types": "^7.27.0" -+ "@babel/template": "^7.27.2", -+ "@babel/types": "^7.28.2" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/parser": { -- "version": "7.27.0", -- "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.27.0.tgz", -- "integrity": "sha512-iaepho73/2Pz7w2eMS0Q5f83+0RKI7i4xmiYeBmDzfRVbQtTOG7Ts0S4HzJVsTMGI9keU8rNfuZr8DKfSt7Yyg==", -- "license": "MIT", -+ "version": "7.28.0", -+ "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.28.0.tgz", -+ "integrity": "sha512-jVZGvOxOuNSsuQuLRTh13nU0AogFlw32w/MT+LV6D3sP5WdbW61E77RnkbaO2dUvmPAYrBDJXGn5gGS6tH4j8g==", - "dependencies": { -- "@babel/types": "^7.27.0" -+ "@babel/types": "^7.28.0" - }, - "bin": { - "parser": "bin/babel-parser.js" -@@ -376,71 +362,57 @@ - } - }, - "node_modules/@babel/template": { -- "version": "7.27.0", -- "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.27.0.tgz", -- "integrity": "sha512-2ncevenBqXI6qRMukPlXwHKHchC7RyMuu4xv5JBXRfOGVcTy1mXCD12qrp7Jsoxll1EV3+9sE4GugBVRjT2jFA==", -+ "version": "7.27.2", -+ "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.27.2.tgz", -+ "integrity": "sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==", - "dev": true, -- "license": "MIT", - "dependencies": { -- "@babel/code-frame": "^7.26.2", -- "@babel/parser": "^7.27.0", -- "@babel/types": "^7.27.0" -+ "@babel/code-frame": "^7.27.1", -+ "@babel/parser": "^7.27.2", -+ "@babel/types": "^7.27.1" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/traverse": { -- "version": "7.27.0", -- "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.27.0.tgz", -- "integrity": "sha512-19lYZFzYVQkkHkl4Cy4WrAVcqBkgvV2YM2TU3xG6DIwO7O3ecbDPfW3yM3bjAGcqcQHi+CCtjMR3dIEHxsd6bA==", -+ "version": "7.28.0", -+ "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.28.0.tgz", -+ "integrity": "sha512-mGe7UK5wWyh0bKRfupsUchrQGqvDbZDbKJw+kcRGSmdHVYrv+ltd0pnpDTVpiTqnaBru9iEvA8pz8W46v0Amwg==", - "dev": true, -- "license": "MIT", - "dependencies": { -- "@babel/code-frame": "^7.26.2", -- "@babel/generator": "^7.27.0", -- "@babel/parser": "^7.27.0", -- "@babel/template": "^7.27.0", -- "@babel/types": "^7.27.0", -- "debug": "^4.3.1", -- "globals": "^11.1.0" -+ "@babel/code-frame": "^7.27.1", -+ "@babel/generator": "^7.28.0", -+ "@babel/helper-globals": "^7.28.0", -+ "@babel/parser": "^7.28.0", -+ "@babel/template": "^7.27.2", -+ "@babel/types": "^7.28.0", -+ "debug": "^4.3.1" - }, - "engines": { - "node": ">=6.9.0" - } - }, -- "node_modules/@babel/traverse/node_modules/globals": { -- "version": "11.12.0", -- "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", -- "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", -- "dev": true, -- "license": "MIT", -- "engines": { -- "node": ">=4" -- } -- }, - "node_modules/@babel/types": { -- "version": "7.27.0", -- "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.27.0.tgz", -- "integrity": "sha512-H45s8fVLYjbhFH62dIJ3WtmJ6RSPt/3DRO0ZcT2SUiYiQyz3BLVb9ADEnLl91m74aQPS3AzzeajZHYOalWe3bg==", -- "license": "MIT", -+ "version": "7.28.2", -+ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.28.2.tgz", -+ "integrity": "sha512-ruv7Ae4J5dUYULmeXw1gmb7rYRz57OWCPM57pHojnLq/3Z1CK2lNSLTCVjxVk1F/TZHwOZZrOWi0ur95BbLxNQ==", - "dependencies": { -- "@babel/helper-string-parser": "^7.25.9", -- "@babel/helper-validator-identifier": "^7.25.9" -+ "@babel/helper-string-parser": "^7.27.1", -+ "@babel/helper-validator-identifier": "^7.27.1" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@esbuild/aix-ppc64": { -- "version": "0.25.2", -- "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.25.2.tgz", -- "integrity": "sha512-wCIboOL2yXZym2cgm6mlA742s9QeJ8DjGVaL39dLN4rRwrOgOyYSnOaFPhKZGLb2ngj4EyfAFjsNJwPXZvseag==", -+ "version": "0.25.8", -+ "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.25.8.tgz", -+ "integrity": "sha512-urAvrUedIqEiFR3FYSLTWQgLu5tb+m0qZw0NBEasUeo6wuqatkMDaRT+1uABiGXEu5vqgPd7FGE1BhsAIy9QVA==", - "cpu": [ - "ppc64" - ], - "dev": true, -- "license": "MIT", - "optional": true, - "os": [ - "aix" -@@ -450,14 +422,13 @@ - } - }, - "node_modules/@esbuild/android-arm": { -- "version": "0.25.2", -- "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.25.2.tgz", -- "integrity": "sha512-NQhH7jFstVY5x8CKbcfa166GoV0EFkaPkCKBQkdPJFvo5u+nGXLEH/ooniLb3QI8Fk58YAx7nsPLozUWfCBOJA==", -+ "version": "0.25.8", -+ "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.25.8.tgz", -+ "integrity": "sha512-RONsAvGCz5oWyePVnLdZY/HHwA++nxYWIX1atInlaW6SEkwq6XkP3+cb825EUcRs5Vss/lGh/2YxAb5xqc07Uw==", - "cpu": [ - "arm" - ], - "dev": true, -- "license": "MIT", - "optional": true, - "os": [ - "android" -@@ -467,14 +438,13 @@ - } - }, - "node_modules/@esbuild/android-arm64": { -- "version": "0.25.2", -- "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.25.2.tgz", -- "integrity": "sha512-5ZAX5xOmTligeBaeNEPnPaeEuah53Id2tX4c2CVP3JaROTH+j4fnfHCkr1PjXMd78hMst+TlkfKcW/DlTq0i4w==", -+ "version": "0.25.8", -+ "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.25.8.tgz", -+ "integrity": "sha512-OD3p7LYzWpLhZEyATcTSJ67qB5D+20vbtr6vHlHWSQYhKtzUYrETuWThmzFpZtFsBIxRvhO07+UgVA9m0i/O1w==", - "cpu": [ - "arm64" - ], - "dev": true, -- "license": "MIT", - "optional": true, - "os": [ - "android" -@@ -484,14 +454,13 @@ - } - }, - "node_modules/@esbuild/android-x64": { -- "version": "0.25.2", -- "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.25.2.tgz", -- "integrity": "sha512-Ffcx+nnma8Sge4jzddPHCZVRvIfQ0kMsUsCMcJRHkGJ1cDmhe4SsrYIjLUKn1xpHZybmOqCWwB0zQvsjdEHtkg==", -+ "version": "0.25.8", -+ "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.25.8.tgz", -+ "integrity": "sha512-yJAVPklM5+4+9dTeKwHOaA+LQkmrKFX96BM0A/2zQrbS6ENCmxc4OVoBs5dPkCCak2roAD+jKCdnmOqKszPkjA==", - "cpu": [ - "x64" - ], - "dev": true, -- "license": "MIT", - "optional": true, - "os": [ - "android" -@@ -501,14 +470,13 @@ - } - }, - "node_modules/@esbuild/darwin-arm64": { -- "version": "0.25.2", -- "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.25.2.tgz", -- "integrity": "sha512-MpM6LUVTXAzOvN4KbjzU/q5smzryuoNjlriAIx+06RpecwCkL9JpenNzpKd2YMzLJFOdPqBpuub6eVRP5IgiSA==", -+ "version": "0.25.8", -+ "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.25.8.tgz", -+ "integrity": "sha512-Jw0mxgIaYX6R8ODrdkLLPwBqHTtYHJSmzzd+QeytSugzQ0Vg4c5rDky5VgkoowbZQahCbsv1rT1KW72MPIkevw==", - "cpu": [ - "arm64" - ], - "dev": true, -- "license": "MIT", - "optional": true, - "os": [ - "darwin" -@@ -518,14 +486,13 @@ - } - }, - "node_modules/@esbuild/darwin-x64": { -- "version": "0.25.2", -- "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.25.2.tgz", -- "integrity": "sha512-5eRPrTX7wFyuWe8FqEFPG2cU0+butQQVNcT4sVipqjLYQjjh8a8+vUTfgBKM88ObB85ahsnTwF7PSIt6PG+QkA==", -+ "version": "0.25.8", -+ "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.25.8.tgz", -+ "integrity": "sha512-Vh2gLxxHnuoQ+GjPNvDSDRpoBCUzY4Pu0kBqMBDlK4fuWbKgGtmDIeEC081xi26PPjn+1tct+Bh8FjyLlw1Zlg==", - "cpu": [ - "x64" - ], - "dev": true, -- "license": "MIT", - "optional": true, - "os": [ - "darwin" -@@ -535,14 +502,13 @@ - } - }, - "node_modules/@esbuild/freebsd-arm64": { -- "version": "0.25.2", -- "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.25.2.tgz", -- "integrity": "sha512-mLwm4vXKiQ2UTSX4+ImyiPdiHjiZhIaE9QvC7sw0tZ6HoNMjYAqQpGyui5VRIi5sGd+uWq940gdCbY3VLvsO1w==", -+ "version": "0.25.8", -+ "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.25.8.tgz", -+ "integrity": "sha512-YPJ7hDQ9DnNe5vxOm6jaie9QsTwcKedPvizTVlqWG9GBSq+BuyWEDazlGaDTC5NGU4QJd666V0yqCBL2oWKPfA==", - "cpu": [ - "arm64" - ], - "dev": true, -- "license": "MIT", - "optional": true, - "os": [ - "freebsd" -@@ -552,14 +518,13 @@ - } - }, - "node_modules/@esbuild/freebsd-x64": { -- "version": "0.25.2", -- "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.25.2.tgz", -- "integrity": "sha512-6qyyn6TjayJSwGpm8J9QYYGQcRgc90nmfdUb0O7pp1s4lTY+9D0H9O02v5JqGApUyiHOtkz6+1hZNvNtEhbwRQ==", -+ "version": "0.25.8", -+ "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.25.8.tgz", -+ "integrity": "sha512-MmaEXxQRdXNFsRN/KcIimLnSJrk2r5H8v+WVafRWz5xdSVmWLoITZQXcgehI2ZE6gioE6HirAEToM/RvFBeuhw==", - "cpu": [ - "x64" - ], - "dev": true, -- "license": "MIT", - "optional": true, - "os": [ - "freebsd" -@@ -569,14 +534,13 @@ - } - }, - "node_modules/@esbuild/linux-arm": { -- "version": "0.25.2", -- "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.25.2.tgz", -- "integrity": "sha512-UHBRgJcmjJv5oeQF8EpTRZs/1knq6loLxTsjc3nxO9eXAPDLcWW55flrMVc97qFPbmZP31ta1AZVUKQzKTzb0g==", -+ "version": "0.25.8", -+ "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.25.8.tgz", -+ "integrity": "sha512-FuzEP9BixzZohl1kLf76KEVOsxtIBFwCaLupVuk4eFVnOZfU+Wsn+x5Ryam7nILV2pkq2TqQM9EZPsOBuMC+kg==", - "cpu": [ - "arm" - ], - "dev": true, -- "license": "MIT", - "optional": true, - "os": [ - "linux" -@@ -586,14 +550,13 @@ - } - }, - "node_modules/@esbuild/linux-arm64": { -- "version": "0.25.2", -- "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.25.2.tgz", -- "integrity": "sha512-gq/sjLsOyMT19I8obBISvhoYiZIAaGF8JpeXu1u8yPv8BE5HlWYobmlsfijFIZ9hIVGYkbdFhEqC0NvM4kNO0g==", -+ "version": "0.25.8", -+ "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.25.8.tgz", -+ "integrity": "sha512-WIgg00ARWv/uYLU7lsuDK00d/hHSfES5BzdWAdAig1ioV5kaFNrtK8EqGcUBJhYqotlUByUKz5Qo6u8tt7iD/w==", - "cpu": [ - "arm64" - ], - "dev": true, -- "license": "MIT", - "optional": true, - "os": [ - "linux" -@@ -603,14 +566,13 @@ - } - }, - "node_modules/@esbuild/linux-ia32": { -- "version": "0.25.2", -- "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.25.2.tgz", -- "integrity": "sha512-bBYCv9obgW2cBP+2ZWfjYTU+f5cxRoGGQ5SeDbYdFCAZpYWrfjjfYwvUpP8MlKbP0nwZ5gyOU/0aUzZ5HWPuvQ==", -+ "version": "0.25.8", -+ "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.25.8.tgz", -+ "integrity": "sha512-A1D9YzRX1i+1AJZuFFUMP1E9fMaYY+GnSQil9Tlw05utlE86EKTUA7RjwHDkEitmLYiFsRd9HwKBPEftNdBfjg==", - "cpu": [ - "ia32" - ], - "dev": true, -- "license": "MIT", - "optional": true, - "os": [ - "linux" -@@ -620,14 +582,13 @@ - } - }, - "node_modules/@esbuild/linux-loong64": { -- "version": "0.25.2", -- "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.25.2.tgz", -- "integrity": "sha512-SHNGiKtvnU2dBlM5D8CXRFdd+6etgZ9dXfaPCeJtz+37PIUlixvlIhI23L5khKXs3DIzAn9V8v+qb1TRKrgT5w==", -+ "version": "0.25.8", -+ "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.25.8.tgz", -+ "integrity": "sha512-O7k1J/dwHkY1RMVvglFHl1HzutGEFFZ3kNiDMSOyUrB7WcoHGf96Sh+64nTRT26l3GMbCW01Ekh/ThKM5iI7hQ==", - "cpu": [ - "loong64" - ], - "dev": true, -- "license": "MIT", - "optional": true, - "os": [ - "linux" -@@ -637,14 +598,13 @@ - } - }, - "node_modules/@esbuild/linux-mips64el": { -- "version": "0.25.2", -- "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.25.2.tgz", -- "integrity": "sha512-hDDRlzE6rPeoj+5fsADqdUZl1OzqDYow4TB4Y/3PlKBD0ph1e6uPHzIQcv2Z65u2K0kpeByIyAjCmjn1hJgG0Q==", -+ "version": "0.25.8", -+ "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.25.8.tgz", -+ "integrity": "sha512-uv+dqfRazte3BzfMp8PAQXmdGHQt2oC/y2ovwpTteqrMx2lwaksiFZ/bdkXJC19ttTvNXBuWH53zy/aTj1FgGw==", - "cpu": [ - "mips64el" - ], - "dev": true, -- "license": "MIT", - "optional": true, - "os": [ - "linux" -@@ -654,14 +614,13 @@ - } - }, - "node_modules/@esbuild/linux-ppc64": { -- "version": "0.25.2", -- "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.25.2.tgz", -- "integrity": "sha512-tsHu2RRSWzipmUi9UBDEzc0nLc4HtpZEI5Ba+Omms5456x5WaNuiG3u7xh5AO6sipnJ9r4cRWQB2tUjPyIkc6g==", -+ "version": "0.25.8", -+ "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.25.8.tgz", -+ "integrity": "sha512-GyG0KcMi1GBavP5JgAkkstMGyMholMDybAf8wF5A70CALlDM2p/f7YFE7H92eDeH/VBtFJA5MT4nRPDGg4JuzQ==", - "cpu": [ - "ppc64" - ], - "dev": true, -- "license": "MIT", - "optional": true, - "os": [ - "linux" -@@ -671,14 +630,13 @@ - } - }, - "node_modules/@esbuild/linux-riscv64": { -- "version": "0.25.2", -- "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.25.2.tgz", -- "integrity": "sha512-k4LtpgV7NJQOml/10uPU0s4SAXGnowi5qBSjaLWMojNCUICNu7TshqHLAEbkBdAszL5TabfvQ48kK84hyFzjnw==", -+ "version": "0.25.8", -+ "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.25.8.tgz", -+ "integrity": "sha512-rAqDYFv3yzMrq7GIcen3XP7TUEG/4LK86LUPMIz6RT8A6pRIDn0sDcvjudVZBiiTcZCY9y2SgYX2lgK3AF+1eg==", - "cpu": [ - "riscv64" - ], - "dev": true, -- "license": "MIT", - "optional": true, - "os": [ - "linux" -@@ -688,14 +646,13 @@ - } - }, - "node_modules/@esbuild/linux-s390x": { -- "version": "0.25.2", -- "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.25.2.tgz", -- "integrity": "sha512-GRa4IshOdvKY7M/rDpRR3gkiTNp34M0eLTaC1a08gNrh4u488aPhuZOCpkF6+2wl3zAN7L7XIpOFBhnaE3/Q8Q==", -+ "version": "0.25.8", -+ "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.25.8.tgz", -+ "integrity": "sha512-Xutvh6VjlbcHpsIIbwY8GVRbwoviWT19tFhgdA7DlenLGC/mbc3lBoVb7jxj9Z+eyGqvcnSyIltYUrkKzWqSvg==", - "cpu": [ - "s390x" - ], - "dev": true, -- "license": "MIT", - "optional": true, - "os": [ - "linux" -@@ -705,14 +662,13 @@ - } - }, - "node_modules/@esbuild/linux-x64": { -- "version": "0.25.2", -- "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.25.2.tgz", -- "integrity": "sha512-QInHERlqpTTZ4FRB0fROQWXcYRD64lAoiegezDunLpalZMjcUcld3YzZmVJ2H/Cp0wJRZ8Xtjtj0cEHhYc/uUg==", -+ "version": "0.25.8", -+ "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.25.8.tgz", -+ "integrity": "sha512-ASFQhgY4ElXh3nDcOMTkQero4b1lgubskNlhIfJrsH5OKZXDpUAKBlNS0Kx81jwOBp+HCeZqmoJuihTv57/jvQ==", - "cpu": [ - "x64" - ], - "dev": true, -- "license": "MIT", - "optional": true, - "os": [ - "linux" -@@ -722,14 +678,13 @@ - } - }, - "node_modules/@esbuild/netbsd-arm64": { -- "version": "0.25.2", -- "resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.25.2.tgz", -- "integrity": "sha512-talAIBoY5M8vHc6EeI2WW9d/CkiO9MQJ0IOWX8hrLhxGbro/vBXJvaQXefW2cP0z0nQVTdQ/eNyGFV1GSKrxfw==", -+ "version": "0.25.8", -+ "resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.25.8.tgz", -+ "integrity": "sha512-d1KfruIeohqAi6SA+gENMuObDbEjn22olAR7egqnkCD9DGBG0wsEARotkLgXDu6c4ncgWTZJtN5vcgxzWRMzcw==", - "cpu": [ - "arm64" - ], - "dev": true, -- "license": "MIT", - "optional": true, - "os": [ - "netbsd" -@@ -739,14 +694,13 @@ - } - }, - "node_modules/@esbuild/netbsd-x64": { -- "version": "0.25.2", -- "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.25.2.tgz", -- "integrity": "sha512-voZT9Z+tpOxrvfKFyfDYPc4DO4rk06qamv1a/fkuzHpiVBMOhpjK+vBmWM8J1eiB3OLSMFYNaOaBNLXGChf5tg==", -+ "version": "0.25.8", -+ "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.25.8.tgz", -+ "integrity": "sha512-nVDCkrvx2ua+XQNyfrujIG38+YGyuy2Ru9kKVNyh5jAys6n+l44tTtToqHjino2My8VAY6Lw9H7RI73XFi66Cg==", - "cpu": [ - "x64" - ], - "dev": true, -- "license": "MIT", - "optional": true, - "os": [ - "netbsd" -@@ -756,14 +710,13 @@ - } - }, - "node_modules/@esbuild/openbsd-arm64": { -- "version": "0.25.2", -- "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.25.2.tgz", -- "integrity": "sha512-dcXYOC6NXOqcykeDlwId9kB6OkPUxOEqU+rkrYVqJbK2hagWOMrsTGsMr8+rW02M+d5Op5NNlgMmjzecaRf7Tg==", -+ "version": "0.25.8", -+ "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.25.8.tgz", -+ "integrity": "sha512-j8HgrDuSJFAujkivSMSfPQSAa5Fxbvk4rgNAS5i3K+r8s1X0p1uOO2Hl2xNsGFppOeHOLAVgYwDVlmxhq5h+SQ==", - "cpu": [ - "arm64" - ], - "dev": true, -- "license": "MIT", - "optional": true, - "os": [ - "openbsd" -@@ -773,14 +726,13 @@ - } - }, - "node_modules/@esbuild/openbsd-x64": { -- "version": "0.25.2", -- "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.25.2.tgz", -- "integrity": "sha512-t/TkWwahkH0Tsgoq1Ju7QfgGhArkGLkF1uYz8nQS/PPFlXbP5YgRpqQR3ARRiC2iXoLTWFxc6DJMSK10dVXluw==", -+ "version": "0.25.8", -+ "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.25.8.tgz", -+ "integrity": "sha512-1h8MUAwa0VhNCDp6Af0HToI2TJFAn1uqT9Al6DJVzdIBAd21m/G0Yfc77KDM3uF3T/YaOgQq3qTJHPbTOInaIQ==", - "cpu": [ - "x64" - ], - "dev": true, -- "license": "MIT", - "optional": true, - "os": [ - "openbsd" -@@ -789,15 +741,30 @@ - "node": ">=18" - } - }, -+ "node_modules/@esbuild/openharmony-arm64": { -+ "version": "0.25.8", -+ "resolved": "https://registry.npmjs.org/@esbuild/openharmony-arm64/-/openharmony-arm64-0.25.8.tgz", -+ "integrity": "sha512-r2nVa5SIK9tSWd0kJd9HCffnDHKchTGikb//9c7HX+r+wHYCpQrSgxhlY6KWV1nFo1l4KFbsMlHk+L6fekLsUg==", -+ "cpu": [ -+ "arm64" -+ ], -+ "dev": true, -+ "optional": true, -+ "os": [ -+ "openharmony" -+ ], -+ "engines": { -+ "node": ">=18" -+ } -+ }, - "node_modules/@esbuild/sunos-x64": { -- "version": "0.25.2", -- "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.25.2.tgz", -- "integrity": "sha512-cfZH1co2+imVdWCjd+D1gf9NjkchVhhdpgb1q5y6Hcv9TP6Zi9ZG/beI3ig8TvwT9lH9dlxLq5MQBBgwuj4xvA==", -+ "version": "0.25.8", -+ "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.25.8.tgz", -+ "integrity": "sha512-zUlaP2S12YhQ2UzUfcCuMDHQFJyKABkAjvO5YSndMiIkMimPmxA+BYSBikWgsRpvyxuRnow4nS5NPnf9fpv41w==", - "cpu": [ - "x64" - ], - "dev": true, -- "license": "MIT", - "optional": true, - "os": [ - "sunos" -@@ -807,14 +774,13 @@ - } - }, - "node_modules/@esbuild/win32-arm64": { -- "version": "0.25.2", -- "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.25.2.tgz", -- "integrity": "sha512-7Loyjh+D/Nx/sOTzV8vfbB3GJuHdOQyrOryFdZvPHLf42Tk9ivBU5Aedi7iyX+x6rbn2Mh68T4qq1SDqJBQO5Q==", -+ "version": "0.25.8", -+ "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.25.8.tgz", -+ "integrity": "sha512-YEGFFWESlPva8hGL+zvj2z/SaK+pH0SwOM0Nc/d+rVnW7GSTFlLBGzZkuSU9kFIGIo8q9X3ucpZhu8PDN5A2sQ==", - "cpu": [ - "arm64" - ], - "dev": true, -- "license": "MIT", - "optional": true, - "os": [ - "win32" -@@ -824,14 +790,13 @@ - } - }, - "node_modules/@esbuild/win32-ia32": { -- "version": "0.25.2", -- "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.25.2.tgz", -- "integrity": "sha512-WRJgsz9un0nqZJ4MfhabxaD9Ft8KioqU3JMinOTvobbX6MOSUigSBlogP8QB3uxpJDsFS6yN+3FDBdqE5lg9kg==", -+ "version": "0.25.8", -+ "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.25.8.tgz", -+ "integrity": "sha512-hiGgGC6KZ5LZz58OL/+qVVoZiuZlUYlYHNAmczOm7bs2oE1XriPFi5ZHHrS8ACpV5EjySrnoCKmcbQMN+ojnHg==", - "cpu": [ - "ia32" - ], - "dev": true, -- "license": "MIT", - "optional": true, - "os": [ - "win32" -@@ -841,14 +806,13 @@ - } - }, - "node_modules/@esbuild/win32-x64": { -- "version": "0.25.2", -- "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.25.2.tgz", -- "integrity": "sha512-kM3HKb16VIXZyIeVrM1ygYmZBKybX8N4p754bw390wGO3Tf2j4L2/WYL+4suWujpgf6GBYs3jv7TyUivdd05JA==", -+ "version": "0.25.8", -+ "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.25.8.tgz", -+ "integrity": "sha512-cn3Yr7+OaaZq1c+2pe+8yxC8E144SReCQjN6/2ynubzYjvyqZjTXfQJpAcQpsdJq3My7XADANiYGHoFC69pLQw==", - "cpu": [ - "x64" - ], - "dev": true, -- "license": "MIT", - "optional": true, - "os": [ - "win32" -@@ -858,10 +822,9 @@ - } - }, - "node_modules/@eslint-community/eslint-utils": { -- "version": "4.6.0", -- "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.6.0.tgz", -- "integrity": "sha512-WhCn7Z7TauhBtmzhvKpoQs0Wwb/kBcy4CwpuI0/eEIr2Lx2auxmulAzLr91wVZJaz47iUZdkXOK7WlAfxGKCnA==", -- "license": "MIT", -+ "version": "4.7.0", -+ "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.7.0.tgz", -+ "integrity": "sha512-dyybb3AcajC7uha6CvhdVRJqaKyn7w2YKqKyAN37NKYgZT36w+iRb0Dymmc5qEJ549c/S31cMMSFd75bteCpCw==", - "dependencies": { - "eslint-visitor-keys": "^3.4.3" - }, -@@ -879,16 +842,14 @@ - "version": "4.12.1", - "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.12.1.tgz", - "integrity": "sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==", -- "license": "MIT", - "engines": { - "node": "^12.0.0 || ^14.0.0 || >=16.0.0" - } - }, - "node_modules/@eslint/config-array": { -- "version": "0.20.0", -- "resolved": "https://registry.npmjs.org/@eslint/config-array/-/config-array-0.20.0.tgz", -- "integrity": "sha512-fxlS1kkIjx8+vy2SjuCB94q3htSNrufYTXubwiBFeaQHbH6Ipi43gFJq2zCMt6PHhImH3Xmr0NksKDvchWlpQQ==", -- "license": "Apache-2.0", -+ "version": "0.21.0", -+ "resolved": "https://registry.npmjs.org/@eslint/config-array/-/config-array-0.21.0.tgz", -+ "integrity": "sha512-ENIdc4iLu0d93HeYirvKmrzshzofPw6VkZRKQGe9Nv46ZnWUzcF1xV01dcvEg/1wXUR61OmmlSfyeyO7EvjLxQ==", - "peer": true, - "dependencies": { - "@eslint/object-schema": "^2.1.6", -@@ -900,20 +861,18 @@ - } - }, - "node_modules/@eslint/config-helpers": { -- "version": "0.2.1", -- "resolved": "https://registry.npmjs.org/@eslint/config-helpers/-/config-helpers-0.2.1.tgz", -- "integrity": "sha512-RI17tsD2frtDu/3dmI7QRrD4bedNKPM08ziRYaC5AhkGrzIAJelm9kJU1TznK+apx6V+cqRz8tfpEeG3oIyjxw==", -- "license": "Apache-2.0", -+ "version": "0.3.0", -+ "resolved": "https://registry.npmjs.org/@eslint/config-helpers/-/config-helpers-0.3.0.tgz", -+ "integrity": "sha512-ViuymvFmcJi04qdZeDc2whTHryouGcDlaxPqarTD0ZE10ISpxGUVZGZDx4w01upyIynL3iu6IXH2bS1NhclQMw==", - "peer": true, - "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" - } - }, - "node_modules/@eslint/core": { -- "version": "0.12.0", -- "resolved": "https://registry.npmjs.org/@eslint/core/-/core-0.12.0.tgz", -- "integrity": "sha512-cmrR6pytBuSMTaBweKoGMwu3EiHiEC+DoyupPmlZ0HxBJBtIxwe+j/E4XPIKNx+Q74c8lXKPwYawBf5glsTkHg==", -- "license": "Apache-2.0", -+ "version": "0.15.1", -+ "resolved": "https://registry.npmjs.org/@eslint/core/-/core-0.15.1.tgz", -+ "integrity": "sha512-bkOp+iumZCCbt1K1CmWf0R9pM5yKpDv+ZXtvSyQpudrI9kuFLp+bM2WOPXImuD/ceQuaa8f5pj93Y7zyECIGNA==", - "peer": true, - "dependencies": { - "@types/json-schema": "^7.0.15" -@@ -926,7 +885,6 @@ - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-3.3.1.tgz", - "integrity": "sha512-gtF186CXhIl1p4pJNGZw8Yc6RlshoePRvE0X91oPGb3vZ8pM3qOS9W9NGPat9LziaBV7XrJWGylNQXkGcnM3IQ==", -- "license": "MIT", - "dependencies": { - "ajv": "^6.12.4", - "debug": "^4.3.2", -@@ -946,84 +904,67 @@ - } - }, - "node_modules/@eslint/js": { -- "version": "9.24.0", -- "resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.24.0.tgz", -- "integrity": "sha512-uIY/y3z0uvOGX8cp1C2fiC4+ZmBhp6yZWkojtHL1YEMnRt1Y63HB9TM17proGEmeG7HeUY+UP36F0aknKYTpYA==", -- "license": "MIT", -+ "version": "9.32.0", -+ "resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.32.0.tgz", -+ "integrity": "sha512-BBpRFZK3eX6uMLKz8WxFOBIFFcGFJ/g8XuwjTHCqHROSIsopI+ddn/d5Cfh36+7+e5edVS8dbSHnBNhrLEX0zg==", - "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" -+ }, -+ "funding": { -+ "url": "https://eslint.org/donate" - } - }, - "node_modules/@eslint/object-schema": { - "version": "2.1.6", - "resolved": "https://registry.npmjs.org/@eslint/object-schema/-/object-schema-2.1.6.tgz", - "integrity": "sha512-RBMg5FRL0I0gs51M/guSAj5/e14VQ4tpZnQNWwuDT66P14I43ItmPfIZRhO9fUVIPOAQXU47atlywZ/czoqFPA==", -- "license": "Apache-2.0", - "peer": true, - "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" - } - }, - "node_modules/@eslint/plugin-kit": { -- "version": "0.2.8", -- "resolved": "https://registry.npmjs.org/@eslint/plugin-kit/-/plugin-kit-0.2.8.tgz", -- "integrity": "sha512-ZAoA40rNMPwSm+AeHpCq8STiNAwzWLJuP8Xv4CHIc9wv/PSuExjMrmjfYNj682vW0OOiZ1HKxzvjQr9XZIisQA==", -- "license": "Apache-2.0", -+ "version": "0.3.4", -+ "resolved": "https://registry.npmjs.org/@eslint/plugin-kit/-/plugin-kit-0.3.4.tgz", -+ "integrity": "sha512-Ul5l+lHEcw3L5+k8POx6r74mxEYKG5kOb6Xpy2gCRW6zweT6TEhAf8vhxGgjhqrd/VO/Dirhsb+1hNpD1ue9hw==", - "peer": true, - "dependencies": { -- "@eslint/core": "^0.13.0", -+ "@eslint/core": "^0.15.1", - "levn": "^0.4.1" - }, - "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" - } - }, -- "node_modules/@eslint/plugin-kit/node_modules/@eslint/core": { -- "version": "0.13.0", -- "resolved": "https://registry.npmjs.org/@eslint/core/-/core-0.13.0.tgz", -- "integrity": "sha512-yfkgDw1KR66rkT5A8ci4irzDysN7FRpq3ttJolR88OqQikAWqwA8j5VZyas+vjyBNFIJ7MfybJ9plMILI2UrCw==", -- "license": "Apache-2.0", -- "peer": true, -- "dependencies": { -- "@types/json-schema": "^7.0.15" -- }, -- "engines": { -- "node": "^18.18.0 || ^20.9.0 || >=21.1.0" -- } -- }, - "node_modules/@floating-ui/core": { -- "version": "1.6.9", -- "resolved": "https://registry.npmjs.org/@floating-ui/core/-/core-1.6.9.tgz", -- "integrity": "sha512-uMXCuQ3BItDUbAMhIXw7UPXRfAlOAvZzdK9BWpE60MCn+Svt3aLn9jsPTi/WNGlRUu2uI0v5S7JiIUsbsvh3fw==", -- "license": "MIT", -+ "version": "1.7.3", -+ "resolved": "https://registry.npmjs.org/@floating-ui/core/-/core-1.7.3.tgz", -+ "integrity": "sha512-sGnvb5dmrJaKEZ+LDIpguvdX3bDlEllmv4/ClQ9awcmCZrlx5jQyyMWFM5kBI+EyNOCDDiKk8il0zeuX3Zlg/w==", - "dependencies": { -- "@floating-ui/utils": "^0.2.9" -+ "@floating-ui/utils": "^0.2.10" - } - }, - "node_modules/@floating-ui/dom": { -- "version": "1.6.13", -- "resolved": "https://registry.npmjs.org/@floating-ui/dom/-/dom-1.6.13.tgz", -- "integrity": "sha512-umqzocjDgNRGTuO7Q8CU32dkHkECqI8ZdMZ5Swb6QAM0t5rnlrN3lGo1hdpscRd3WS8T6DKYK4ephgIH9iRh3w==", -- "license": "MIT", -+ "version": "1.7.3", -+ "resolved": "https://registry.npmjs.org/@floating-ui/dom/-/dom-1.7.3.tgz", -+ "integrity": "sha512-uZA413QEpNuhtb3/iIKoYMSK07keHPYeXF02Zhd6e213j+d1NamLix/mCLxBUDW/Gx52sPH2m+chlUsyaBs/Ag==", - "dependencies": { -- "@floating-ui/core": "^1.6.0", -- "@floating-ui/utils": "^0.2.9" -+ "@floating-ui/core": "^1.7.3", -+ "@floating-ui/utils": "^0.2.10" - } - }, - "node_modules/@floating-ui/utils": { -- "version": "0.2.9", -- "resolved": "https://registry.npmjs.org/@floating-ui/utils/-/utils-0.2.9.tgz", -- "integrity": "sha512-MDWhGtE+eHw5JW7lq4qhc5yRLS11ERl1c7Z6Xd0a58DozHES6EnNNwUWbMiG4J9Cgj053Bhk8zvlhFYKVhULwg==", -- "license": "MIT" -+ "version": "0.2.10", -+ "resolved": "https://registry.npmjs.org/@floating-ui/utils/-/utils-0.2.10.tgz", -+ "integrity": "sha512-aGTxbpbg8/b5JfU1HXSrbH3wXZuLPJcNEcZQFMxLs3oSzgtVu6nFPkbbGGUvBcUjKV2YyB9Wxxabo+HEH9tcRQ==" - }, - "node_modules/@floating-ui/vue": { -- "version": "1.1.6", -- "resolved": "https://registry.npmjs.org/@floating-ui/vue/-/vue-1.1.6.tgz", -- "integrity": "sha512-XFlUzGHGv12zbgHNk5FN2mUB7ROul3oG2ENdTpWdE+qMFxyNxWSRmsoyhiEnpmabNm6WnUvR1OvJfUfN4ojC1A==", -- "license": "MIT", -+ "version": "1.1.8", -+ "resolved": "https://registry.npmjs.org/@floating-ui/vue/-/vue-1.1.8.tgz", -+ "integrity": "sha512-SNJAa1jbT8Gh1LvWw2uIIViLL0saV2bCY59ISCvJzhbut5DSb2H3LKUK49Xkd7SixTNHKX4LFu59nbwIXt9jjQ==", - "dependencies": { -- "@floating-ui/dom": "^1.0.0", -- "@floating-ui/utils": "^0.2.9", -+ "@floating-ui/dom": "^1.7.3", -+ "@floating-ui/utils": "^0.2.10", - "vue-demi": ">=0.13.0" - } - }, -@@ -1031,7 +972,6 @@ - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/@heroicons/vue/-/vue-2.2.0.tgz", - "integrity": "sha512-G3dbSxoeEKqbi/DFalhRxJU4mTXJn7GwZ7ae8NuEQzd1bqdd0jAbdaBZlHPcvPD2xI1iGzNVB4k20Un2AguYPw==", -- "license": "MIT", - "peerDependencies": { - "vue": ">= 3" - } -@@ -1040,7 +980,6 @@ - "version": "0.19.1", - "resolved": "https://registry.npmjs.org/@humanfs/core/-/core-0.19.1.tgz", - "integrity": "sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==", -- "license": "Apache-2.0", - "peer": true, - "engines": { - "node": ">=18.18.0" -@@ -1050,7 +989,6 @@ - "version": "0.16.6", - "resolved": "https://registry.npmjs.org/@humanfs/node/-/node-0.16.6.tgz", - "integrity": "sha512-YuI2ZHQL78Q5HbhDiBA1X4LmYdXCKCMQIfw0pw7piHJwyREFebJUvrQN4cMssyES6x+vfUbx1CIpaQUKYdQZOw==", -- "license": "Apache-2.0", - "peer": true, - "dependencies": { - "@humanfs/core": "^0.19.1", -@@ -1064,7 +1002,6 @@ - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.3.1.tgz", - "integrity": "sha512-JBxkERygn7Bv/GbN5Rv8Ul6LVknS+5Bp6RgDC/O8gEBU/yeH5Ui5C/OlWrTb6qct7LjjfT6Re2NxB0ln0yYybA==", -- "license": "Apache-2.0", - "peer": true, - "engines": { - "node": ">=18.18" -@@ -1078,7 +1015,6 @@ - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", - "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", -- "license": "Apache-2.0", - "peer": true, - "engines": { - "node": ">=12.22" -@@ -1089,10 +1025,9 @@ - } - }, - "node_modules/@humanwhocodes/retry": { -- "version": "0.4.2", -- "resolved": "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.4.2.tgz", -- "integrity": "sha512-xeO57FpIu4p1Ri3Jq/EXq4ClRm86dVF2z/+kvFnyqVYRavTZmaFaUBbWCOuuTh0o/g7DSsk6kc2vrS4Vl5oPOQ==", -- "license": "Apache-2.0", -+ "version": "0.4.3", -+ "resolved": "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.4.3.tgz", -+ "integrity": "sha512-bV0Tgo9K4hfPCek+aMAn81RppFKv2ySDQeMoSZuvTASywNTnVJCArCZE2FWqpvIatKu7VMRLWlR1EazvVhDyhQ==", - "peer": true, - "engines": { - "node": ">=18.18" -@@ -1107,7 +1042,6 @@ - "resolved": "https://registry.npmjs.org/@inertiajs/core/-/core-1.3.0.tgz", - "integrity": "sha512-TJ8R1eUYY473m9DaKlCPRdHTdznFWTDuy5VvEzXg3t/hohbDQedLj46yn/uAqziJPEUZJrSftZzPI2NMzL9tQA==", - "dev": true, -- "license": "MIT", - "dependencies": { - "axios": "^1.6.0", - "deepmerge": "^4.0.0", -@@ -1120,7 +1054,6 @@ - "resolved": "https://registry.npmjs.org/@inertiajs/vue3/-/vue3-1.3.0.tgz", - "integrity": "sha512-GizqdCM3u4JWunit3uUbW4fEmTLKQTi1W7VvPRdrNy8XDt4Qy2cCmfFjq+aH5tHBSS3fI/ngYuhN7XvwqNaKvw==", - "dev": true, -- "license": "MIT", - "dependencies": { - "@inertiajs/core": "1.3.0", - "lodash.clonedeep": "^4.5.0", -@@ -1131,19 +1064,17 @@ - } - }, - "node_modules/@internationalized/date": { -- "version": "3.8.0", -- "resolved": "https://registry.npmjs.org/@internationalized/date/-/date-3.8.0.tgz", -- "integrity": "sha512-J51AJ0fEL68hE4CwGPa6E0PO6JDaVLd8aln48xFCSy7CZkZc96dGEGmLs2OEEbBxcsVZtfrqkXJwI2/MSG8yKw==", -- "license": "Apache-2.0", -+ "version": "3.8.2", -+ "resolved": "https://registry.npmjs.org/@internationalized/date/-/date-3.8.2.tgz", -+ "integrity": "sha512-/wENk7CbvLbkUvX1tu0mwq49CVkkWpkXubGel6birjRPyo6uQ4nQpnq5xZu823zRCwwn82zgHrvgF1vZyvmVgA==", - "dependencies": { - "@swc/helpers": "^0.5.0" - } - }, - "node_modules/@internationalized/number": { -- "version": "3.6.1", -- "resolved": "https://registry.npmjs.org/@internationalized/number/-/number-3.6.1.tgz", -- "integrity": "sha512-UVsb4bCwbL944E0SX50CHFtWEeZ2uB5VozZ5yDXJdq6iPZsZO5p+bjVMZh2GxHf4Bs/7xtDCcPwEa2NU9DaG/g==", -- "license": "Apache-2.0", -+ "version": "3.6.4", -+ "resolved": "https://registry.npmjs.org/@internationalized/number/-/number-3.6.4.tgz", -+ "integrity": "sha512-P+/h+RDaiX8EGt3shB9AYM1+QgkvHmJ5rKi4/59k4sg9g58k9rqsRW0WxRO7jCoHyvVbFRRFKmVTdFYdehrxHg==", - "dependencies": { - "@swc/helpers": "^0.5.0" - } -@@ -1152,7 +1083,6 @@ - "version": "8.0.2", - "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", - "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", -- "license": "ISC", - "dependencies": { - "string-width": "^5.1.2", - "string-width-cjs": "npm:string-width@^4.2.0", -@@ -1166,48 +1096,31 @@ - } - }, - "node_modules/@jridgewell/gen-mapping": { -- "version": "0.3.8", -- "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.8.tgz", -- "integrity": "sha512-imAbBGkb+ebQyxKgzv5Hu2nmROxoDOXHh80evxdoXNOrvAnVx7zimzc1Oo5h9RlfV4vPXaE2iM5pOFbvOCClWA==", -- "license": "MIT", -+ "version": "0.3.12", -+ "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.12.tgz", -+ "integrity": "sha512-OuLGC46TjB5BbN1dH8JULVVZY4WTdkF7tV9Ys6wLL1rubZnCMstOhNHueU5bLCrnRuDhKPDM4g6sw4Bel5Gzqg==", - "dependencies": { -- "@jridgewell/set-array": "^1.2.1", -- "@jridgewell/sourcemap-codec": "^1.4.10", -+ "@jridgewell/sourcemap-codec": "^1.5.0", - "@jridgewell/trace-mapping": "^0.3.24" -- }, -- "engines": { -- "node": ">=6.0.0" - } - }, - "node_modules/@jridgewell/resolve-uri": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", - "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", -- "license": "MIT", -- "engines": { -- "node": ">=6.0.0" -- } -- }, -- "node_modules/@jridgewell/set-array": { -- "version": "1.2.1", -- "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz", -- "integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==", -- "license": "MIT", - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@jridgewell/sourcemap-codec": { -- "version": "1.5.0", -- "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz", -- "integrity": "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==", -- "license": "MIT" -+ "version": "1.5.4", -+ "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.4.tgz", -+ "integrity": "sha512-VT2+G1VQs/9oz078bLrYbecdZKs912zQlkelYpuf+SXF+QvZDYJlbx/LSx+meSAwdDFnF8FVXW92AVjjkVmgFw==" - }, - "node_modules/@jridgewell/trace-mapping": { -- "version": "0.3.25", -- "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz", -- "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==", -- "license": "MIT", -+ "version": "0.3.29", -+ "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.29.tgz", -+ "integrity": "sha512-uw6guiW/gcAGPDhLmd77/6lW8QLeiV5RUTsAX46Db6oLhGaVj4lhnPwb184s1bkc8kdVg/+h988dro8GRDpmYQ==", - "dependencies": { - "@jridgewell/resolve-uri": "^3.1.0", - "@jridgewell/sourcemap-codec": "^1.4.14" -@@ -1217,15 +1130,13 @@ - "version": "7.1.3", - "resolved": "https://registry.npmjs.org/@jsdevtools/ono/-/ono-7.1.3.tgz", - "integrity": "sha512-4JQNk+3mVzK3xh2rqd6RB4J46qUR19azEHBneZyTZM+c456qOrbbM/5xcR8huNCCcbVt7+UmizG6GuUvPvKUYg==", -- "dev": true, -- "license": "MIT" -+ "dev": true - }, - "node_modules/@liuli-util/fs-extra": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/@liuli-util/fs-extra/-/fs-extra-0.1.0.tgz", - "integrity": "sha512-eaAyDyMGT23QuRGbITVY3SOJff3G9ekAAyGqB9joAnTBmqvFN+9a1FazOdO70G6IUqgpKV451eBHYSRcOJ/FNQ==", - "dev": true, -- "license": "MIT", - "dependencies": { - "@types/fs-extra": "^9.0.13", - "fs-extra": "^10.1.0" -@@ -1235,7 +1146,6 @@ - "version": "2.1.5", - "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", - "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", -- "license": "MIT", - "dependencies": { - "@nodelib/fs.stat": "2.0.5", - "run-parallel": "^1.1.9" -@@ -1248,7 +1158,6 @@ - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", - "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", -- "license": "MIT", - "engines": { - "node": ">= 8" - } -@@ -1257,7 +1166,6 @@ - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", - "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", -- "license": "MIT", - "dependencies": { - "@nodelib/fs.scandir": "2.1.5", - "fastq": "^1.6.0" -@@ -1270,32 +1178,29 @@ - "version": "0.11.0", - "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", - "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", -- "license": "MIT", - "optional": true, - "engines": { - "node": ">=14" - } - }, - "node_modules/@pkgr/core": { -- "version": "0.2.2", -- "resolved": "https://registry.npmjs.org/@pkgr/core/-/core-0.2.2.tgz", -- "integrity": "sha512-25L86MyPvnlQoX2MTIV2OiUcb6vJ6aRbFa9pbwByn95INKD5mFH2smgjDhq+fwJoqAgvgbdJLj6Tz7V9X5CFAQ==", -- "license": "MIT", -+ "version": "0.2.9", -+ "resolved": "https://registry.npmjs.org/@pkgr/core/-/core-0.2.9.tgz", -+ "integrity": "sha512-QNqXyfVS2wm9hweSYD2O7F0G06uurj9kZ96TRQE5Y9hU7+tgdZwIkbAKc5Ocy1HxEY2kuDQa6cQ1WRs/O5LFKA==", - "engines": { - "node": "^12.20.0 || ^14.18.0 || >=16.0.0" - }, - "funding": { -- "url": "https://opencollective.com/unts" -+ "url": "https://opencollective.com/pkgr" - } - }, - "node_modules/@playwright/test": { -- "version": "1.51.1", -- "resolved": "https://registry.npmjs.org/@playwright/test/-/test-1.51.1.tgz", -- "integrity": "sha512-nM+kEaTSAoVlXmMPH10017vn3FSiFqr/bh4fKg9vmAdMfd9SDqRZNvPSiAHADc/itWak+qPvMPZQOPwCBW7k7Q==", -+ "version": "1.54.2", -+ "resolved": "https://registry.npmjs.org/@playwright/test/-/test-1.54.2.tgz", -+ "integrity": "sha512-A+znathYxPf+72riFd1r1ovOLqsIIB0jKIoPjyK2kqEIe30/6jF6BC7QNluHuwUmsD2tv1XZVugN8GqfTMOxsA==", - "dev": true, -- "license": "Apache-2.0", - "dependencies": { -- "playwright": "1.51.1" -+ "playwright": "1.54.2" - }, - "bin": { - "playwright": "cli.js" -@@ -1305,296 +1210,274 @@ - } - }, - "node_modules/@rollup/rollup-android-arm-eabi": { -- "version": "4.40.0", -- "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.40.0.tgz", -- "integrity": "sha512-+Fbls/diZ0RDerhE8kyC6hjADCXA1K4yVNlH0EYfd2XjyH0UGgzaQ8MlT0pCXAThfxv3QUAczHaL+qSv1E4/Cg==", -+ "version": "4.46.2", -+ "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.46.2.tgz", -+ "integrity": "sha512-Zj3Hl6sN34xJtMv7Anwb5Gu01yujyE/cLBDB2gnHTAHaWS1Z38L7kuSG+oAh0giZMqG060f/YBStXtMH6FvPMA==", - "cpu": [ - "arm" - ], - "dev": true, -- "license": "MIT", - "optional": true, - "os": [ - "android" - ] - }, - "node_modules/@rollup/rollup-android-arm64": { -- "version": "4.40.0", -- "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.40.0.tgz", -- "integrity": "sha512-PPA6aEEsTPRz+/4xxAmaoWDqh67N7wFbgFUJGMnanCFs0TV99M0M8QhhaSCks+n6EbQoFvLQgYOGXxlMGQe/6w==", -+ "version": "4.46.2", -+ "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.46.2.tgz", -+ "integrity": "sha512-nTeCWY83kN64oQ5MGz3CgtPx8NSOhC5lWtsjTs+8JAJNLcP3QbLCtDDgUKQc/Ro/frpMq4SHUaHN6AMltcEoLQ==", - "cpu": [ - "arm64" - ], - "dev": true, -- "license": "MIT", - "optional": true, - "os": [ - "android" - ] - }, - "node_modules/@rollup/rollup-darwin-arm64": { -- "version": "4.40.0", -- "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.40.0.tgz", -- "integrity": "sha512-GwYOcOakYHdfnjjKwqpTGgn5a6cUX7+Ra2HeNj/GdXvO2VJOOXCiYYlRFU4CubFM67EhbmzLOmACKEfvp3J1kQ==", -+ "version": "4.46.2", -+ "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.46.2.tgz", -+ "integrity": "sha512-HV7bW2Fb/F5KPdM/9bApunQh68YVDU8sO8BvcW9OngQVN3HHHkw99wFupuUJfGR9pYLLAjcAOA6iO+evsbBaPQ==", - "cpu": [ - "arm64" - ], - "dev": true, -- "license": "MIT", - "optional": true, - "os": [ - "darwin" - ] - }, - "node_modules/@rollup/rollup-darwin-x64": { -- "version": "4.40.0", -- "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.40.0.tgz", -- "integrity": "sha512-CoLEGJ+2eheqD9KBSxmma6ld01czS52Iw0e2qMZNpPDlf7Z9mj8xmMemxEucinev4LgHalDPczMyxzbq+Q+EtA==", -+ "version": "4.46.2", -+ "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.46.2.tgz", -+ "integrity": "sha512-SSj8TlYV5nJixSsm/y3QXfhspSiLYP11zpfwp6G/YDXctf3Xkdnk4woJIF5VQe0of2OjzTt8EsxnJDCdHd2xMA==", - "cpu": [ - "x64" - ], - "dev": true, -- "license": "MIT", - "optional": true, - "os": [ - "darwin" - ] - }, - "node_modules/@rollup/rollup-freebsd-arm64": { -- "version": "4.40.0", -- "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.40.0.tgz", -- "integrity": "sha512-r7yGiS4HN/kibvESzmrOB/PxKMhPTlz+FcGvoUIKYoTyGd5toHp48g1uZy1o1xQvybwwpqpe010JrcGG2s5nkg==", -+ "version": "4.46.2", -+ "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.46.2.tgz", -+ "integrity": "sha512-ZyrsG4TIT9xnOlLsSSi9w/X29tCbK1yegE49RYm3tu3wF1L/B6LVMqnEWyDB26d9Ecx9zrmXCiPmIabVuLmNSg==", - "cpu": [ - "arm64" - ], - "dev": true, -- "license": "MIT", - "optional": true, - "os": [ - "freebsd" - ] - }, - "node_modules/@rollup/rollup-freebsd-x64": { -- "version": "4.40.0", -- "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.40.0.tgz", -- "integrity": "sha512-mVDxzlf0oLzV3oZOr0SMJ0lSDd3xC4CmnWJ8Val8isp9jRGl5Dq//LLDSPFrasS7pSm6m5xAcKaw3sHXhBjoRw==", -+ "version": "4.46.2", -+ "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.46.2.tgz", -+ "integrity": "sha512-pCgHFoOECwVCJ5GFq8+gR8SBKnMO+xe5UEqbemxBpCKYQddRQMgomv1104RnLSg7nNvgKy05sLsY51+OVRyiVw==", - "cpu": [ - "x64" - ], - "dev": true, -- "license": "MIT", - "optional": true, - "os": [ - "freebsd" - ] - }, - "node_modules/@rollup/rollup-linux-arm-gnueabihf": { -- "version": "4.40.0", -- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.40.0.tgz", -- "integrity": "sha512-y/qUMOpJxBMy8xCXD++jeu8t7kzjlOCkoxxajL58G62PJGBZVl/Gwpm7JK9+YvlB701rcQTzjUZ1JgUoPTnoQA==", -+ "version": "4.46.2", -+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.46.2.tgz", -+ "integrity": "sha512-EtP8aquZ0xQg0ETFcxUbU71MZlHaw9MChwrQzatiE8U/bvi5uv/oChExXC4mWhjiqK7azGJBqU0tt5H123SzVA==", - "cpu": [ - "arm" - ], - "dev": true, -- "license": "MIT", - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@rollup/rollup-linux-arm-musleabihf": { -- "version": "4.40.0", -- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.40.0.tgz", -- "integrity": "sha512-GoCsPibtVdJFPv/BOIvBKO/XmwZLwaNWdyD8TKlXuqp0veo2sHE+A/vpMQ5iSArRUz/uaoj4h5S6Pn0+PdhRjg==", -+ "version": "4.46.2", -+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.46.2.tgz", -+ "integrity": "sha512-qO7F7U3u1nfxYRPM8HqFtLd+raev2K137dsV08q/LRKRLEc7RsiDWihUnrINdsWQxPR9jqZ8DIIZ1zJJAm5PjQ==", - "cpu": [ - "arm" - ], - "dev": true, -- "license": "MIT", - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@rollup/rollup-linux-arm64-gnu": { -- "version": "4.40.0", -- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.40.0.tgz", -- "integrity": "sha512-L5ZLphTjjAD9leJzSLI7rr8fNqJMlGDKlazW2tX4IUF9P7R5TMQPElpH82Q7eNIDQnQlAyiNVfRPfP2vM5Avvg==", -+ "version": "4.46.2", -+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.46.2.tgz", -+ "integrity": "sha512-3dRaqLfcOXYsfvw5xMrxAk9Lb1f395gkoBYzSFcc/scgRFptRXL9DOaDpMiehf9CO8ZDRJW2z45b6fpU5nwjng==", - "cpu": [ - "arm64" - ], - "dev": true, -- "license": "MIT", - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@rollup/rollup-linux-arm64-musl": { -- "version": "4.40.0", -- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.40.0.tgz", -- "integrity": "sha512-ATZvCRGCDtv1Y4gpDIXsS+wfFeFuLwVxyUBSLawjgXK2tRE6fnsQEkE4csQQYWlBlsFztRzCnBvWVfcae/1qxQ==", -+ "version": "4.46.2", -+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.46.2.tgz", -+ "integrity": "sha512-fhHFTutA7SM+IrR6lIfiHskxmpmPTJUXpWIsBXpeEwNgZzZZSg/q4i6FU4J8qOGyJ0TR+wXBwx/L7Ho9z0+uDg==", - "cpu": [ - "arm64" - ], - "dev": true, -- "license": "MIT", - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@rollup/rollup-linux-loongarch64-gnu": { -- "version": "4.40.0", -- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loongarch64-gnu/-/rollup-linux-loongarch64-gnu-4.40.0.tgz", -- "integrity": "sha512-wG9e2XtIhd++QugU5MD9i7OnpaVb08ji3P1y/hNbxrQ3sYEelKJOq1UJ5dXczeo6Hj2rfDEL5GdtkMSVLa/AOg==", -+ "version": "4.46.2", -+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loongarch64-gnu/-/rollup-linux-loongarch64-gnu-4.46.2.tgz", -+ "integrity": "sha512-i7wfGFXu8x4+FRqPymzjD+Hyav8l95UIZ773j7J7zRYc3Xsxy2wIn4x+llpunexXe6laaO72iEjeeGyUFmjKeA==", - "cpu": [ - "loong64" - ], - "dev": true, -- "license": "MIT", - "optional": true, - "os": [ - "linux" - ] - }, -- "node_modules/@rollup/rollup-linux-powerpc64le-gnu": { -- "version": "4.40.0", -- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.40.0.tgz", -- "integrity": "sha512-vgXfWmj0f3jAUvC7TZSU/m/cOE558ILWDzS7jBhiCAFpY2WEBn5jqgbqvmzlMjtp8KlLcBlXVD2mkTSEQE6Ixw==", -+ "node_modules/@rollup/rollup-linux-ppc64-gnu": { -+ "version": "4.46.2", -+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-gnu/-/rollup-linux-ppc64-gnu-4.46.2.tgz", -+ "integrity": "sha512-B/l0dFcHVUnqcGZWKcWBSV2PF01YUt0Rvlurci5P+neqY/yMKchGU8ullZvIv5e8Y1C6wOn+U03mrDylP5q9Yw==", - "cpu": [ - "ppc64" - ], - "dev": true, -- "license": "MIT", - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@rollup/rollup-linux-riscv64-gnu": { -- "version": "4.40.0", -- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.40.0.tgz", -- "integrity": "sha512-uJkYTugqtPZBS3Z136arevt/FsKTF/J9dEMTX/cwR7lsAW4bShzI2R0pJVw+hcBTWF4dxVckYh72Hk3/hWNKvA==", -+ "version": "4.46.2", -+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.46.2.tgz", -+ "integrity": "sha512-32k4ENb5ygtkMwPMucAb8MtV8olkPT03oiTxJbgkJa7lJ7dZMr0GCFJlyvy+K8iq7F/iuOr41ZdUHaOiqyR3iQ==", - "cpu": [ - "riscv64" - ], - "dev": true, -- "license": "MIT", - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@rollup/rollup-linux-riscv64-musl": { -- "version": "4.40.0", -- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.40.0.tgz", -- "integrity": "sha512-rKmSj6EXQRnhSkE22+WvrqOqRtk733x3p5sWpZilhmjnkHkpeCgWsFFo0dGnUGeA+OZjRl3+VYq+HyCOEuwcxQ==", -+ "version": "4.46.2", -+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.46.2.tgz", -+ "integrity": "sha512-t5B2loThlFEauloaQkZg9gxV05BYeITLvLkWOkRXogP4qHXLkWSbSHKM9S6H1schf/0YGP/qNKtiISlxvfmmZw==", - "cpu": [ - "riscv64" - ], - "dev": true, -- "license": "MIT", - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@rollup/rollup-linux-s390x-gnu": { -- "version": "4.40.0", -- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.40.0.tgz", -- "integrity": "sha512-SpnYlAfKPOoVsQqmTFJ0usx0z84bzGOS9anAC0AZ3rdSo3snecihbhFTlJZ8XMwzqAcodjFU4+/SM311dqE5Sw==", -+ "version": "4.46.2", -+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.46.2.tgz", -+ "integrity": "sha512-YKjekwTEKgbB7n17gmODSmJVUIvj8CX7q5442/CK80L8nqOUbMtf8b01QkG3jOqyr1rotrAnW6B/qiHwfcuWQA==", - "cpu": [ - "s390x" - ], - "dev": true, -- "license": "MIT", - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@rollup/rollup-linux-x64-gnu": { -- "version": "4.40.0", -- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.40.0.tgz", -- "integrity": "sha512-RcDGMtqF9EFN8i2RYN2W+64CdHruJ5rPqrlYw+cgM3uOVPSsnAQps7cpjXe9be/yDp8UC7VLoCoKC8J3Kn2FkQ==", -+ "version": "4.46.2", -+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.46.2.tgz", -+ "integrity": "sha512-Jj5a9RUoe5ra+MEyERkDKLwTXVu6s3aACP51nkfnK9wJTraCC8IMe3snOfALkrjTYd2G1ViE1hICj0fZ7ALBPA==", - "cpu": [ - "x64" - ], - "dev": true, -- "license": "MIT", - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@rollup/rollup-linux-x64-musl": { -- "version": "4.40.0", -- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.40.0.tgz", -- "integrity": "sha512-HZvjpiUmSNx5zFgwtQAV1GaGazT2RWvqeDi0hV+AtC8unqqDSsaFjPxfsO6qPtKRRg25SisACWnJ37Yio8ttaw==", -+ "version": "4.46.2", -+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.46.2.tgz", -+ "integrity": "sha512-7kX69DIrBeD7yNp4A5b81izs8BqoZkCIaxQaOpumcJ1S/kmqNFjPhDu1LHeVXv0SexfHQv5cqHsxLOjETuqDuA==", - "cpu": [ - "x64" - ], - "dev": true, -- "license": "MIT", - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@rollup/rollup-win32-arm64-msvc": { -- "version": "4.40.0", -- "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.40.0.tgz", -- "integrity": "sha512-UtZQQI5k/b8d7d3i9AZmA/t+Q4tk3hOC0tMOMSq2GlMYOfxbesxG4mJSeDp0EHs30N9bsfwUvs3zF4v/RzOeTQ==", -+ "version": "4.46.2", -+ "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.46.2.tgz", -+ "integrity": "sha512-wiJWMIpeaak/jsbaq2HMh/rzZxHVW1rU6coyeNNpMwk5isiPjSTx0a4YLSlYDwBH/WBvLz+EtsNqQScZTLJy3g==", - "cpu": [ - "arm64" - ], - "dev": true, -- "license": "MIT", - "optional": true, - "os": [ - "win32" - ] - }, - "node_modules/@rollup/rollup-win32-ia32-msvc": { -- "version": "4.40.0", -- "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.40.0.tgz", -- "integrity": "sha512-+m03kvI2f5syIqHXCZLPVYplP8pQch9JHyXKZ3AGMKlg8dCyr2PKHjwRLiW53LTrN/Nc3EqHOKxUxzoSPdKddA==", -+ "version": "4.46.2", -+ "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.46.2.tgz", -+ "integrity": "sha512-gBgaUDESVzMgWZhcyjfs9QFK16D8K6QZpwAaVNJxYDLHWayOta4ZMjGm/vsAEy3hvlS2GosVFlBlP9/Wb85DqQ==", - "cpu": [ - "ia32" - ], - "dev": true, -- "license": "MIT", - "optional": true, - "os": [ - "win32" - ] - }, - "node_modules/@rollup/rollup-win32-x64-msvc": { -- "version": "4.40.0", -- "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.40.0.tgz", -- "integrity": "sha512-lpPE1cLfP5oPzVjKMx10pgBmKELQnFJXHgvtHCtuJWOv8MxqdEIMNtgHgBFf7Ea2/7EuVwa9fodWUfXAlXZLZQ==", -+ "version": "4.46.2", -+ "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.46.2.tgz", -+ "integrity": "sha512-CvUo2ixeIQGtF6WvuB87XWqPQkoFAFqW+HUo/WzHwuHDvIwZCtjdWXoYCcr06iKGydiqTclC4jU/TNObC/xKZg==", - "cpu": [ - "x64" - ], - "dev": true, -- "license": "MIT", - "optional": true, - "os": [ - "win32" - ] - }, - "node_modules/@rushstack/eslint-patch": { -- "version": "1.11.0", -- "resolved": "https://registry.npmjs.org/@rushstack/eslint-patch/-/eslint-patch-1.11.0.tgz", -- "integrity": "sha512-zxnHvoMQVqewTJr/W4pKjF0bMGiKJv1WX7bSrkl46Hg0QjESbzBROWK0Wg4RphzSOS5Jiy7eFimmM3UgMrMZbQ==", -- "license": "MIT" -+ "version": "1.12.0", -+ "resolved": "https://registry.npmjs.org/@rushstack/eslint-patch/-/eslint-patch-1.12.0.tgz", -+ "integrity": "sha512-5EwMtOqvJMMa3HbmxLlF74e+3/HhwBTMcvt3nqVJgGCozO6hzIPOBlwm8mGVNR9SN2IJpxSnlxczyDjcn7qIyw==" - }, - "node_modules/@swc/helpers": { - "version": "0.5.17", - "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.17.tgz", - "integrity": "sha512-5IKx/Y13RsYd+sauPb2x+U/xZikHjolzfuDgTAl/Tdf3Q8rslRvC19NKDLgAJQ6wsqADk10ntlv08nPFw/gO/A==", -- "license": "Apache-2.0", - "dependencies": { - "tslib": "^2.8.0" - } -@@ -1602,14 +1485,12 @@ - "node_modules/@swc/helpers/node_modules/tslib": { - "version": "2.8.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", -- "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==", -- "license": "0BSD" -+ "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==" - }, - "node_modules/@tailwindcss/container-queries": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/@tailwindcss/container-queries/-/container-queries-0.1.1.tgz", - "integrity": "sha512-p18dswChx6WnTSaJCSGx6lTmrGzNNvm2FtXmiO6AuA1V4U5REyoqwmT6kgAsIMdjo07QdAfYXHJ4hnMtfHzWgA==", -- "license": "MIT", - "peerDependencies": { - "tailwindcss": ">=3.2.0" - } -@@ -1619,7 +1500,6 @@ - "resolved": "https://registry.npmjs.org/@tailwindcss/forms/-/forms-0.5.10.tgz", - "integrity": "sha512-utI1ONF6uf/pPNO68kmN1b8rEwNXv3czukalo8VtJH8ksIkZXr3Q3VYudZLkCsDd4Wku120uF02hYK25XGPorw==", - "dev": true, -- "license": "MIT", - "dependencies": { - "mini-svg-data-uri": "^1.2.3" - }, -@@ -1632,7 +1512,6 @@ - "resolved": "https://registry.npmjs.org/@tailwindcss/typography/-/typography-0.5.16.tgz", - "integrity": "sha512-0wDLwCVF5V3x3b1SGXPCDcdsbDHMBe+lkFzBRaHeLvNi+nrrnZ1lA18u+OTWO8iSWU2GxUOCvlXtDuqftc1oiA==", - "dev": true, -- "license": "MIT", - "dependencies": { - "lodash.castarray": "^4.4.0", - "lodash.isplainobject": "^4.0.6", -@@ -1644,12 +1523,11 @@ - } - }, - "node_modules/@tanstack/form-core": { -- "version": "1.3.2", -- "resolved": "https://registry.npmjs.org/@tanstack/form-core/-/form-core-1.3.2.tgz", -- "integrity": "sha512-hqRLw9EJ8bLJ5zvorGgTI4INcKh1hAtjPRTslwdB529soP8LpguzqWhn7yVV5/c2GcMSlqmpy5NZarkF5Mf54A==", -- "license": "MIT", -+ "version": "1.19.0", -+ "resolved": "https://registry.npmjs.org/@tanstack/form-core/-/form-core-1.19.0.tgz", -+ "integrity": "sha512-LSV1XdQCS+0Xnwtqdcjxe3E9C6HeDdaqGm6krZeJ+OCLESsFqPp/jHyoVf5HLfTEGD16hETgYo+sPxC1cox8uQ==", - "dependencies": { -- "@tanstack/store": "^0.7.0" -+ "@tanstack/store": "^0.7.2" - }, - "funding": { - "type": "github", -@@ -1660,7 +1538,6 @@ - "version": "8.19.4", - "resolved": "https://registry.npmjs.org/@tanstack/match-sorter-utils/-/match-sorter-utils-8.19.4.tgz", - "integrity": "sha512-Wo1iKt2b9OT7d+YGhvEPD3DXvPv2etTusIMhMUoG7fbhmxcXCtIjJDEygy91Y2JFlwGyjqiBPRozme7UD8hoqg==", -- "license": "MIT", - "dependencies": { - "remove-accents": "0.5.0" - }, -@@ -1673,40 +1550,36 @@ - } - }, - "node_modules/@tanstack/query-core": { -- "version": "5.74.0", -- "resolved": "https://registry.npmjs.org/@tanstack/query-core/-/query-core-5.74.0.tgz", -- "integrity": "sha512-kMqBfXA06INskI06rm+abAY3/Vi/Kq1nRNfLbpwuhuMJ5lMAI5qASretlvjEO5OJoze6w7OB3pNvsbztirIWWQ==", -- "license": "MIT", -+ "version": "5.83.1", -+ "resolved": "https://registry.npmjs.org/@tanstack/query-core/-/query-core-5.83.1.tgz", -+ "integrity": "sha512-OG69LQgT7jSp+5pPuCfzltq/+7l2xoweggjme9vlbCPa/d7D7zaqv5vN/S82SzSYZ4EDLTxNO1PWrv49RAS64Q==", - "funding": { - "type": "github", - "url": "https://github.com/sponsors/tannerlinsley" - } - }, - "node_modules/@tanstack/query-devtools": { -- "version": "5.73.3", -- "resolved": "https://registry.npmjs.org/@tanstack/query-devtools/-/query-devtools-5.73.3.tgz", -- "integrity": "sha512-hBQyYwsOuO7QOprK75NzfrWs/EQYjgFA0yykmcvsV62q0t6Ua97CU3sYgjHx0ZvxkXSOMkY24VRJ5uv9f5Ik4w==", -- "license": "MIT", -+ "version": "5.84.0", -+ "resolved": "https://registry.npmjs.org/@tanstack/query-devtools/-/query-devtools-5.84.0.tgz", -+ "integrity": "sha512-fbF3n+z1rqhvd9EoGp5knHkv3p5B2Zml1yNRjh7sNXklngYI5RVIWUrUjZ1RIcEoscarUb0+bOvIs5x9dwzOXQ==", - "funding": { - "type": "github", - "url": "https://github.com/sponsors/tannerlinsley" - } - }, - "node_modules/@tanstack/store": { -- "version": "0.7.0", -- "resolved": "https://registry.npmjs.org/@tanstack/store/-/store-0.7.0.tgz", -- "integrity": "sha512-CNIhdoUsmD2NolYuaIs8VfWM467RK6oIBAW4nPEKZhg1smZ+/CwtCdpURgp7nxSqOaV9oKkzdWD80+bC66F/Jg==", -- "license": "MIT", -+ "version": "0.7.2", -+ "resolved": "https://registry.npmjs.org/@tanstack/store/-/store-0.7.2.tgz", -+ "integrity": "sha512-RP80Z30BYiPX2Pyo0Nyw4s1SJFH2jyM6f9i3HfX4pA+gm5jsnYryscdq2aIQLnL4TaGuQMO+zXmN9nh1Qck+Pg==", - "funding": { - "type": "github", - "url": "https://github.com/sponsors/tannerlinsley" - } - }, - "node_modules/@tanstack/table-core": { -- "version": "8.21.2", -- "resolved": "https://registry.npmjs.org/@tanstack/table-core/-/table-core-8.21.2.tgz", -- "integrity": "sha512-uvXk/U4cBiFMxt+p9/G7yUWI/UbHYbyghLCjlpWZ3mLeIZiUBSKcUnw9UnKkdRz7Z/N4UBuFLWQdJCjUe7HjvA==", -- "license": "MIT", -+ "version": "8.21.3", -+ "resolved": "https://registry.npmjs.org/@tanstack/table-core/-/table-core-8.21.3.tgz", -+ "integrity": "sha512-ldZXEhOBb8Is7xLs01fR3YEc3DERiz5silj8tnGkFZytt1abEvl/GhUmCE0PMLaMPTa3Jk4HbKmRlHmu+gCftg==", - "engines": { - "node": ">=12" - }, -@@ -1716,23 +1589,21 @@ - } - }, - "node_modules/@tanstack/virtual-core": { -- "version": "3.13.6", -- "resolved": "https://registry.npmjs.org/@tanstack/virtual-core/-/virtual-core-3.13.6.tgz", -- "integrity": "sha512-cnQUeWnhNP8tJ4WsGcYiX24Gjkc9ALstLbHcBj1t3E7EimN6n6kHH+DPV4PpDnuw00NApQp+ViojMj1GRdwYQg==", -- "license": "MIT", -+ "version": "3.13.12", -+ "resolved": "https://registry.npmjs.org/@tanstack/virtual-core/-/virtual-core-3.13.12.tgz", -+ "integrity": "sha512-1YBOJfRHV4sXUmWsFSf5rQor4Ss82G8dQWLRbnk3GA4jeP8hQt1hxXh0tmflpC0dz3VgEv/1+qwPyLeWkQuPFA==", - "funding": { - "type": "github", - "url": "https://github.com/sponsors/tannerlinsley" - } - }, - "node_modules/@tanstack/vue-form": { -- "version": "1.3.2", -- "resolved": "https://registry.npmjs.org/@tanstack/vue-form/-/vue-form-1.3.2.tgz", -- "integrity": "sha512-7DIRyhqbY6nDXKlhQo5OyYFzWjvsX8UCLNiUYb6p4x+W32rBMzJgvVobgH0CHftZuTcXZLGU1GXYlqGHpGQi+g==", -- "license": "MIT", -+ "version": "1.19.0", -+ "resolved": "https://registry.npmjs.org/@tanstack/vue-form/-/vue-form-1.19.0.tgz", -+ "integrity": "sha512-PA79upUTyHTByalyWNuoiOn0lICTf+WePPZKGLtRZE1LNTLg4nfcMT2H33hPtSI/DkxBGrwUvWAMONgjqCux5g==", - "dependencies": { -- "@tanstack/form-core": "1.3.2", -- "@tanstack/vue-store": "^0.7.0" -+ "@tanstack/form-core": "1.19.0", -+ "@tanstack/vue-store": "^0.7.3" - }, - "funding": { - "type": "github", -@@ -1743,13 +1614,12 @@ - } - }, - "node_modules/@tanstack/vue-query": { -- "version": "5.74.0", -- "resolved": "https://registry.npmjs.org/@tanstack/vue-query/-/vue-query-5.74.0.tgz", -- "integrity": "sha512-YP6muhx9R9O5jPu3HV1b5fMLf/X+8PJmv1X1iOTdrBr394RVhMxWzTsyTwdrDLs1ydJBfOnop7ZFFCex5LlozA==", -- "license": "MIT", -+ "version": "5.83.1", -+ "resolved": "https://registry.npmjs.org/@tanstack/vue-query/-/vue-query-5.83.1.tgz", -+ "integrity": "sha512-Ss7LJGC2LZMZBsFFnrEfmQYcooDtJOjFZhmnXXUmlawk9EXHHDHUDaH2v7/r9jzyp2nOgABDQlDmjcBLXiyuvQ==", - "dependencies": { - "@tanstack/match-sorter-utils": "^8.19.4", -- "@tanstack/query-core": "5.74.0", -+ "@tanstack/query-core": "5.83.1", - "@vue/devtools-api": "^6.6.3", - "vue-demi": "^0.14.10" - }, -@@ -1768,29 +1638,27 @@ - } - }, - "node_modules/@tanstack/vue-query-devtools": { -- "version": "5.74.0", -- "resolved": "https://registry.npmjs.org/@tanstack/vue-query-devtools/-/vue-query-devtools-5.74.0.tgz", -- "integrity": "sha512-3k3jINbZ22xn0R1dwrutOOB5b88qGf4fTKXmXiVQi98DHCs0g+4w5ItuIxo644eXqc8DWEsFzTxcJ6UFBrwOpg==", -- "license": "MIT", -+ "version": "5.84.0", -+ "resolved": "https://registry.npmjs.org/@tanstack/vue-query-devtools/-/vue-query-devtools-5.84.0.tgz", -+ "integrity": "sha512-RA3bNvaIsFFngycBd7vF/hB4SwvSeTaZ7eiUDnWPbOwg8lxBZrBmF7d4uI3OYQwSmnA2B8tER2UWxkKgqrNFpg==", - "dependencies": { -- "@tanstack/query-devtools": "5.73.3" -+ "@tanstack/query-devtools": "5.84.0" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/tannerlinsley" - }, - "peerDependencies": { -- "@tanstack/vue-query": "^5.74.0", -+ "@tanstack/vue-query": "^5.83.1", - "vue": "^3.3.0" - } - }, - "node_modules/@tanstack/vue-store": { -- "version": "0.7.0", -- "resolved": "https://registry.npmjs.org/@tanstack/vue-store/-/vue-store-0.7.0.tgz", -- "integrity": "sha512-oLB/WuD26caR86rxLz39LvS5YdY0KIThJFEHIW/mXujC2+M/z3GxVZFJsZianAzr3tH56sZQ8kkq4NvwwsOBkQ==", -- "license": "MIT", -+ "version": "0.7.3", -+ "resolved": "https://registry.npmjs.org/@tanstack/vue-store/-/vue-store-0.7.3.tgz", -+ "integrity": "sha512-UExSdMWnuMdOLoGO/1djkV0SS82OEr9iKjnwRyoeRy5UhRsLwKdvqWlin949n2K/KlZqLaws+/oYoxLv/CF7Mg==", - "dependencies": { -- "@tanstack/store": "0.7.0", -+ "@tanstack/store": "0.7.2", - "vue-demi": "^0.14.10" - }, - "funding": { -@@ -1808,12 +1676,11 @@ - } - }, - "node_modules/@tanstack/vue-table": { -- "version": "8.21.2", -- "resolved": "https://registry.npmjs.org/@tanstack/vue-table/-/vue-table-8.21.2.tgz", -- "integrity": "sha512-KBgOWxha/x4m1EdhVWxOpqHb661UjqAxzPcmXR3QiA7aShZ547x19Gw0UJX9we+m+tVcPuLRZ61JsYW47QZFfQ==", -- "license": "MIT", -+ "version": "8.21.3", -+ "resolved": "https://registry.npmjs.org/@tanstack/vue-table/-/vue-table-8.21.3.tgz", -+ "integrity": "sha512-rusRyd77c5tDPloPskctMyPLFEQUeBzxdQ+2Eow4F7gDPlPOB1UnnhzfpdvqZ8ZyX2rRNGmqNnQWm87OI2OQPw==", - "dependencies": { -- "@tanstack/table-core": "8.21.2" -+ "@tanstack/table-core": "8.21.3" - }, - "engines": { - "node": ">=12" -@@ -1827,12 +1694,11 @@ - } - }, - "node_modules/@tanstack/vue-virtual": { -- "version": "3.13.6", -- "resolved": "https://registry.npmjs.org/@tanstack/vue-virtual/-/vue-virtual-3.13.6.tgz", -- "integrity": "sha512-GYdZ3SJBQPzgxhuCE2fvpiH46qzHiVx5XzBSdtESgiqh4poj8UgckjGWYEhxaBbcVt1oLzh1m3Ql4TyH32TOzQ==", -- "license": "MIT", -+ "version": "3.13.12", -+ "resolved": "https://registry.npmjs.org/@tanstack/vue-virtual/-/vue-virtual-3.13.12.tgz", -+ "integrity": "sha512-vhF7kEU9EXWXh+HdAwKJ2m3xaOnTTmgcdXcF2pim8g4GvI7eRrk2YRuV5nUlZnd/NbCIX4/Ja2OZu5EjJL06Ww==", - "dependencies": { -- "@tanstack/virtual-core": "3.13.6" -+ "@tanstack/virtual-core": "3.13.12" - }, - "funding": { - "type": "github", -@@ -1843,17 +1709,15 @@ - } - }, - "node_modules/@types/estree": { -- "version": "1.0.7", -- "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.7.tgz", -- "integrity": "sha512-w28IoSUCJpidD/TGviZwwMJckNESJZXFu7NBZ5YJ4mEUnNraUn9Pm8HSZm/jDF1pDWYKspWE7oVphigUPRakIQ==", -- "license": "MIT" -+ "version": "1.0.8", -+ "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.8.tgz", -+ "integrity": "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==" - }, - "node_modules/@types/fs-extra": { - "version": "9.0.13", - "resolved": "https://registry.npmjs.org/@types/fs-extra/-/fs-extra-9.0.13.tgz", - "integrity": "sha512-nEnwB++1u5lVDM2UI4c1+5R+FYaKfaAzS4OococimjVm3nQw3TuzH5UNsocrcTBbhnerblyHj4A49qXbIiZdpA==", - "dev": true, -- "license": "MIT", - "dependencies": { - "@types/node": "*" - } -@@ -1861,15 +1725,13 @@ - "node_modules/@types/json-schema": { - "version": "7.0.15", - "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz", -- "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==", -- "license": "MIT" -+ "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==" - }, - "node_modules/@types/node": { -- "version": "22.14.1", -- "resolved": "https://registry.npmjs.org/@types/node/-/node-22.14.1.tgz", -- "integrity": "sha512-u0HuPQwe/dHrItgHHpmw3N2fYCR6x4ivMNbPHRkBVP4CvN+kiRrKHWk3i8tXiO/joPwXLMYvF9TTF0eqgHIuOw==", -+ "version": "22.17.0", -+ "resolved": "https://registry.npmjs.org/@types/node/-/node-22.17.0.tgz", -+ "integrity": "sha512-bbAKTCqX5aNVryi7qXVMi+OkB3w/OyblodicMbvE38blyAz7GxXf6XYhklokijuPwwVg9sDLKRxt0ZHXQwZVfQ==", - "dev": true, -- "license": "MIT", - "dependencies": { - "undici-types": "~6.21.0" - } -@@ -1877,24 +1739,22 @@ - "node_modules/@types/web-bluetooth": { - "version": "0.0.21", - "resolved": "https://registry.npmjs.org/@types/web-bluetooth/-/web-bluetooth-0.0.21.tgz", -- "integrity": "sha512-oIQLCGWtcFZy2JW77j9k8nHzAOpqMHLQejDA48XXMWH6tjCQHz5RCFz1bzsmROyL6PUm+LLnUiI4BCn221inxA==", -- "license": "MIT" -+ "integrity": "sha512-oIQLCGWtcFZy2JW77j9k8nHzAOpqMHLQejDA48XXMWH6tjCQHz5RCFz1bzsmROyL6PUm+LLnUiI4BCn221inxA==" - }, - "node_modules/@typescript-eslint/eslint-plugin": { -- "version": "8.29.1", -- "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.29.1.tgz", -- "integrity": "sha512-ba0rr4Wfvg23vERs3eB+P3lfj2E+2g3lhWcCVukUuhtcdUx5lSIFZlGFEBHKr+3zizDa/TvZTptdNHVZWAkSBg==", -- "license": "MIT", -+ "version": "8.39.0", -+ "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.39.0.tgz", -+ "integrity": "sha512-bhEz6OZeUR+O/6yx9Jk6ohX6H9JSFTaiY0v9/PuKT3oGK0rn0jNplLmyFUGV+a9gfYnVNwGDwS/UkLIuXNb2Rw==", - "dependencies": { - "@eslint-community/regexpp": "^4.10.0", -- "@typescript-eslint/scope-manager": "8.29.1", -- "@typescript-eslint/type-utils": "8.29.1", -- "@typescript-eslint/utils": "8.29.1", -- "@typescript-eslint/visitor-keys": "8.29.1", -+ "@typescript-eslint/scope-manager": "8.39.0", -+ "@typescript-eslint/type-utils": "8.39.0", -+ "@typescript-eslint/utils": "8.39.0", -+ "@typescript-eslint/visitor-keys": "8.39.0", - "graphemer": "^1.4.0", -- "ignore": "^5.3.1", -+ "ignore": "^7.0.0", - "natural-compare": "^1.4.0", -- "ts-api-utils": "^2.0.1" -+ "ts-api-utils": "^2.1.0" - }, - "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" -@@ -1904,21 +1764,28 @@ - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependencies": { -- "@typescript-eslint/parser": "^8.0.0 || ^8.0.0-alpha.0", -+ "@typescript-eslint/parser": "^8.39.0", - "eslint": "^8.57.0 || ^9.0.0", -- "typescript": ">=4.8.4 <5.9.0" -+ "typescript": ">=4.8.4 <6.0.0" -+ } -+ }, -+ "node_modules/@typescript-eslint/eslint-plugin/node_modules/ignore": { -+ "version": "7.0.5", -+ "resolved": "https://registry.npmjs.org/ignore/-/ignore-7.0.5.tgz", -+ "integrity": "sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg==", -+ "engines": { -+ "node": ">= 4" - } - }, - "node_modules/@typescript-eslint/parser": { -- "version": "8.29.1", -- "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.29.1.tgz", -- "integrity": "sha512-zczrHVEqEaTwh12gWBIJWj8nx+ayDcCJs06yoNMY0kwjMWDM6+kppljY+BxWI06d2Ja+h4+WdufDcwMnnMEWmg==", -- "license": "MIT", -- "dependencies": { -- "@typescript-eslint/scope-manager": "8.29.1", -- "@typescript-eslint/types": "8.29.1", -- "@typescript-eslint/typescript-estree": "8.29.1", -- "@typescript-eslint/visitor-keys": "8.29.1", -+ "version": "8.39.0", -+ "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.39.0.tgz", -+ "integrity": "sha512-g3WpVQHngx0aLXn6kfIYCZxM6rRJlWzEkVpqEFLT3SgEDsp9cpCbxxgwnE504q4H+ruSDh/VGS6nqZIDynP+vg==", -+ "dependencies": { -+ "@typescript-eslint/scope-manager": "8.39.0", -+ "@typescript-eslint/types": "8.39.0", -+ "@typescript-eslint/typescript-estree": "8.39.0", -+ "@typescript-eslint/visitor-keys": "8.39.0", - "debug": "^4.3.4" - }, - "engines": { -@@ -1930,17 +1797,36 @@ - }, - "peerDependencies": { - "eslint": "^8.57.0 || ^9.0.0", -- "typescript": ">=4.8.4 <5.9.0" -+ "typescript": ">=4.8.4 <6.0.0" -+ } -+ }, -+ "node_modules/@typescript-eslint/project-service": { -+ "version": "8.39.0", -+ "resolved": "https://registry.npmjs.org/@typescript-eslint/project-service/-/project-service-8.39.0.tgz", -+ "integrity": "sha512-CTzJqaSq30V/Z2Og9jogzZt8lJRR5TKlAdXmWgdu4hgcC9Kww5flQ+xFvMxIBWVNdxJO7OifgdOK4PokMIWPew==", -+ "dependencies": { -+ "@typescript-eslint/tsconfig-utils": "^8.39.0", -+ "@typescript-eslint/types": "^8.39.0", -+ "debug": "^4.3.4" -+ }, -+ "engines": { -+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0" -+ }, -+ "funding": { -+ "type": "opencollective", -+ "url": "https://opencollective.com/typescript-eslint" -+ }, -+ "peerDependencies": { -+ "typescript": ">=4.8.4 <6.0.0" - } - }, - "node_modules/@typescript-eslint/scope-manager": { -- "version": "8.29.1", -- "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.29.1.tgz", -- "integrity": "sha512-2nggXGX5F3YrsGN08pw4XpMLO1Rgtnn4AzTegC2MDesv6q3QaTU5yU7IbS1tf1IwCR0Hv/1EFygLn9ms6LIpDA==", -- "license": "MIT", -+ "version": "8.39.0", -+ "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.39.0.tgz", -+ "integrity": "sha512-8QOzff9UKxOh6npZQ/4FQu4mjdOCGSdO3p44ww0hk8Vu+IGbg0tB/H1LcTARRDzGCC8pDGbh2rissBuuoPgH8A==", - "dependencies": { -- "@typescript-eslint/types": "8.29.1", -- "@typescript-eslint/visitor-keys": "8.29.1" -+ "@typescript-eslint/types": "8.39.0", -+ "@typescript-eslint/visitor-keys": "8.39.0" - }, - "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" -@@ -1950,16 +1836,31 @@ - "url": "https://opencollective.com/typescript-eslint" - } - }, -+ "node_modules/@typescript-eslint/tsconfig-utils": { -+ "version": "8.39.0", -+ "resolved": "https://registry.npmjs.org/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.39.0.tgz", -+ "integrity": "sha512-Fd3/QjmFV2sKmvv3Mrj8r6N8CryYiCS8Wdb/6/rgOXAWGcFuc+VkQuG28uk/4kVNVZBQuuDHEDUpo/pQ32zsIQ==", -+ "engines": { -+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0" -+ }, -+ "funding": { -+ "type": "opencollective", -+ "url": "https://opencollective.com/typescript-eslint" -+ }, -+ "peerDependencies": { -+ "typescript": ">=4.8.4 <6.0.0" -+ } -+ }, - "node_modules/@typescript-eslint/type-utils": { -- "version": "8.29.1", -- "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.29.1.tgz", -- "integrity": "sha512-DkDUSDwZVCYN71xA4wzySqqcZsHKic53A4BLqmrWFFpOpNSoxX233lwGu/2135ymTCR04PoKiEEEvN1gFYg4Tw==", -- "license": "MIT", -+ "version": "8.39.0", -+ "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.39.0.tgz", -+ "integrity": "sha512-6B3z0c1DXVT2vYA9+z9axjtc09rqKUPRmijD5m9iv8iQpHBRYRMBcgxSiKTZKm6FwWw1/cI4v6em35OsKCiN5Q==", - "dependencies": { -- "@typescript-eslint/typescript-estree": "8.29.1", -- "@typescript-eslint/utils": "8.29.1", -+ "@typescript-eslint/types": "8.39.0", -+ "@typescript-eslint/typescript-estree": "8.39.0", -+ "@typescript-eslint/utils": "8.39.0", - "debug": "^4.3.4", -- "ts-api-utils": "^2.0.1" -+ "ts-api-utils": "^2.1.0" - }, - "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" -@@ -1970,14 +1871,13 @@ - }, - "peerDependencies": { - "eslint": "^8.57.0 || ^9.0.0", -- "typescript": ">=4.8.4 <5.9.0" -+ "typescript": ">=4.8.4 <6.0.0" - } - }, - "node_modules/@typescript-eslint/types": { -- "version": "8.29.1", -- "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.29.1.tgz", -- "integrity": "sha512-VT7T1PuJF1hpYC3AGm2rCgJBjHL3nc+A/bhOp9sGMKfi5v0WufsX/sHCFBfNTx2F+zA6qBc/PD0/kLRLjdt8mQ==", -- "license": "MIT", -+ "version": "8.39.0", -+ "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.39.0.tgz", -+ "integrity": "sha512-ArDdaOllnCj3yn/lzKn9s0pBQYmmyme/v1HbGIGB0GB/knFI3fWMHloC+oYTJW46tVbYnGKTMDK4ah1sC2v0Kg==", - "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" - }, -@@ -1987,19 +1887,20 @@ - } - }, - "node_modules/@typescript-eslint/typescript-estree": { -- "version": "8.29.1", -- "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.29.1.tgz", -- "integrity": "sha512-l1enRoSaUkQxOQnbi0KPUtqeZkSiFlqrx9/3ns2rEDhGKfTa+88RmXqedC1zmVTOWrLc2e6DEJrTA51C9iLH5g==", -- "license": "MIT", -- "dependencies": { -- "@typescript-eslint/types": "8.29.1", -- "@typescript-eslint/visitor-keys": "8.29.1", -+ "version": "8.39.0", -+ "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.39.0.tgz", -+ "integrity": "sha512-ndWdiflRMvfIgQRpckQQLiB5qAKQ7w++V4LlCHwp62eym1HLB/kw7D9f2e8ytONls/jt89TEasgvb+VwnRprsw==", -+ "dependencies": { -+ "@typescript-eslint/project-service": "8.39.0", -+ "@typescript-eslint/tsconfig-utils": "8.39.0", -+ "@typescript-eslint/types": "8.39.0", -+ "@typescript-eslint/visitor-keys": "8.39.0", - "debug": "^4.3.4", - "fast-glob": "^3.3.2", - "is-glob": "^4.0.3", - "minimatch": "^9.0.4", - "semver": "^7.6.0", -- "ts-api-utils": "^2.0.1" -+ "ts-api-utils": "^2.1.0" - }, - "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" -@@ -2009,14 +1910,13 @@ - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependencies": { -- "typescript": ">=4.8.4 <5.9.0" -+ "typescript": ">=4.8.4 <6.0.0" - } - }, - "node_modules/@typescript-eslint/typescript-estree/node_modules/brace-expansion": { -- "version": "2.0.1", -- "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", -- "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", -- "license": "MIT", -+ "version": "2.0.2", -+ "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.2.tgz", -+ "integrity": "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==", - "dependencies": { - "balanced-match": "^1.0.0" - } -@@ -2025,7 +1925,6 @@ - "version": "9.0.5", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", - "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", -- "license": "ISC", - "dependencies": { - "brace-expansion": "^2.0.1" - }, -@@ -2037,15 +1936,14 @@ - } - }, - "node_modules/@typescript-eslint/utils": { -- "version": "8.29.1", -- "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.29.1.tgz", -- "integrity": "sha512-QAkFEbytSaB8wnmB+DflhUPz6CLbFWE2SnSCrRMEa+KnXIzDYbpsn++1HGvnfAsUY44doDXmvRkO5shlM/3UfA==", -- "license": "MIT", -+ "version": "8.39.0", -+ "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.39.0.tgz", -+ "integrity": "sha512-4GVSvNA0Vx1Ktwvf4sFE+exxJ3QGUorQG1/A5mRfRNZtkBT2xrA/BCO2H0eALx/PnvCS6/vmYwRdDA41EoffkQ==", - "dependencies": { -- "@eslint-community/eslint-utils": "^4.4.0", -- "@typescript-eslint/scope-manager": "8.29.1", -- "@typescript-eslint/types": "8.29.1", -- "@typescript-eslint/typescript-estree": "8.29.1" -+ "@eslint-community/eslint-utils": "^4.7.0", -+ "@typescript-eslint/scope-manager": "8.39.0", -+ "@typescript-eslint/types": "8.39.0", -+ "@typescript-eslint/typescript-estree": "8.39.0" - }, - "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" -@@ -2056,17 +1954,16 @@ - }, - "peerDependencies": { - "eslint": "^8.57.0 || ^9.0.0", -- "typescript": ">=4.8.4 <5.9.0" -+ "typescript": ">=4.8.4 <6.0.0" - } - }, - "node_modules/@typescript-eslint/visitor-keys": { -- "version": "8.29.1", -- "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.29.1.tgz", -- "integrity": "sha512-RGLh5CRaUEf02viP5c1Vh1cMGffQscyHe7HPAzGpfmfflFg1wUz2rYxd+OZqwpeypYvZ8UxSxuIpF++fmOzEcg==", -- "license": "MIT", -+ "version": "8.39.0", -+ "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.39.0.tgz", -+ "integrity": "sha512-ldgiJ+VAhQCfIjeOgu8Kj5nSxds0ktPOSO9p4+0VDH2R2pLvQraaM5Oen2d7NxzMCm+Sn/vJT+mv2H5u6b/3fA==", - "dependencies": { -- "@typescript-eslint/types": "8.29.1", -- "eslint-visitor-keys": "^4.2.0" -+ "@typescript-eslint/types": "8.39.0", -+ "eslint-visitor-keys": "^4.2.1" - }, - "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" -@@ -2077,10 +1974,9 @@ - } - }, - "node_modules/@typescript-eslint/visitor-keys/node_modules/eslint-visitor-keys": { -- "version": "4.2.0", -- "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.2.0.tgz", -- "integrity": "sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==", -- "license": "Apache-2.0", -+ "version": "4.2.1", -+ "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.2.1.tgz", -+ "integrity": "sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==", - "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" - }, -@@ -2089,11 +1985,10 @@ - } - }, - "node_modules/@vitejs/plugin-vue": { -- "version": "5.2.3", -- "resolved": "https://registry.npmjs.org/@vitejs/plugin-vue/-/plugin-vue-5.2.3.tgz", -- "integrity": "sha512-IYSLEQj4LgZZuoVpdSUCw3dIynTWQgPlaRP6iAvMle4My0HdYwr5g5wQAfwOeHQBmYwEkqF70nRpSilr6PoUDg==", -+ "version": "5.2.4", -+ "resolved": "https://registry.npmjs.org/@vitejs/plugin-vue/-/plugin-vue-5.2.4.tgz", -+ "integrity": "sha512-7Yx/SXSOcQq5HiiV3orevHUFn+pmMB4cgbEkDYgnkUWb0WfeQ/wa2yFv6D5ICiCQOVpjA7vYDXrC7AGO8yjDHA==", - "dev": true, -- "license": "MIT", - "engines": { - "node": "^18.0.0 || >=20.0.0" - }, -@@ -2103,82 +1998,75 @@ - } - }, - "node_modules/@volar/language-core": { -- "version": "2.4.12", -- "resolved": "https://registry.npmjs.org/@volar/language-core/-/language-core-2.4.12.tgz", -- "integrity": "sha512-RLrFdXEaQBWfSnYGVxvR2WrO6Bub0unkdHYIdC31HzIEqATIuuhRRzYu76iGPZ6OtA4Au1SnW0ZwIqPP217YhA==", -+ "version": "2.4.15", -+ "resolved": "https://registry.npmjs.org/@volar/language-core/-/language-core-2.4.15.tgz", -+ "integrity": "sha512-3VHw+QZU0ZG9IuQmzT68IyN4hZNd9GchGPhbD9+pa8CVv7rnoOZwo7T8weIbrRmihqy3ATpdfXFnqRrfPVK6CA==", - "dev": true, -- "license": "MIT", - "dependencies": { -- "@volar/source-map": "2.4.12" -+ "@volar/source-map": "2.4.15" - } - }, - "node_modules/@volar/source-map": { -- "version": "2.4.12", -- "resolved": "https://registry.npmjs.org/@volar/source-map/-/source-map-2.4.12.tgz", -- "integrity": "sha512-bUFIKvn2U0AWojOaqf63ER0N/iHIBYZPpNGogfLPQ68F5Eet6FnLlyho7BS0y2HJ1jFhSif7AcuTx1TqsCzRzw==", -- "dev": true, -- "license": "MIT" -+ "version": "2.4.15", -+ "resolved": "https://registry.npmjs.org/@volar/source-map/-/source-map-2.4.15.tgz", -+ "integrity": "sha512-CPbMWlUN6hVZJYGcU/GSoHu4EnCHiLaXI9n8c9la6RaI9W5JHX+NqG+GSQcB0JdC2FIBLdZJwGsfKyBB71VlTg==", -+ "dev": true - }, - "node_modules/@volar/typescript": { -- "version": "2.4.12", -- "resolved": "https://registry.npmjs.org/@volar/typescript/-/typescript-2.4.12.tgz", -- "integrity": "sha512-HJB73OTJDgPc80K30wxi3if4fSsZZAOScbj2fcicMuOPoOkcf9NNAINb33o+DzhBdF9xTKC1gnPmIRDous5S0g==", -+ "version": "2.4.15", -+ "resolved": "https://registry.npmjs.org/@volar/typescript/-/typescript-2.4.15.tgz", -+ "integrity": "sha512-2aZ8i0cqPGjXb4BhkMsPYDkkuc2ZQ6yOpqwAuNwUoncELqoy5fRgOQtLR9gB0g902iS0NAkvpIzs27geVyVdPg==", - "dev": true, -- "license": "MIT", - "dependencies": { -- "@volar/language-core": "2.4.12", -+ "@volar/language-core": "2.4.15", - "path-browserify": "^1.0.1", - "vscode-uri": "^3.0.8" - } - }, - "node_modules/@vue/compiler-core": { -- "version": "3.5.13", -- "resolved": "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.5.13.tgz", -- "integrity": "sha512-oOdAkwqUfW1WqpwSYJce06wvt6HljgY3fGeM9NcVA1HaYOij3mZG9Rkysn0OHuyUAGMbEbARIpsG+LPVlBJ5/Q==", -- "license": "MIT", -+ "version": "3.5.18", -+ "resolved": "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.5.18.tgz", -+ "integrity": "sha512-3slwjQrrV1TO8MoXgy3aynDQ7lslj5UqDxuHnrzHtpON5CBinhWjJETciPngpin/T3OuW3tXUf86tEurusnztw==", - "dependencies": { -- "@babel/parser": "^7.25.3", -- "@vue/shared": "3.5.13", -+ "@babel/parser": "^7.28.0", -+ "@vue/shared": "3.5.18", - "entities": "^4.5.0", - "estree-walker": "^2.0.2", -- "source-map-js": "^1.2.0" -+ "source-map-js": "^1.2.1" - } - }, - "node_modules/@vue/compiler-dom": { -- "version": "3.5.13", -- "resolved": "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.5.13.tgz", -- "integrity": "sha512-ZOJ46sMOKUjO3e94wPdCzQ6P1Lx/vhp2RSvfaab88Ajexs0AHeV0uasYhi99WPaogmBlRHNRuly8xV75cNTMDA==", -- "license": "MIT", -+ "version": "3.5.18", -+ "resolved": "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.5.18.tgz", -+ "integrity": "sha512-RMbU6NTU70++B1JyVJbNbeFkK+A+Q7y9XKE2EM4NLGm2WFR8x9MbAtWxPPLdm0wUkuZv9trpwfSlL6tjdIa1+A==", - "dependencies": { -- "@vue/compiler-core": "3.5.13", -- "@vue/shared": "3.5.13" -+ "@vue/compiler-core": "3.5.18", -+ "@vue/shared": "3.5.18" - } - }, - "node_modules/@vue/compiler-sfc": { -- "version": "3.5.13", -- "resolved": "https://registry.npmjs.org/@vue/compiler-sfc/-/compiler-sfc-3.5.13.tgz", -- "integrity": "sha512-6VdaljMpD82w6c2749Zhf5T9u5uLBWKnVue6XWxprDobftnletJ8+oel7sexFfM3qIxNmVE7LSFGTpv6obNyaQ==", -- "license": "MIT", -- "dependencies": { -- "@babel/parser": "^7.25.3", -- "@vue/compiler-core": "3.5.13", -- "@vue/compiler-dom": "3.5.13", -- "@vue/compiler-ssr": "3.5.13", -- "@vue/shared": "3.5.13", -+ "version": "3.5.18", -+ "resolved": "https://registry.npmjs.org/@vue/compiler-sfc/-/compiler-sfc-3.5.18.tgz", -+ "integrity": "sha512-5aBjvGqsWs+MoxswZPoTB9nSDb3dhd1x30xrrltKujlCxo48j8HGDNj3QPhF4VIS0VQDUrA1xUfp2hEa+FNyXA==", -+ "dependencies": { -+ "@babel/parser": "^7.28.0", -+ "@vue/compiler-core": "3.5.18", -+ "@vue/compiler-dom": "3.5.18", -+ "@vue/compiler-ssr": "3.5.18", -+ "@vue/shared": "3.5.18", - "estree-walker": "^2.0.2", -- "magic-string": "^0.30.11", -- "postcss": "^8.4.48", -- "source-map-js": "^1.2.0" -+ "magic-string": "^0.30.17", -+ "postcss": "^8.5.6", -+ "source-map-js": "^1.2.1" - } - }, - "node_modules/@vue/compiler-ssr": { -- "version": "3.5.13", -- "resolved": "https://registry.npmjs.org/@vue/compiler-ssr/-/compiler-ssr-3.5.13.tgz", -- "integrity": "sha512-wMH6vrYHxQl/IybKJagqbquvxpWCuVYpoUJfCqFZwa/JY1GdATAQ+TgVtgrwwMZ0D07QhA99rs/EAAWfvG6KpA==", -- "license": "MIT", -+ "version": "3.5.18", -+ "resolved": "https://registry.npmjs.org/@vue/compiler-ssr/-/compiler-ssr-3.5.18.tgz", -+ "integrity": "sha512-xM16Ak7rSWHkM3m22NlmcdIM+K4BMyFARAfV9hYFl+SFuRzrZ3uGMNW05kA5pmeMa0X9X963Kgou7ufdbpOP9g==", - "dependencies": { -- "@vue/compiler-dom": "3.5.13", -- "@vue/shared": "3.5.13" -+ "@vue/compiler-dom": "3.5.18", -+ "@vue/shared": "3.5.18" - } - }, - "node_modules/@vue/compiler-vue2": { -@@ -2186,7 +2074,6 @@ - "resolved": "https://registry.npmjs.org/@vue/compiler-vue2/-/compiler-vue2-2.7.16.tgz", - "integrity": "sha512-qYC3Psj9S/mfu9uVi5WvNZIzq+xnXMhOwbTFKKDD7b1lhpnn71jXSFdTQ+WsIEk0ONCd7VV2IMm7ONl6tbQ86A==", - "dev": true, -- "license": "MIT", - "dependencies": { - "de-indent": "^1.0.2", - "he": "^1.2.0" -@@ -2195,14 +2082,12 @@ - "node_modules/@vue/devtools-api": { - "version": "6.6.4", - "resolved": "https://registry.npmjs.org/@vue/devtools-api/-/devtools-api-6.6.4.tgz", -- "integrity": "sha512-sGhTPMuXqZ1rVOk32RylztWkfXTRhuS7vgAKv0zjqk8gbsHkJ7xfFf+jbySxt7tWObEJwyKaHMikV/WGDiQm8g==", -- "license": "MIT" -+ "integrity": "sha512-sGhTPMuXqZ1rVOk32RylztWkfXTRhuS7vgAKv0zjqk8gbsHkJ7xfFf+jbySxt7tWObEJwyKaHMikV/WGDiQm8g==" - }, - "node_modules/@vue/eslint-config-prettier": { - "version": "10.2.0", - "resolved": "https://registry.npmjs.org/@vue/eslint-config-prettier/-/eslint-config-prettier-10.2.0.tgz", - "integrity": "sha512-GL3YBLwv/+b86yHcNNfPJxOTtVFJ4Mbc9UU3zR+KVoG7SwGTjPT+32fXamscNumElhcpXW3mT0DgzS9w32S7Bw==", -- "license": "MIT", - "dependencies": { - "eslint-config-prettier": "^10.0.1", - "eslint-plugin-prettier": "^5.2.2" -@@ -2213,15 +2098,14 @@ - } - }, - "node_modules/@vue/eslint-config-typescript": { -- "version": "14.5.0", -- "resolved": "https://registry.npmjs.org/@vue/eslint-config-typescript/-/eslint-config-typescript-14.5.0.tgz", -- "integrity": "sha512-5oPOyuwkw++AP5gHDh5YFmST50dPfWOcm3/W7Nbh42IK5O3H74ytWAw0TrCRTaBoD/02khnWXuZf1Bz1xflavQ==", -- "license": "MIT", -+ "version": "14.6.0", -+ "resolved": "https://registry.npmjs.org/@vue/eslint-config-typescript/-/eslint-config-typescript-14.6.0.tgz", -+ "integrity": "sha512-UpiRY/7go4Yps4mYCjkvlIbVWmn9YvPGQDxTAlcKLphyaD77LjIu3plH4Y9zNT0GB4f3K5tMmhhtRhPOgrQ/bQ==", - "dependencies": { -- "@typescript-eslint/utils": "^8.26.0", -+ "@typescript-eslint/utils": "^8.35.1", - "fast-glob": "^3.3.3", -- "typescript-eslint": "^8.26.0", -- "vue-eslint-parser": "^10.1.1" -+ "typescript-eslint": "^8.35.1", -+ "vue-eslint-parser": "^10.2.0" - }, - "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" -@@ -2238,13 +2122,12 @@ - } - }, - "node_modules/@vue/language-core": { -- "version": "2.2.8", -- "resolved": "https://registry.npmjs.org/@vue/language-core/-/language-core-2.2.8.tgz", -- "integrity": "sha512-rrzB0wPGBvcwaSNRriVWdNAbHQWSf0NlGqgKHK5mEkXpefjUlVRP62u03KvwZpvKVjRnBIQ/Lwre+Mx9N6juUQ==", -+ "version": "2.2.12", -+ "resolved": "https://registry.npmjs.org/@vue/language-core/-/language-core-2.2.12.tgz", -+ "integrity": "sha512-IsGljWbKGU1MZpBPN+BvPAdr55YPkj2nB/TBNGNC32Vy2qLG25DYu/NBN2vNtZqdRbTRjaoYrahLrToim2NanA==", - "dev": true, -- "license": "MIT", - "dependencies": { -- "@volar/language-core": "~2.4.11", -+ "@volar/language-core": "2.4.15", - "@vue/compiler-dom": "^3.5.0", - "@vue/compiler-vue2": "^2.7.16", - "@vue/shared": "^3.5.0", -@@ -2263,11 +2146,10 @@ - } - }, - "node_modules/@vue/language-core/node_modules/brace-expansion": { -- "version": "2.0.1", -- "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", -- "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", -+ "version": "2.0.2", -+ "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.2.tgz", -+ "integrity": "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==", - "dev": true, -- "license": "MIT", - "dependencies": { - "balanced-match": "^1.0.0" - } -@@ -2277,7 +2159,6 @@ - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", - "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", - "dev": true, -- "license": "ISC", - "dependencies": { - "brace-expansion": "^2.0.1" - }, -@@ -2289,67 +2170,60 @@ - } - }, - "node_modules/@vue/reactivity": { -- "version": "3.5.13", -- "resolved": "https://registry.npmjs.org/@vue/reactivity/-/reactivity-3.5.13.tgz", -- "integrity": "sha512-NaCwtw8o48B9I6L1zl2p41OHo/2Z4wqYGGIK1Khu5T7yxrn+ATOixn/Udn2m+6kZKB/J7cuT9DbWWhRxqixACg==", -- "license": "MIT", -+ "version": "3.5.18", -+ "resolved": "https://registry.npmjs.org/@vue/reactivity/-/reactivity-3.5.18.tgz", -+ "integrity": "sha512-x0vPO5Imw+3sChLM5Y+B6G1zPjwdOri9e8V21NnTnlEvkxatHEH5B5KEAJcjuzQ7BsjGrKtfzuQ5eQwXh8HXBg==", - "dependencies": { -- "@vue/shared": "3.5.13" -+ "@vue/shared": "3.5.18" - } - }, - "node_modules/@vue/runtime-core": { -- "version": "3.5.13", -- "resolved": "https://registry.npmjs.org/@vue/runtime-core/-/runtime-core-3.5.13.tgz", -- "integrity": "sha512-Fj4YRQ3Az0WTZw1sFe+QDb0aXCerigEpw418pw1HBUKFtnQHWzwojaukAs2X/c9DQz4MQ4bsXTGlcpGxU/RCIw==", -- "license": "MIT", -+ "version": "3.5.18", -+ "resolved": "https://registry.npmjs.org/@vue/runtime-core/-/runtime-core-3.5.18.tgz", -+ "integrity": "sha512-DUpHa1HpeOQEt6+3nheUfqVXRog2kivkXHUhoqJiKR33SO4x+a5uNOMkV487WPerQkL0vUuRvq/7JhRgLW3S+w==", - "dependencies": { -- "@vue/reactivity": "3.5.13", -- "@vue/shared": "3.5.13" -+ "@vue/reactivity": "3.5.18", -+ "@vue/shared": "3.5.18" - } - }, - "node_modules/@vue/runtime-dom": { -- "version": "3.5.13", -- "resolved": "https://registry.npmjs.org/@vue/runtime-dom/-/runtime-dom-3.5.13.tgz", -- "integrity": "sha512-dLaj94s93NYLqjLiyFzVs9X6dWhTdAlEAciC3Moq7gzAc13VJUdCnjjRurNM6uTLFATRHexHCTu/Xp3eW6yoog==", -- "license": "MIT", -- "dependencies": { -- "@vue/reactivity": "3.5.13", -- "@vue/runtime-core": "3.5.13", -- "@vue/shared": "3.5.13", -+ "version": "3.5.18", -+ "resolved": "https://registry.npmjs.org/@vue/runtime-dom/-/runtime-dom-3.5.18.tgz", -+ "integrity": "sha512-YwDj71iV05j4RnzZnZtGaXwPoUWeRsqinblgVJwR8XTXYZ9D5PbahHQgsbmzUvCWNF6x7siQ89HgnX5eWkr3mw==", -+ "dependencies": { -+ "@vue/reactivity": "3.5.18", -+ "@vue/runtime-core": "3.5.18", -+ "@vue/shared": "3.5.18", - "csstype": "^3.1.3" - } - }, - "node_modules/@vue/server-renderer": { -- "version": "3.5.13", -- "resolved": "https://registry.npmjs.org/@vue/server-renderer/-/server-renderer-3.5.13.tgz", -- "integrity": "sha512-wAi4IRJV/2SAW3htkTlB+dHeRmpTiVIK1OGLWV1yeStVSebSQQOwGwIq0D3ZIoBj2C2qpgz5+vX9iEBkTdk5YA==", -- "license": "MIT", -+ "version": "3.5.18", -+ "resolved": "https://registry.npmjs.org/@vue/server-renderer/-/server-renderer-3.5.18.tgz", -+ "integrity": "sha512-PvIHLUoWgSbDG7zLHqSqaCoZvHi6NNmfVFOqO+OnwvqMz/tqQr3FuGWS8ufluNddk7ZLBJYMrjcw1c6XzR12mA==", - "dependencies": { -- "@vue/compiler-ssr": "3.5.13", -- "@vue/shared": "3.5.13" -+ "@vue/compiler-ssr": "3.5.18", -+ "@vue/shared": "3.5.18" - }, - "peerDependencies": { -- "vue": "3.5.13" -+ "vue": "3.5.18" - } - }, - "node_modules/@vue/shared": { -- "version": "3.5.13", -- "resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.5.13.tgz", -- "integrity": "sha512-/hnE/qP5ZoGpol0a5mDi45bOd7t3tjYJBjsgCsivow7D48cJeV5l05RD82lPqi7gRiphZM37rnhW1l6ZoCNNnQ==", -- "license": "MIT" -+ "version": "3.5.18", -+ "resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.5.18.tgz", -+ "integrity": "sha512-cZy8Dq+uuIXbxCZpuLd2GJdeSO/lIzIspC2WtkqIpje5QyFbvLaI5wZtdUjLHjGZrlVX6GilejatWwVYYRc8tA==" - }, - "node_modules/@vue/tsconfig": { - "version": "0.5.1", - "resolved": "https://registry.npmjs.org/@vue/tsconfig/-/tsconfig-0.5.1.tgz", - "integrity": "sha512-VcZK7MvpjuTPx2w6blwnwZAu5/LgBUtejFOi3pPGQFXQN5Ela03FUtd2Qtg4yWGGissVL0dr6Ro1LfOFh+PCuQ==", -- "dev": true, -- "license": "MIT" -+ "dev": true - }, - "node_modules/@vueuse/core": { - "version": "12.8.2", - "resolved": "https://registry.npmjs.org/@vueuse/core/-/core-12.8.2.tgz", - "integrity": "sha512-HbvCmZdzAu3VGi/pWYm5Ut+Kd9mn1ZHnn4L5G8kOQTPs/IwIAmJoBrmYk2ckLArgMXZj0AW3n5CAejLUO+PhdQ==", -- "license": "MIT", - "dependencies": { - "@types/web-bluetooth": "^0.0.21", - "@vueuse/metadata": "12.8.2", -@@ -2364,7 +2238,6 @@ - "version": "12.8.2", - "resolved": "https://registry.npmjs.org/@vueuse/integrations/-/integrations-12.8.2.tgz", - "integrity": "sha512-fbGYivgK5uBTRt7p5F3zy6VrETlV9RtZjBqd1/HxGdjdckBgBM4ugP8LHpjolqTj14TXTxSK1ZfgPbHYyGuH7g==", -- "license": "MIT", - "dependencies": { - "@vueuse/core": "12.8.2", - "@vueuse/shared": "12.8.2", -@@ -2430,7 +2303,6 @@ - "version": "12.8.2", - "resolved": "https://registry.npmjs.org/@vueuse/metadata/-/metadata-12.8.2.tgz", - "integrity": "sha512-rAyLGEuoBJ/Il5AmFHiziCPdQzRt88VxR+Y/A/QhJ1EWtWqPBBAxTAFaSkviwEuOEZNtW8pvkPgoCZQ+HxqW1A==", -- "license": "MIT", - "funding": { - "url": "https://github.com/sponsors/antfu" - } -@@ -2439,7 +2311,6 @@ - "version": "12.8.2", - "resolved": "https://registry.npmjs.org/@vueuse/shared/-/shared-12.8.2.tgz", - "integrity": "sha512-dznP38YzxZoNloI0qpEfpkms8knDtaoQ6Y/sfS0L7Yki4zh40LFHEhur0odJC6xTHG5dxWVPiUWBXn+wCG2s5w==", -- "license": "MIT", - "dependencies": { - "vue": "^3.5.13" - }, -@@ -2452,17 +2323,15 @@ - "resolved": "https://registry.npmjs.org/@zodios/core/-/core-10.9.6.tgz", - "integrity": "sha512-aH4rOdb3AcezN7ws8vDgBfGboZMk2JGGzEq/DtW65MhnRxyTGRuLJRWVQ/2KxDgWvV2F5oTkAS+5pnjKbl0n+A==", - "dev": true, -- "license": "MIT", - "peerDependencies": { - "axios": "^0.x || ^1.0.0", - "zod": "^3.x" - } - }, - "node_modules/acorn": { -- "version": "8.14.1", -- "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.14.1.tgz", -- "integrity": "sha512-OvQ/2pUDKmgfCg++xsTX1wGxfTaszcHVcTctW4UJB4hibJx2HXxxO5UmVgyjMa+ZDsiaf5wWLXYpRWMmBI0QHg==", -- "license": "MIT", -+ "version": "8.15.0", -+ "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.15.0.tgz", -+ "integrity": "sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==", - "bin": { - "acorn": "bin/acorn" - }, -@@ -2474,7 +2343,6 @@ - "version": "5.3.2", - "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", - "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", -- "license": "MIT", - "peerDependencies": { - "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" - } -@@ -2483,7 +2351,6 @@ - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", -- "license": "MIT", - "dependencies": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", -@@ -2499,15 +2366,13 @@ - "version": "1.0.13", - "resolved": "https://registry.npmjs.org/alien-signals/-/alien-signals-1.0.13.tgz", - "integrity": "sha512-OGj9yyTnJEttvzhTUWuscOvtqxq5vrhF7vL9oS0xJ2mK0ItPYP1/y+vCFebfxoEyAz0++1AIwJ5CMr+Fk3nDmg==", -- "dev": true, -- "license": "MIT" -+ "dev": true - }, - "node_modules/ansi-escapes": { - "version": "4.3.2", - "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", - "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", - "dev": true, -- "license": "MIT", - "dependencies": { - "type-fest": "^0.21.3" - }, -@@ -2523,7 +2388,6 @@ - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", - "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", - "dev": true, -- "license": "(MIT OR CC0-1.0)", - "engines": { - "node": ">=10" - }, -@@ -2535,7 +2399,6 @@ - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.1.0.tgz", - "integrity": "sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==", -- "license": "MIT", - "engines": { - "node": ">=12" - }, -@@ -2547,7 +2410,6 @@ - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", -- "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, -@@ -2561,14 +2423,12 @@ - "node_modules/any-promise": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz", -- "integrity": "sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==", -- "license": "MIT" -+ "integrity": "sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==" - }, - "node_modules/anymatch": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", - "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", -- "license": "ISC", - "dependencies": { - "normalize-path": "^3.0.0", - "picomatch": "^2.0.4" -@@ -2580,20 +2440,17 @@ - "node_modules/arg": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/arg/-/arg-5.0.2.tgz", -- "integrity": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==", -- "license": "MIT" -+ "integrity": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==" - }, - "node_modules/argparse": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", -- "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", -- "license": "Python-2.0" -+ "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==" - }, - "node_modules/aria-hidden": { -- "version": "1.2.4", -- "resolved": "https://registry.npmjs.org/aria-hidden/-/aria-hidden-1.2.4.tgz", -- "integrity": "sha512-y+CcFFwelSXpLZk/7fMB2mUbGtX9lKycf1MWJ7CaTIERyitVlyQx6C+sxcROU2BAJ24OiZyK+8wj2i8AlBoS3A==", -- "license": "MIT", -+ "version": "1.2.6", -+ "resolved": "https://registry.npmjs.org/aria-hidden/-/aria-hidden-1.2.6.tgz", -+ "integrity": "sha512-ik3ZgC9dY/lYVVM++OISsaYDeg1tb0VtP5uL3ouh1koGOaUMDPpbFIei4JkFimWUFPn90sbMNMXQAIVOlnYKJA==", - "dependencies": { - "tslib": "^2.0.0" - }, -@@ -2605,8 +2462,7 @@ - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", - "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==", -- "devOptional": true, -- "license": "MIT" -+ "devOptional": true - }, - "node_modules/autoprefixer": { - "version": "10.4.21", -@@ -2627,7 +2483,6 @@ - "url": "https://github.com/sponsors/ai" - } - ], -- "license": "MIT", - "dependencies": { - "browserslist": "^4.24.4", - "caniuse-lite": "^1.0.30001702", -@@ -2647,28 +2502,25 @@ - } - }, - "node_modules/axios": { -- "version": "1.8.4", -- "resolved": "https://registry.npmjs.org/axios/-/axios-1.8.4.tgz", -- "integrity": "sha512-eBSYY4Y68NNlHbHBMdeDmKNtDgXWhQsJcGqzO3iLUM0GraQFSS9cVgPX5I9b3lbdFKyYoAEGAZF1DwhTaljNAw==", -+ "version": "1.11.0", -+ "resolved": "https://registry.npmjs.org/axios/-/axios-1.11.0.tgz", -+ "integrity": "sha512-1Lx3WLFQWm3ooKDYZD1eXmoGO9fxYQjrycfHFC8P0sCfQVXyROp0p9PFWBehewBOdCwHc+f/b8I0fMto5eSfwA==", - "devOptional": true, -- "license": "MIT", - "dependencies": { - "follow-redirects": "^1.15.6", -- "form-data": "^4.0.0", -+ "form-data": "^4.0.4", - "proxy-from-env": "^1.1.0" - } - }, - "node_modules/balanced-match": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", -- "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", -- "license": "MIT" -+ "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" - }, - "node_modules/binary-extensions": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz", - "integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==", -- "license": "MIT", - "engines": { - "node": ">=8" - }, -@@ -2680,14 +2532,12 @@ - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", - "integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==", -- "license": "ISC", - "peer": true - }, - "node_modules/brace-expansion": { -- "version": "1.1.11", -- "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", -- "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", -- "license": "MIT", -+ "version": "1.1.12", -+ "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.12.tgz", -+ "integrity": "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==", - "dependencies": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" -@@ -2697,7 +2547,6 @@ - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", - "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", -- "license": "MIT", - "dependencies": { - "fill-range": "^7.1.1" - }, -@@ -2706,9 +2555,9 @@ - } - }, - "node_modules/browserslist": { -- "version": "4.24.4", -- "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.24.4.tgz", -- "integrity": "sha512-KDi1Ny1gSePi1vm0q4oxSF8b4DR44GF4BbmS2YdhPLOEqd8pDviZOGH/GsmRwoWJ2+5Lr085X7naowMwKHDG1A==", -+ "version": "4.25.1", -+ "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.25.1.tgz", -+ "integrity": "sha512-KGj0KoOMXLpSNkkEI6Z6mShmQy0bc1I+T7K9N81k4WWMrfz+6fQ6es80B/YLAeRoKvjYE1YSHHOW1qe9xIVzHw==", - "dev": true, - "funding": [ - { -@@ -2724,12 +2573,11 @@ - "url": "https://github.com/sponsors/ai" - } - ], -- "license": "MIT", - "dependencies": { -- "caniuse-lite": "^1.0.30001688", -- "electron-to-chromium": "^1.5.73", -+ "caniuse-lite": "^1.0.30001726", -+ "electron-to-chromium": "^1.5.173", - "node-releases": "^2.0.19", -- "update-browserslist-db": "^1.1.1" -+ "update-browserslist-db": "^1.1.3" - }, - "bin": { - "browserslist": "cli.js" -@@ -2743,7 +2591,6 @@ - "resolved": "https://registry.npmjs.org/cac/-/cac-6.7.14.tgz", - "integrity": "sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==", - "dev": true, -- "license": "MIT", - "engines": { - "node": ">=8" - } -@@ -2753,7 +2600,6 @@ - "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz", - "integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==", - "devOptional": true, -- "license": "MIT", - "dependencies": { - "es-errors": "^1.3.0", - "function-bind": "^1.1.2" -@@ -2767,7 +2613,6 @@ - "resolved": "https://registry.npmjs.org/call-bound/-/call-bound-1.0.4.tgz", - "integrity": "sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==", - "dev": true, -- "license": "MIT", - "dependencies": { - "call-bind-apply-helpers": "^1.0.2", - "get-intrinsic": "^1.3.0" -@@ -2783,14 +2628,12 @@ - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/call-me-maybe/-/call-me-maybe-1.0.2.tgz", - "integrity": "sha512-HpX65o1Hnr9HH25ojC1YGs7HCQLq0GCOibSaWER0eNpgJ/Z1MZv2mTc7+xh6WOPxbRVcmgbv4hGU+uSQ/2xFZQ==", -- "dev": true, -- "license": "MIT" -+ "dev": true - }, - "node_modules/callsites": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", - "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", -- "license": "MIT", - "engines": { - "node": ">=6" - } -@@ -2799,15 +2642,14 @@ - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/camelcase-css/-/camelcase-css-2.0.1.tgz", - "integrity": "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==", -- "license": "MIT", - "engines": { - "node": ">= 6" - } - }, - "node_modules/caniuse-lite": { -- "version": "1.0.30001713", -- "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001713.tgz", -- "integrity": "sha512-wCIWIg+A4Xr7NfhTuHdX+/FKh3+Op3LBbSp2N5Pfx6T/LhdQy3GTyoTg48BReaW/MyMNZAkTadsBtai3ldWK0Q==", -+ "version": "1.0.30001733", -+ "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001733.tgz", -+ "integrity": "sha512-e4QKw/O2Kavj2VQTKZWrwzkt3IxOmIlU6ajRb6LP64LHpBo1J67k2Hi4Vu/TgJWsNtynurfS0uK3MaUTCPfu5Q==", - "dev": true, - "funding": [ - { -@@ -2822,14 +2664,12 @@ - "type": "github", - "url": "https://github.com/sponsors/ai" - } -- ], -- "license": "CC-BY-4.0" -+ ] - }, - "node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", -- "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" -@@ -2845,7 +2685,6 @@ - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz", - "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==", -- "license": "MIT", - "dependencies": { - "anymatch": "~3.1.2", - "braces": "~3.0.2", -@@ -2869,7 +2708,6 @@ - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", - "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", -- "license": "ISC", - "dependencies": { - "is-glob": "^4.0.1" - }, -@@ -2881,7 +2719,6 @@ - "version": "0.7.1", - "resolved": "https://registry.npmjs.org/class-variance-authority/-/class-variance-authority-0.7.1.tgz", - "integrity": "sha512-Ka+9Trutv7G8M6WT6SeiRWz792K5qEqIGEGzXKhAE6xOWAY6pPH8U+9IY3oCMv6kqTmLsv7Xh/2w2RigkePMsg==", -- "license": "Apache-2.0", - "dependencies": { - "clsx": "^2.1.1" - }, -@@ -2893,7 +2730,6 @@ - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/clsx/-/clsx-2.1.1.tgz", - "integrity": "sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==", -- "license": "MIT", - "engines": { - "node": ">=6" - } -@@ -2902,7 +2738,6 @@ - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", -- "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, -@@ -2913,15 +2748,13 @@ - "node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", -- "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", -- "license": "MIT" -+ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "node_modules/combined-stream": { - "version": "1.0.8", - "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", - "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", - "devOptional": true, -- "license": "MIT", - "dependencies": { - "delayed-stream": "~1.0.0" - }, -@@ -2933,7 +2766,6 @@ - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz", - "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==", -- "license": "MIT", - "engines": { - "node": ">= 6" - } -@@ -2941,21 +2773,18 @@ - "node_modules/concat-map": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", -- "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", -- "license": "MIT" -+ "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==" - }, - "node_modules/convert-source-map": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", - "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", -- "dev": true, -- "license": "MIT" -+ "dev": true - }, - "node_modules/cross-spawn": { - "version": "7.0.6", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", - "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", -- "license": "MIT", - "dependencies": { - "path-key": "^3.1.0", - "shebang-command": "^2.0.0", -@@ -2969,7 +2798,6 @@ - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", - "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", -- "license": "MIT", - "bin": { - "cssesc": "bin/cssesc" - }, -@@ -2980,27 +2808,23 @@ - "node_modules/csstype": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz", -- "integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==", -- "license": "MIT" -+ "integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==" - }, - "node_modules/dayjs": { - "version": "1.11.13", - "resolved": "https://registry.npmjs.org/dayjs/-/dayjs-1.11.13.tgz", -- "integrity": "sha512-oaMBel6gjolK862uaPQOVTA7q3TZhuSvuMQAAglQDOWYO9A91IrAOUJEyKVlqJlHE0vq5p5UXxzdPfMH/x6xNg==", -- "license": "MIT" -+ "integrity": "sha512-oaMBel6gjolK862uaPQOVTA7q3TZhuSvuMQAAglQDOWYO9A91IrAOUJEyKVlqJlHE0vq5p5UXxzdPfMH/x6xNg==" - }, - "node_modules/de-indent": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/de-indent/-/de-indent-1.0.2.tgz", - "integrity": "sha512-e/1zu3xH5MQryN2zdVaF0OrdNLUbvWxzMbi+iNA6Bky7l1RoP8a2fIbRocyHclXt/arDrrR6lL3TqFD9pMQTsg==", -- "dev": true, -- "license": "MIT" -+ "dev": true - }, - "node_modules/debug": { -- "version": "4.4.0", -- "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.0.tgz", -- "integrity": "sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==", -- "license": "MIT", -+ "version": "4.4.1", -+ "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.1.tgz", -+ "integrity": "sha512-KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ==", - "dependencies": { - "ms": "^2.1.3" - }, -@@ -3017,7 +2841,6 @@ - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", - "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", -- "license": "MIT", - "peer": true - }, - "node_modules/deepmerge": { -@@ -3025,7 +2848,6 @@ - "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz", - "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==", - "dev": true, -- "license": "MIT", - "engines": { - "node": ">=0.10.0" - } -@@ -3033,15 +2855,13 @@ - "node_modules/defu": { - "version": "6.1.4", - "resolved": "https://registry.npmjs.org/defu/-/defu-6.1.4.tgz", -- "integrity": "sha512-mEQCMmwJu317oSz8CwdIOdwf3xMif1ttiM8LTufzc3g6kR+9Pe236twL8j3IYT1F7GfRgGcW6MWxzZjLIkuHIg==", -- "license": "MIT" -+ "integrity": "sha512-mEQCMmwJu317oSz8CwdIOdwf3xMif1ttiM8LTufzc3g6kR+9Pe236twL8j3IYT1F7GfRgGcW6MWxzZjLIkuHIg==" - }, - "node_modules/delayed-stream": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", - "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", - "devOptional": true, -- "license": "MIT", - "engines": { - "node": ">=0.4.0" - } -@@ -3049,21 +2869,18 @@ - "node_modules/didyoumean": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/didyoumean/-/didyoumean-1.2.2.tgz", -- "integrity": "sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==", -- "license": "Apache-2.0" -+ "integrity": "sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==" - }, - "node_modules/dlv": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/dlv/-/dlv-1.1.3.tgz", -- "integrity": "sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==", -- "license": "MIT" -+ "integrity": "sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==" - }, - "node_modules/dunder-proto": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz", - "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==", - "devOptional": true, -- "license": "MIT", - "dependencies": { - "call-bind-apply-helpers": "^1.0.1", - "es-errors": "^1.3.0", -@@ -3076,37 +2893,32 @@ - "node_modules/eastasianwidth": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", -- "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==", -- "license": "MIT" -+ "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==" - }, - "node_modules/echarts": { - "version": "5.6.0", - "resolved": "https://registry.npmjs.org/echarts/-/echarts-5.6.0.tgz", - "integrity": "sha512-oTbVTsXfKuEhxftHqL5xprgLoc0k7uScAwtryCgWF6hPYFLRwOUHiFmHGCBKP5NPFNkDVopOieyUqYGH8Fa3kA==", -- "license": "Apache-2.0", - "dependencies": { - "tslib": "2.3.0", - "zrender": "5.6.1" - } - }, - "node_modules/electron-to-chromium": { -- "version": "1.5.136", -- "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.136.tgz", -- "integrity": "sha512-kL4+wUTD7RSA5FHx5YwWtjDnEEkIIikFgWHR4P6fqjw1PPLlqYkxeOb++wAauAssat0YClCy8Y3C5SxgSkjibQ==", -- "dev": true, -- "license": "ISC" -+ "version": "1.5.199", -+ "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.199.tgz", -+ "integrity": "sha512-3gl0S7zQd88kCAZRO/DnxtBKuhMO4h0EaQIN3YgZfV6+pW+5+bf2AdQeHNESCoaQqo/gjGVYEf2YM4O5HJQqpQ==", -+ "dev": true - }, - "node_modules/emoji-regex": { - "version": "9.2.2", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", -- "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", -- "license": "MIT" -+ "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==" - }, - "node_modules/entities": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz", - "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==", -- "license": "BSD-2-Clause", - "engines": { - "node": ">=0.12" - }, -@@ -3119,7 +2931,6 @@ - "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz", - "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==", - "devOptional": true, -- "license": "MIT", - "engines": { - "node": ">= 0.4" - } -@@ -3129,7 +2940,6 @@ - "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", - "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", - "devOptional": true, -- "license": "MIT", - "engines": { - "node": ">= 0.4" - } -@@ -3139,7 +2949,6 @@ - "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz", - "integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==", - "devOptional": true, -- "license": "MIT", - "dependencies": { - "es-errors": "^1.3.0" - }, -@@ -3152,7 +2961,6 @@ - "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.1.0.tgz", - "integrity": "sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==", - "devOptional": true, -- "license": "MIT", - "dependencies": { - "es-errors": "^1.3.0", - "get-intrinsic": "^1.2.6", -@@ -3164,12 +2972,11 @@ - } - }, - "node_modules/esbuild": { -- "version": "0.25.2", -- "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.25.2.tgz", -- "integrity": "sha512-16854zccKPnC+toMywC+uKNeYSv+/eXkevRAfwRD/G9Cleq66m8XFIrigkbvauLLlCfDL45Q2cWegSg53gGBnQ==", -+ "version": "0.25.8", -+ "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.25.8.tgz", -+ "integrity": "sha512-vVC0USHGtMi8+R4Kz8rt6JhEWLxsv9Rnu/lGYbPR8u47B+DCBksq9JarW0zOO7bs37hyOK1l2/oqtbciutL5+Q==", - "dev": true, - "hasInstallScript": true, -- "license": "MIT", - "bin": { - "esbuild": "bin/esbuild" - }, -@@ -3177,31 +2984,32 @@ - "node": ">=18" - }, - "optionalDependencies": { -- "@esbuild/aix-ppc64": "0.25.2", -- "@esbuild/android-arm": "0.25.2", -- "@esbuild/android-arm64": "0.25.2", -- "@esbuild/android-x64": "0.25.2", -- "@esbuild/darwin-arm64": "0.25.2", -- "@esbuild/darwin-x64": "0.25.2", -- "@esbuild/freebsd-arm64": "0.25.2", -- "@esbuild/freebsd-x64": "0.25.2", -- "@esbuild/linux-arm": "0.25.2", -- "@esbuild/linux-arm64": "0.25.2", -- "@esbuild/linux-ia32": "0.25.2", -- "@esbuild/linux-loong64": "0.25.2", -- "@esbuild/linux-mips64el": "0.25.2", -- "@esbuild/linux-ppc64": "0.25.2", -- "@esbuild/linux-riscv64": "0.25.2", -- "@esbuild/linux-s390x": "0.25.2", -- "@esbuild/linux-x64": "0.25.2", -- "@esbuild/netbsd-arm64": "0.25.2", -- "@esbuild/netbsd-x64": "0.25.2", -- "@esbuild/openbsd-arm64": "0.25.2", -- "@esbuild/openbsd-x64": "0.25.2", -- "@esbuild/sunos-x64": "0.25.2", -- "@esbuild/win32-arm64": "0.25.2", -- "@esbuild/win32-ia32": "0.25.2", -- "@esbuild/win32-x64": "0.25.2" -+ "@esbuild/aix-ppc64": "0.25.8", -+ "@esbuild/android-arm": "0.25.8", -+ "@esbuild/android-arm64": "0.25.8", -+ "@esbuild/android-x64": "0.25.8", -+ "@esbuild/darwin-arm64": "0.25.8", -+ "@esbuild/darwin-x64": "0.25.8", -+ "@esbuild/freebsd-arm64": "0.25.8", -+ "@esbuild/freebsd-x64": "0.25.8", -+ "@esbuild/linux-arm": "0.25.8", -+ "@esbuild/linux-arm64": "0.25.8", -+ "@esbuild/linux-ia32": "0.25.8", -+ "@esbuild/linux-loong64": "0.25.8", -+ "@esbuild/linux-mips64el": "0.25.8", -+ "@esbuild/linux-ppc64": "0.25.8", -+ "@esbuild/linux-riscv64": "0.25.8", -+ "@esbuild/linux-s390x": "0.25.8", -+ "@esbuild/linux-x64": "0.25.8", -+ "@esbuild/netbsd-arm64": "0.25.8", -+ "@esbuild/netbsd-x64": "0.25.8", -+ "@esbuild/openbsd-arm64": "0.25.8", -+ "@esbuild/openbsd-x64": "0.25.8", -+ "@esbuild/openharmony-arm64": "0.25.8", -+ "@esbuild/sunos-x64": "0.25.8", -+ "@esbuild/win32-arm64": "0.25.8", -+ "@esbuild/win32-ia32": "0.25.8", -+ "@esbuild/win32-x64": "0.25.8" - } - }, - "node_modules/escalade": { -@@ -3209,7 +3017,6 @@ - "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", - "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", - "dev": true, -- "license": "MIT", - "engines": { - "node": ">=6" - } -@@ -3218,7 +3025,6 @@ - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", - "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", -- "license": "MIT", - "peer": true, - "engines": { - "node": ">=10" -@@ -3228,20 +3034,19 @@ - } - }, - "node_modules/eslint": { -- "version": "9.24.0", -- "resolved": "https://registry.npmjs.org/eslint/-/eslint-9.24.0.tgz", -- "integrity": "sha512-eh/jxIEJyZrvbWRe4XuVclLPDYSYYYgLy5zXGGxD6j8zjSAxFEzI2fL/8xNq6O2yKqVt+eF2YhV+hxjV6UKXwQ==", -- "license": "MIT", -+ "version": "9.32.0", -+ "resolved": "https://registry.npmjs.org/eslint/-/eslint-9.32.0.tgz", -+ "integrity": "sha512-LSehfdpgMeWcTZkWZVIJl+tkZ2nuSkyyB9C27MZqFWXuph7DvaowgcTvKqxvpLW1JZIk8PN7hFY3Rj9LQ7m7lg==", - "peer": true, - "dependencies": { - "@eslint-community/eslint-utils": "^4.2.0", - "@eslint-community/regexpp": "^4.12.1", -- "@eslint/config-array": "^0.20.0", -- "@eslint/config-helpers": "^0.2.0", -- "@eslint/core": "^0.12.0", -+ "@eslint/config-array": "^0.21.0", -+ "@eslint/config-helpers": "^0.3.0", -+ "@eslint/core": "^0.15.0", - "@eslint/eslintrc": "^3.3.1", -- "@eslint/js": "9.24.0", -- "@eslint/plugin-kit": "^0.2.7", -+ "@eslint/js": "9.32.0", -+ "@eslint/plugin-kit": "^0.3.4", - "@humanfs/node": "^0.16.6", - "@humanwhocodes/module-importer": "^1.0.1", - "@humanwhocodes/retry": "^0.4.2", -@@ -3252,9 +3057,9 @@ - "cross-spawn": "^7.0.6", - "debug": "^4.3.2", - "escape-string-regexp": "^4.0.0", -- "eslint-scope": "^8.3.0", -- "eslint-visitor-keys": "^4.2.0", -- "espree": "^10.3.0", -+ "eslint-scope": "^8.4.0", -+ "eslint-visitor-keys": "^4.2.1", -+ "espree": "^10.4.0", - "esquery": "^1.5.0", - "esutils": "^2.0.2", - "fast-deep-equal": "^3.1.3", -@@ -3289,25 +3094,26 @@ - } - }, - "node_modules/eslint-config-prettier": { -- "version": "10.1.2", -- "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-10.1.2.tgz", -- "integrity": "sha512-Epgp/EofAUeEpIdZkW60MHKvPyru1ruQJxPL+WIycnaPApuseK0Zpkrh/FwL9oIpQvIhJwV7ptOy0DWUjTlCiA==", -- "license": "MIT", -+ "version": "10.1.8", -+ "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-10.1.8.tgz", -+ "integrity": "sha512-82GZUjRS0p/jganf6q1rEO25VSoHH0hKPCTrgillPjdI/3bgBhAE1QzHrHTizjpRvy6pGAvKjDJtk2pF9NDq8w==", - "bin": { - "eslint-config-prettier": "bin/cli.js" - }, -+ "funding": { -+ "url": "https://opencollective.com/eslint-config-prettier" -+ }, - "peerDependencies": { - "eslint": ">=7.0.0" - } - }, - "node_modules/eslint-plugin-prettier": { -- "version": "5.2.6", -- "resolved": "https://registry.npmjs.org/eslint-plugin-prettier/-/eslint-plugin-prettier-5.2.6.tgz", -- "integrity": "sha512-mUcf7QG2Tjk7H055Jk0lGBjbgDnfrvqjhXh9t2xLMSCjZVcw9Rb1V6sVNXO0th3jgeO7zllWPTNRil3JW94TnQ==", -- "license": "MIT", -+ "version": "5.5.4", -+ "resolved": "https://registry.npmjs.org/eslint-plugin-prettier/-/eslint-plugin-prettier-5.5.4.tgz", -+ "integrity": "sha512-swNtI95SToIz05YINMA6Ox5R057IMAmWZ26GqPxusAp1TZzj+IdY9tXNWWD3vkF/wEqydCONcwjTFpxybBqZsg==", - "dependencies": { - "prettier-linter-helpers": "^1.0.0", -- "synckit": "^0.11.0" -+ "synckit": "^0.11.7" - }, - "engines": { - "node": "^14.18.0 || >=16.0.0" -@@ -3335,7 +3141,6 @@ - "resolved": "https://registry.npmjs.org/eslint-plugin-unused-imports/-/eslint-plugin-unused-imports-4.1.4.tgz", - "integrity": "sha512-YptD6IzQjDardkl0POxnnRBhU1OEePMV0nd6siHaRBbd+lyh6NAhFEobiznKU7kTsSsDeSD62Pe7kAM1b7dAZQ==", - "dev": true, -- "license": "MIT", - "peerDependencies": { - "@typescript-eslint/eslint-plugin": "^8.0.0-0 || ^7.0.0 || ^6.0.0 || ^5.0.0", - "eslint": "^9.0.0 || ^8.0.0" -@@ -3347,10 +3152,9 @@ - } - }, - "node_modules/eslint-plugin-vue": { -- "version": "10.0.0", -- "resolved": "https://registry.npmjs.org/eslint-plugin-vue/-/eslint-plugin-vue-10.0.0.tgz", -- "integrity": "sha512-XKckedtajqwmaX6u1VnECmZ6xJt+YvlmMzBPZd+/sI3ub2lpYZyFnsyWo7c3nMOQKJQudeyk1lw/JxdgeKT64w==", -- "license": "MIT", -+ "version": "10.4.0", -+ "resolved": "https://registry.npmjs.org/eslint-plugin-vue/-/eslint-plugin-vue-10.4.0.tgz", -+ "integrity": "sha512-K6tP0dW8FJVZLQxa2S7LcE1lLw3X8VvB3t887Q6CLrFVxHYBXGANbXvwNzYIu6Ughx1bSJ5BDT0YB3ybPT39lw==", - "peer": true, - "dependencies": { - "@eslint-community/eslint-utils": "^4.4.0", -@@ -3364,15 +3168,20 @@ - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" - }, - "peerDependencies": { -+ "@typescript-eslint/parser": "^7.0.0 || ^8.0.0", - "eslint": "^8.57.0 || ^9.0.0", - "vue-eslint-parser": "^10.0.0" -+ }, -+ "peerDependenciesMeta": { -+ "@typescript-eslint/parser": { -+ "optional": true -+ } - } - }, - "node_modules/eslint-plugin-vue/node_modules/postcss-selector-parser": { - "version": "6.1.2", - "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.1.2.tgz", - "integrity": "sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==", -- "license": "MIT", - "peer": true, - "dependencies": { - "cssesc": "^3.0.0", -@@ -3383,10 +3192,9 @@ - } - }, - "node_modules/eslint-scope": { -- "version": "8.3.0", -- "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-8.3.0.tgz", -- "integrity": "sha512-pUNxi75F8MJ/GdeKtVLSbYg4ZI34J6C0C7sbL4YOp2exGwen7ZsuBqKzUhXd0qMQ362yET3z+uPwKeg/0C2XCQ==", -- "license": "BSD-2-Clause", -+ "version": "8.4.0", -+ "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-8.4.0.tgz", -+ "integrity": "sha512-sNXOfKCn74rt8RICKMvJS7XKV/Xk9kA7DyJr8mJik3S7Cwgy3qlkkmyS2uQB3jiJg6VNdZd/pDBJu0nvG2NlTg==", - "dependencies": { - "esrecurse": "^4.3.0", - "estraverse": "^5.2.0" -@@ -3402,7 +3210,6 @@ - "version": "3.4.3", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", - "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", -- "license": "Apache-2.0", - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, -@@ -3411,10 +3218,9 @@ - } - }, - "node_modules/eslint/node_modules/eslint-visitor-keys": { -- "version": "4.2.0", -- "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.2.0.tgz", -- "integrity": "sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==", -- "license": "Apache-2.0", -+ "version": "4.2.1", -+ "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.2.1.tgz", -+ "integrity": "sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==", - "peer": true, - "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" -@@ -3424,14 +3230,13 @@ - } - }, - "node_modules/espree": { -- "version": "10.3.0", -- "resolved": "https://registry.npmjs.org/espree/-/espree-10.3.0.tgz", -- "integrity": "sha512-0QYC8b24HWY8zjRnDTL6RiHfDbAWn63qb4LMj1Z4b076A4une81+z03Kg7l7mn/48PUTqoLptSXez8oknU8Clg==", -- "license": "BSD-2-Clause", -+ "version": "10.4.0", -+ "resolved": "https://registry.npmjs.org/espree/-/espree-10.4.0.tgz", -+ "integrity": "sha512-j6PAQ2uUr79PZhBjP5C5fhl8e39FmRnOjsD5lGnWrFU8i2G776tBK7+nP8KuQUTTyAZUwfQqXAgrVH5MbH9CYQ==", - "dependencies": { -- "acorn": "^8.14.0", -+ "acorn": "^8.15.0", - "acorn-jsx": "^5.3.2", -- "eslint-visitor-keys": "^4.2.0" -+ "eslint-visitor-keys": "^4.2.1" - }, - "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" -@@ -3441,10 +3246,9 @@ - } - }, - "node_modules/espree/node_modules/eslint-visitor-keys": { -- "version": "4.2.0", -- "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.2.0.tgz", -- "integrity": "sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==", -- "license": "Apache-2.0", -+ "version": "4.2.1", -+ "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.2.1.tgz", -+ "integrity": "sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==", - "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" - }, -@@ -3456,7 +3260,6 @@ - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.6.0.tgz", - "integrity": "sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==", -- "license": "BSD-3-Clause", - "dependencies": { - "estraverse": "^5.1.0" - }, -@@ -3468,7 +3271,6 @@ - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", - "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", -- "license": "BSD-2-Clause", - "dependencies": { - "estraverse": "^5.2.0" - }, -@@ -3480,7 +3282,6 @@ - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", - "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", -- "license": "BSD-2-Clause", - "engines": { - "node": ">=4.0" - } -@@ -3488,43 +3289,37 @@ - "node_modules/estree-walker": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz", -- "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==", -- "license": "MIT" -+ "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==" - }, - "node_modules/esutils": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", - "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", -- "license": "BSD-2-Clause", - "peer": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/eval-estree-expression": { -- "version": "2.1.1", -- "resolved": "https://registry.npmjs.org/eval-estree-expression/-/eval-estree-expression-2.1.1.tgz", -- "integrity": "sha512-9kNUU4c+kUs5rKR7V5n81Ebp6fId1v01XSHshPuDIQ8N2VKAAzSzN3o/hfzERdNU6ZGh97LYFT7wWrL0cqhV3A==", -- "dev": true, -- "license": "MIT" -+ "version": "3.0.0", -+ "resolved": "https://registry.npmjs.org/eval-estree-expression/-/eval-estree-expression-3.0.0.tgz", -+ "integrity": "sha512-siT1mQEeCtw4eHQ3jozxaXMpQeEkb5imAdoLB5Uj3wcpgicGCV41cbVdv/G0HT/SBe7o5+ex1lg1odCuSgnUJA==", -+ "dev": true - }, - "node_modules/fast-deep-equal": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", -- "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", -- "license": "MIT" -+ "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" - }, - "node_modules/fast-diff": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/fast-diff/-/fast-diff-1.3.0.tgz", -- "integrity": "sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw==", -- "license": "Apache-2.0" -+ "integrity": "sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw==" - }, - "node_modules/fast-glob": { - "version": "3.3.3", - "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.3.tgz", - "integrity": "sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==", -- "license": "MIT", - "dependencies": { - "@nodelib/fs.stat": "^2.0.2", - "@nodelib/fs.walk": "^1.2.3", -@@ -3540,7 +3335,6 @@ - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", - "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", -- "license": "ISC", - "dependencies": { - "is-glob": "^4.0.1" - }, -@@ -3551,14 +3345,12 @@ - "node_modules/fast-json-stable-stringify": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", -- "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", -- "license": "MIT" -+ "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==" - }, - "node_modules/fast-levenshtein": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", - "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", -- "license": "MIT", - "peer": true - }, - "node_modules/fast-uri": { -@@ -3575,14 +3367,12 @@ - "type": "opencollective", - "url": "https://opencollective.com/fastify" - } -- ], -- "license": "BSD-3-Clause" -+ ] - }, - "node_modules/fastq": { - "version": "1.19.1", - "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.19.1.tgz", - "integrity": "sha512-GwLTyxkCXjXbxqIhTsMI2Nui8huMPtnxg7krajPJAjnEG/iiOS7i+zCtWGZR9G0NBKbXKh6X9m9UIsYX/N6vvQ==", -- "license": "ISC", - "dependencies": { - "reusify": "^1.0.4" - } -@@ -3591,7 +3381,6 @@ - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-8.0.0.tgz", - "integrity": "sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==", -- "license": "MIT", - "peer": true, - "dependencies": { - "flat-cache": "^4.0.0" -@@ -3604,7 +3393,6 @@ - "version": "7.1.1", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", - "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", -- "license": "MIT", - "dependencies": { - "to-regex-range": "^5.0.1" - }, -@@ -3616,7 +3404,6 @@ - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", - "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", -- "license": "MIT", - "peer": true, - "dependencies": { - "locate-path": "^6.0.0", -@@ -3633,7 +3420,6 @@ - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-4.0.1.tgz", - "integrity": "sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==", -- "license": "MIT", - "peer": true, - "dependencies": { - "flatted": "^3.2.9", -@@ -3647,22 +3433,20 @@ - "version": "3.3.3", - "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.3.tgz", - "integrity": "sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==", -- "license": "ISC", - "peer": true - }, - "node_modules/focus-trap": { -- "version": "7.6.4", -- "resolved": "https://registry.npmjs.org/focus-trap/-/focus-trap-7.6.4.tgz", -- "integrity": "sha512-xx560wGBk7seZ6y933idtjJQc1l+ck+pI3sKvhKozdBV1dRZoKhkW5xoCaFv9tQiX5RH1xfSxjuNu6g+lmN/gw==", -- "license": "MIT", -+ "version": "7.6.5", -+ "resolved": "https://registry.npmjs.org/focus-trap/-/focus-trap-7.6.5.tgz", -+ "integrity": "sha512-7Ke1jyybbbPZyZXFxEftUtxFGLMpE2n6A+z//m4CRDlj0hW+o3iYSmh8nFlYMurOiJVDmJRilUQtJr08KfIxlg==", - "dependencies": { - "tabbable": "^6.2.0" - } - }, - "node_modules/follow-redirects": { -- "version": "1.15.9", -- "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.9.tgz", -- "integrity": "sha512-gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ==", -+ "version": "1.15.11", -+ "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.11.tgz", -+ "integrity": "sha512-deG2P0JfjrTxl50XGCDyfI97ZGVCxIpfKYmfyrQ54n5FO/0gfIES8C/Psl6kWVDolizcaaxZJnTS0QSMxvnsBQ==", - "devOptional": true, - "funding": [ - { -@@ -3670,7 +3454,6 @@ - "url": "https://github.com/sponsors/RubenVerborgh" - } - ], -- "license": "MIT", - "engines": { - "node": ">=4.0" - }, -@@ -3684,7 +3467,6 @@ - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.3.1.tgz", - "integrity": "sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==", -- "license": "ISC", - "dependencies": { - "cross-spawn": "^7.0.6", - "signal-exit": "^4.0.1" -@@ -3697,15 +3479,15 @@ - } - }, - "node_modules/form-data": { -- "version": "4.0.2", -- "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.2.tgz", -- "integrity": "sha512-hGfm/slu0ZabnNt4oaRZ6uREyfCj6P4fT/n6A1rGV+Z0VdGXjfOhVUpkn6qVQONHGIFwmveGXyDs75+nr6FM8w==", -+ "version": "4.0.4", -+ "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.4.tgz", -+ "integrity": "sha512-KrGhL9Q4zjj0kiUt5OO4Mr/A/jlI2jDYs5eHBpYHPcBEVSiipAvn2Ko2HnPe20rmcuuvMHNdZFp+4IlGTMF0Ow==", - "devOptional": true, -- "license": "MIT", - "dependencies": { - "asynckit": "^0.4.0", - "combined-stream": "^1.0.8", - "es-set-tostringtag": "^2.1.0", -+ "hasown": "^2.0.2", - "mime-types": "^2.1.12" - }, - "engines": { -@@ -3717,7 +3499,6 @@ - "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.3.7.tgz", - "integrity": "sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==", - "dev": true, -- "license": "MIT", - "engines": { - "node": "*" - }, -@@ -3731,7 +3512,6 @@ - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", - "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", - "dev": true, -- "license": "MIT", - "dependencies": { - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", -@@ -3746,7 +3526,6 @@ - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", - "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", - "hasInstallScript": true, -- "license": "MIT", - "optional": true, - "os": [ - "darwin" -@@ -3759,7 +3538,6 @@ - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", - "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", -- "license": "MIT", - "funding": { - "url": "https://github.com/sponsors/ljharb" - } -@@ -3769,7 +3547,6 @@ - "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", - "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", - "dev": true, -- "license": "MIT", - "engines": { - "node": ">=6.9.0" - } -@@ -3779,7 +3556,6 @@ - "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz", - "integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==", - "devOptional": true, -- "license": "MIT", - "dependencies": { - "call-bind-apply-helpers": "^1.0.2", - "es-define-property": "^1.0.1", -@@ -3804,7 +3580,6 @@ - "resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz", - "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==", - "devOptional": true, -- "license": "MIT", - "dependencies": { - "dunder-proto": "^1.0.1", - "es-object-atoms": "^1.0.0" -@@ -3817,7 +3592,6 @@ - "version": "10.4.5", - "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.5.tgz", - "integrity": "sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==", -- "license": "ISC", - "dependencies": { - "foreground-child": "^3.1.0", - "jackspeak": "^3.1.2", -@@ -3837,7 +3611,6 @@ - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", - "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", -- "license": "ISC", - "dependencies": { - "is-glob": "^4.0.3" - }, -@@ -3846,10 +3619,9 @@ - } - }, - "node_modules/glob/node_modules/brace-expansion": { -- "version": "2.0.1", -- "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", -- "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", -- "license": "MIT", -+ "version": "2.0.2", -+ "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.2.tgz", -+ "integrity": "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==", - "dependencies": { - "balanced-match": "^1.0.0" - } -@@ -3858,7 +3630,6 @@ - "version": "9.0.5", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", - "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", -- "license": "ISC", - "dependencies": { - "brace-expansion": "^2.0.1" - }, -@@ -3873,7 +3644,6 @@ - "version": "14.0.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-14.0.0.tgz", - "integrity": "sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==", -- "license": "MIT", - "engines": { - "node": ">=18" - }, -@@ -3886,7 +3656,6 @@ - "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz", - "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==", - "devOptional": true, -- "license": "MIT", - "engines": { - "node": ">= 0.4" - }, -@@ -3898,21 +3667,18 @@ - "version": "4.2.11", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", - "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", -- "dev": true, -- "license": "ISC" -+ "dev": true - }, - "node_modules/graphemer": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", -- "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==", -- "license": "MIT" -+ "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==" - }, - "node_modules/handlebars": { - "version": "4.7.8", - "resolved": "https://registry.npmjs.org/handlebars/-/handlebars-4.7.8.tgz", - "integrity": "sha512-vafaFqs8MZkRrSX7sFVUdo3ap/eNiLnb4IakshzvP56X5Nr1iGKAIqdX6tMlm6HcNRIkr6AxO5jFEoJzzpT8aQ==", - "dev": true, -- "license": "MIT", - "dependencies": { - "minimist": "^1.2.5", - "neo-async": "^2.6.2", -@@ -3933,7 +3699,6 @@ - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", -- "license": "MIT", - "engines": { - "node": ">=8" - } -@@ -3943,7 +3708,6 @@ - "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz", - "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==", - "devOptional": true, -- "license": "MIT", - "engines": { - "node": ">= 0.4" - }, -@@ -3956,7 +3720,6 @@ - "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz", - "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==", - "devOptional": true, -- "license": "MIT", - "dependencies": { - "has-symbols": "^1.0.3" - }, -@@ -3971,7 +3734,6 @@ - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", - "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", -- "license": "MIT", - "dependencies": { - "function-bind": "^1.1.2" - }, -@@ -3984,7 +3746,6 @@ - "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz", - "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==", - "dev": true, -- "license": "MIT", - "bin": { - "he": "bin/he" - } -@@ -3993,7 +3754,6 @@ - "version": "5.3.2", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz", - "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==", -- "license": "MIT", - "engines": { - "node": ">= 4" - } -@@ -4002,7 +3762,6 @@ - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.1.tgz", - "integrity": "sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==", -- "license": "MIT", - "dependencies": { - "parent-module": "^1.0.0", - "resolve-from": "^4.0.0" -@@ -4018,7 +3777,6 @@ - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", - "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", -- "license": "MIT", - "peer": true, - "engines": { - "node": ">=0.8.19" -@@ -4028,7 +3786,6 @@ - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", - "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", -- "license": "MIT", - "dependencies": { - "binary-extensions": "^2.0.0" - }, -@@ -4040,7 +3797,6 @@ - "version": "2.16.1", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.16.1.tgz", - "integrity": "sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==", -- "license": "MIT", - "dependencies": { - "hasown": "^2.0.2" - }, -@@ -4055,7 +3811,6 @@ - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", - "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", -- "license": "MIT", - "engines": { - "node": ">=0.10.0" - } -@@ -4064,7 +3819,6 @@ - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", -- "license": "MIT", - "engines": { - "node": ">=8" - } -@@ -4073,7 +3827,6 @@ - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", - "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", -- "license": "MIT", - "dependencies": { - "is-extglob": "^2.1.1" - }, -@@ -4085,7 +3838,6 @@ - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", - "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", -- "license": "MIT", - "engines": { - "node": ">=0.12.0" - } -@@ -4093,14 +3845,12 @@ - "node_modules/isexe": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", -- "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", -- "license": "ISC" -+ "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==" - }, - "node_modules/jackspeak": { - "version": "3.4.3", - "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-3.4.3.tgz", - "integrity": "sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==", -- "license": "BlueOak-1.0.0", - "dependencies": { - "@isaacs/cliui": "^8.0.2" - }, -@@ -4115,7 +3865,6 @@ - "version": "1.21.7", - "resolved": "https://registry.npmjs.org/jiti/-/jiti-1.21.7.tgz", - "integrity": "sha512-/imKNG4EbWNrVjoNC/1H5/9GFy+tqjGBHCaSsN+P2RnPqjsLmv6UD3Ej+Kj8nBWaRAwyk7kK5ZUc+OEatnTR3A==", -- "license": "MIT", - "bin": { - "jiti": "bin/jiti.js" - } -@@ -4124,14 +3873,12 @@ - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", - "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", -- "dev": true, -- "license": "MIT" -+ "dev": true - }, - "node_modules/js-yaml": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", - "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", -- "license": "MIT", - "dependencies": { - "argparse": "^2.0.1" - }, -@@ -4144,7 +3891,6 @@ - "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz", - "integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==", - "dev": true, -- "license": "MIT", - "bin": { - "jsesc": "bin/jsesc" - }, -@@ -4156,20 +3902,17 @@ - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", - "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", -- "license": "MIT", - "peer": true - }, - "node_modules/json-schema-traverse": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", -- "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", -- "license": "MIT" -+ "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" - }, - "node_modules/json-stable-stringify-without-jsonify": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", - "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", -- "license": "MIT", - "peer": true - }, - "node_modules/json5": { -@@ -4177,7 +3920,6 @@ - "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", - "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", - "dev": true, -- "license": "MIT", - "bin": { - "json5": "lib/cli.js" - }, -@@ -4190,7 +3932,6 @@ - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", - "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", - "dev": true, -- "license": "MIT", - "dependencies": { - "universalify": "^2.0.0" - }, -@@ -4202,18 +3943,16 @@ - "version": "4.5.4", - "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", - "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", -- "license": "MIT", - "peer": true, - "dependencies": { - "json-buffer": "3.0.1" - } - }, - "node_modules/laravel-vite-plugin": { -- "version": "1.2.0", -- "resolved": "https://registry.npmjs.org/laravel-vite-plugin/-/laravel-vite-plugin-1.2.0.tgz", -- "integrity": "sha512-R0pJ+IcTVeqEMoKz/B2Ij57QVq3sFTABiFmb06gAwFdivbOgsUtuhX6N2MGLEArajrS3U5JbberzwOe7uXHMHQ==", -+ "version": "1.3.0", -+ "resolved": "https://registry.npmjs.org/laravel-vite-plugin/-/laravel-vite-plugin-1.3.0.tgz", -+ "integrity": "sha512-P5qyG56YbYxM8OuYmK2OkhcKe0AksNVJUjq9LUZ5tOekU9fBn9LujYyctI4t9XoLjuMvHJXXpCoPntY1oKltuA==", - "dev": true, -- "license": "MIT", - "dependencies": { - "picocolors": "^1.0.0", - "vite-plugin-full-reload": "^1.1.0" -@@ -4232,7 +3971,6 @@ - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", - "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", -- "license": "MIT", - "peer": true, - "dependencies": { - "prelude-ls": "^1.2.1", -@@ -4246,7 +3984,6 @@ - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-3.1.3.tgz", - "integrity": "sha512-/vlFKAoH5Cgt3Ie+JLhRbwOsCQePABiU3tJ1egGvyQ+33R/vcwM2Zl2QR/LzjsBeItPt3oSVXapn+m4nQDvpzw==", -- "license": "MIT", - "engines": { - "node": ">=14" - }, -@@ -4257,14 +3994,12 @@ - "node_modules/lines-and-columns": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", -- "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", -- "license": "MIT" -+ "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==" - }, - "node_modules/locate-path": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", - "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", -- "license": "MIT", - "peer": true, - "dependencies": { - "p-locate": "^5.0.0" -@@ -4276,53 +4011,41 @@ - "url": "https://github.com/sponsors/sindresorhus" - } - }, -- "node_modules/lodash": { -- "version": "4.17.21", -- "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", -- "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", -- "license": "MIT" -- }, - "node_modules/lodash.castarray": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/lodash.castarray/-/lodash.castarray-4.4.0.tgz", - "integrity": "sha512-aVx8ztPv7/2ULbArGJ2Y42bG1mEQ5mGjpdvrbJcJFU3TbYybe+QlLS4pst9zV52ymy2in1KpFPiZnAOATxD4+Q==", -- "dev": true, -- "license": "MIT" -+ "dev": true - }, - "node_modules/lodash.clonedeep": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz", - "integrity": "sha512-H5ZhCF25riFd9uB5UCkVKo61m3S/xZk1x4wA6yp/L3RFP6Z/eHH1ymQcGLo7J3GMPfm0V/7m1tryHuGVxpqEBQ==", -- "dev": true, -- "license": "MIT" -+ "dev": true - }, - "node_modules/lodash.isequal": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/lodash.isequal/-/lodash.isequal-4.5.0.tgz", - "integrity": "sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ==", - "deprecated": "This package is deprecated. Use require('node:util').isDeepStrictEqual instead.", -- "dev": true, -- "license": "MIT" -+ "dev": true - }, - "node_modules/lodash.isplainobject": { - "version": "4.0.6", - "resolved": "https://registry.npmjs.org/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz", - "integrity": "sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==", -- "dev": true, -- "license": "MIT" -+ "dev": true - }, - "node_modules/lodash.merge": { - "version": "4.6.2", - "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", -- "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", -- "license": "MIT" -+ "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==" - }, - "node_modules/lru-cache": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", - "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", - "dev": true, -- "license": "ISC", - "dependencies": { - "yallist": "^3.0.2" - } -@@ -4331,7 +4054,6 @@ - "version": "0.487.0", - "resolved": "https://registry.npmjs.org/lucide-vue-next/-/lucide-vue-next-0.487.0.tgz", - "integrity": "sha512-ilVgu9EHkfId7WSjmoPkzp13cuzpSGO5J16AmltjRHFoj6MlCBGY8BzsBU/ISKVlDheUxM+MsIYjNo/1hSEa6w==", -- "license": "ISC", - "peerDependencies": { - "vue": ">=3.0.1" - } -@@ -4340,7 +4062,6 @@ - "version": "0.30.17", - "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.17.tgz", - "integrity": "sha512-sNPKHvyjVf7gyjwS4xGTaW/mCnF8wnjtifKBEhxfZ7E/S8tQ0rssrwGNn6q8JH/ohItJfSQp9mBtQYuTlH5QnA==", -- "license": "MIT", - "dependencies": { - "@jridgewell/sourcemap-codec": "^1.5.0" - } -@@ -4350,7 +4071,6 @@ - "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz", - "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==", - "devOptional": true, -- "license": "MIT", - "engines": { - "node": ">= 0.4" - } -@@ -4359,7 +4079,6 @@ - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", - "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", -- "license": "MIT", - "engines": { - "node": ">= 8" - } -@@ -4368,7 +4087,6 @@ - "version": "4.0.8", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz", - "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==", -- "license": "MIT", - "dependencies": { - "braces": "^3.0.3", - "picomatch": "^2.3.1" -@@ -4382,7 +4100,6 @@ - "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", - "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", - "devOptional": true, -- "license": "MIT", - "engines": { - "node": ">= 0.6" - } -@@ -4392,7 +4109,6 @@ - "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", - "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", - "devOptional": true, -- "license": "MIT", - "dependencies": { - "mime-db": "1.52.0" - }, -@@ -4405,7 +4121,6 @@ - "resolved": "https://registry.npmjs.org/mini-svg-data-uri/-/mini-svg-data-uri-1.4.4.tgz", - "integrity": "sha512-r9deDe9p5FJUPZAk3A59wGH7Ii9YrjjWw0jmw/liSbHl2CHiyXj6FcDXDu2K3TjVAXqiJdaw3xxwlZZr9E6nHg==", - "dev": true, -- "license": "MIT", - "bin": { - "mini-svg-data-uri": "cli.js" - } -@@ -4414,7 +4129,6 @@ - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", -- "license": "ISC", - "dependencies": { - "brace-expansion": "^1.1.7" - }, -@@ -4427,7 +4141,6 @@ - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", - "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", - "dev": true, -- "license": "MIT", - "funding": { - "url": "https://github.com/sponsors/ljharb" - } -@@ -4436,7 +4149,6 @@ - "version": "7.1.2", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz", - "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==", -- "license": "ISC", - "engines": { - "node": ">=16 || 14 >=14.17" - } -@@ -4444,21 +4156,18 @@ - "node_modules/ms": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", -- "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", -- "license": "MIT" -+ "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" - }, - "node_modules/muggle-string": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/muggle-string/-/muggle-string-0.4.1.tgz", - "integrity": "sha512-VNTrAak/KhO2i8dqqnqnAHOa3cYBwXEZe9h+D5h/1ZqFSTEFHdM65lR7RoIqq3tBBYavsOXV84NoHXZ0AkPyqQ==", -- "dev": true, -- "license": "MIT" -+ "dev": true - }, - "node_modules/mz": { - "version": "2.7.0", - "resolved": "https://registry.npmjs.org/mz/-/mz-2.7.0.tgz", - "integrity": "sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==", -- "license": "MIT", - "dependencies": { - "any-promise": "^1.0.0", - "object-assign": "^4.0.1", -@@ -4475,7 +4184,6 @@ - "url": "https://github.com/sponsors/ai" - } - ], -- "license": "MIT", - "bin": { - "nanoid": "bin/nanoid.cjs" - }, -@@ -4486,28 +4194,24 @@ - "node_modules/natural-compare": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", -- "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", -- "license": "MIT" -+ "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==" - }, - "node_modules/neo-async": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", - "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==", -- "dev": true, -- "license": "MIT" -+ "dev": true - }, - "node_modules/node-releases": { - "version": "2.0.19", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.19.tgz", - "integrity": "sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==", -- "dev": true, -- "license": "MIT" -+ "dev": true - }, - "node_modules/normalize-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", - "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", -- "license": "MIT", - "engines": { - "node": ">=0.10.0" - } -@@ -4517,7 +4221,6 @@ - "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", - "integrity": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==", - "dev": true, -- "license": "MIT", - "engines": { - "node": ">=0.10.0" - } -@@ -4527,7 +4230,6 @@ - "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", - "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", - "dev": true, -- "license": "MIT", - "dependencies": { - "path-key": "^3.0.0" - }, -@@ -4539,14 +4241,12 @@ - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/nprogress/-/nprogress-0.2.0.tgz", - "integrity": "sha512-I19aIingLgR1fmhftnbWWO3dXc0hSxqHQHQb3H8m+K3TnEn/iSeTZZOyvKXWqQESMwuUVnatlCnZdLBZZt2VSA==", -- "devOptional": true, -- "license": "MIT" -+ "devOptional": true - }, - "node_modules/nth-check": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.1.1.tgz", - "integrity": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==", -- "license": "BSD-2-Clause", - "peer": true, - "dependencies": { - "boolbase": "^1.0.0" -@@ -4559,7 +4259,6 @@ - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", - "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", -- "license": "MIT", - "engines": { - "node": ">=0.10.0" - } -@@ -4568,7 +4267,6 @@ - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/object-hash/-/object-hash-3.0.0.tgz", - "integrity": "sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==", -- "license": "MIT", - "engines": { - "node": ">= 6" - } -@@ -4578,7 +4276,6 @@ - "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.4.tgz", - "integrity": "sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==", - "dev": true, -- "license": "MIT", - "engines": { - "node": ">= 0.4" - }, -@@ -4589,22 +4286,19 @@ - "node_modules/ohash": { - "version": "2.0.11", - "resolved": "https://registry.npmjs.org/ohash/-/ohash-2.0.11.tgz", -- "integrity": "sha512-RdR9FQrFwNBNXAr4GixM8YaRZRJ5PUWbKYbE5eOsrwAjJW0q2REGcf79oYPsLyskQCZG1PLN+S/K1V00joZAoQ==", -- "license": "MIT" -+ "integrity": "sha512-RdR9FQrFwNBNXAr4GixM8YaRZRJ5PUWbKYbE5eOsrwAjJW0q2REGcf79oYPsLyskQCZG1PLN+S/K1V00joZAoQ==" - }, - "node_modules/openapi-types": { - "version": "12.1.3", - "resolved": "https://registry.npmjs.org/openapi-types/-/openapi-types-12.1.3.tgz", - "integrity": "sha512-N4YtSYJqghVu4iek2ZUvcN/0aqH1kRDuNqzcycDxhOUpg7GdvLa2F3DgS6yBNhInhv2r/6I0Flkn7CqL8+nIcw==", -- "dev": true, -- "license": "MIT" -+ "dev": true - }, - "node_modules/openapi-zod-client": { - "version": "1.18.3", - "resolved": "https://registry.npmjs.org/openapi-zod-client/-/openapi-zod-client-1.18.3.tgz", - "integrity": "sha512-10vYK7xo1yyZfcoRvYNGIsDeej1CG9k63u8dkjbGBlr+NHZMy2Iy2h9s11UWNKdj6XMDWbNOPp5gIy8YdpgPtQ==", - "dev": true, -- "license": "ISC", - "dependencies": { - "@apidevtools/swagger-parser": "^10.1.0", - "@liuli-util/fs-extra": "^0.1.0", -@@ -4630,7 +4324,6 @@ - "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.8.8.tgz", - "integrity": "sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==", - "dev": true, -- "license": "MIT", - "bin": { - "prettier": "bin-prettier.js" - }, -@@ -4646,7 +4339,6 @@ - "resolved": "https://registry.npmjs.org/openapi3-ts/-/openapi3-ts-3.1.0.tgz", - "integrity": "sha512-1qKTvCCVoV0rkwUh1zq5o8QyghmwYPuhdvtjv1rFjuOnJToXhQyF8eGjNETQ8QmGjr9Jz/tkAKLITIl2s7dw3A==", - "dev": true, -- "license": "MIT", - "dependencies": { - "yaml": "^2.1.3" - } -@@ -4655,7 +4347,6 @@ - "version": "0.9.4", - "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz", - "integrity": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==", -- "license": "MIT", - "peer": true, - "dependencies": { - "deep-is": "^0.1.3", -@@ -4673,7 +4364,6 @@ - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", - "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", -- "license": "MIT", - "peer": true, - "dependencies": { - "yocto-queue": "^0.1.0" -@@ -4689,7 +4379,6 @@ - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", - "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", -- "license": "MIT", - "peer": true, - "dependencies": { - "p-limit": "^3.0.2" -@@ -4704,14 +4393,12 @@ - "node_modules/package-json-from-dist": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz", -- "integrity": "sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==", -- "license": "BlueOak-1.0.0" -+ "integrity": "sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==" - }, - "node_modules/parent-module": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", - "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", -- "license": "MIT", - "dependencies": { - "callsites": "^3.0.0" - }, -@@ -4722,8 +4409,7 @@ - "node_modules/parse-duration": { - "version": "2.1.4", - "resolved": "https://registry.npmjs.org/parse-duration/-/parse-duration-2.1.4.tgz", -- "integrity": "sha512-b98m6MsCh+akxfyoz9w9dt0AlH2dfYLOBss5SdDsr9pkhKNvkWBXU/r8A4ahmIGByBOLV2+4YwfCuFxbDDaGyg==", -- "license": "MIT" -+ "integrity": "sha512-b98m6MsCh+akxfyoz9w9dt0AlH2dfYLOBss5SdDsr9pkhKNvkWBXU/r8A4ahmIGByBOLV2+4YwfCuFxbDDaGyg==" - }, - "node_modules/pastable": { - "version": "2.2.1", -@@ -4755,14 +4441,12 @@ - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/path-browserify/-/path-browserify-1.0.1.tgz", - "integrity": "sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==", -- "dev": true, -- "license": "MIT" -+ "dev": true - }, - "node_modules/path-exists": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", - "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", -- "license": "MIT", - "peer": true, - "engines": { - "node": ">=8" -@@ -4772,7 +4456,6 @@ - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", - "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", -- "license": "MIT", - "engines": { - "node": ">=8" - } -@@ -4780,14 +4463,12 @@ - "node_modules/path-parse": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", -- "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", -- "license": "MIT" -+ "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==" - }, - "node_modules/path-scurry": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.11.1.tgz", - "integrity": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==", -- "license": "BlueOak-1.0.0", - "dependencies": { - "lru-cache": "^10.2.0", - "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" -@@ -4802,20 +4483,17 @@ - "node_modules/path-scurry/node_modules/lru-cache": { - "version": "10.4.3", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz", -- "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==", -- "license": "ISC" -+ "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==" - }, - "node_modules/picocolors": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", -- "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", -- "license": "ISC" -+ "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==" - }, - "node_modules/picomatch": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", - "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", -- "license": "MIT", - "engines": { - "node": ">=8.6" - }, -@@ -4827,7 +4505,6 @@ - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", - "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", -- "license": "MIT", - "engines": { - "node": ">=0.10.0" - } -@@ -4836,7 +4513,6 @@ - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/pinia/-/pinia-2.3.1.tgz", - "integrity": "sha512-khUlZSwt9xXCaTbbxFYBKDc/bWAGWJjOgvxETwkTN7KRm66EeT1ZdZj6i2ceh9sP2Pzqsbc704r2yngBrxBVug==", -- "license": "MIT", - "dependencies": { - "@vue/devtools-api": "^6.6.3", - "vue-demi": "^0.14.10" -@@ -4858,19 +4534,17 @@ - "version": "4.0.7", - "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.7.tgz", - "integrity": "sha512-TfySrs/5nm8fQJDcBDuUng3VOUKsd7S+zqvbOTiGXHfxX4wK31ard+hoNuvkicM/2YFzlpDgABOevKSsB4G/FA==", -- "license": "MIT", - "engines": { - "node": ">= 6" - } - }, - "node_modules/playwright": { -- "version": "1.51.1", -- "resolved": "https://registry.npmjs.org/playwright/-/playwright-1.51.1.tgz", -- "integrity": "sha512-kkx+MB2KQRkyxjYPc3a0wLZZoDczmppyGJIvQ43l+aZihkaVvmu/21kiyaHeHjiFxjxNNFnUncKmcGIyOojsaw==", -+ "version": "1.54.2", -+ "resolved": "https://registry.npmjs.org/playwright/-/playwright-1.54.2.tgz", -+ "integrity": "sha512-Hu/BMoA1NAdRUuulyvQC0pEqZ4vQbGfn8f7wPXcnqQmM+zct9UliKxsIkLNmz/ku7LElUNqmaiv1TG/aL5ACsw==", - "dev": true, -- "license": "Apache-2.0", - "dependencies": { -- "playwright-core": "1.51.1" -+ "playwright-core": "1.54.2" - }, - "bin": { - "playwright": "cli.js" -@@ -4883,11 +4557,10 @@ - } - }, - "node_modules/playwright-core": { -- "version": "1.51.1", -- "resolved": "https://registry.npmjs.org/playwright-core/-/playwright-core-1.51.1.tgz", -- "integrity": "sha512-/crRMj8+j/Nq5s8QcvegseuyeZPxpQCZb6HNk3Sos3BlZyAknRjoyJPFWkpNn8v0+P3WiwqFF8P+zQo4eqiNuw==", -+ "version": "1.54.2", -+ "resolved": "https://registry.npmjs.org/playwright-core/-/playwright-core-1.54.2.tgz", -+ "integrity": "sha512-n5r4HFbMmWsB4twG7tJLDN9gmBUeSPcsBZiWSE4DnYz9mJMAFqr2ID7+eGC9kpEnxExJ1epttwR59LEWCk8mtA==", - "dev": true, -- "license": "Apache-2.0", - "bin": { - "playwright-core": "cli.js" - }, -@@ -4896,9 +4569,9 @@ - } - }, - "node_modules/postcss": { -- "version": "8.5.3", -- "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.3.tgz", -- "integrity": "sha512-dle9A3yYxlBSrt8Fu+IpjGT8SY8hN0mlaA6GY8t0P5PjIOZemULz/E2Bnm/2dcUOena75OTNkHI76uZBNUUq3A==", -+ "version": "8.5.6", -+ "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.6.tgz", -+ "integrity": "sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==", - "funding": [ - { - "type": "opencollective", -@@ -4913,9 +4586,8 @@ - "url": "https://github.com/sponsors/ai" - } - ], -- "license": "MIT", - "dependencies": { -- "nanoid": "^3.3.8", -+ "nanoid": "^3.3.11", - "picocolors": "^1.1.1", - "source-map-js": "^1.2.1" - }, -@@ -4927,7 +4599,6 @@ - "version": "15.1.0", - "resolved": "https://registry.npmjs.org/postcss-import/-/postcss-import-15.1.0.tgz", - "integrity": "sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==", -- "license": "MIT", - "dependencies": { - "postcss-value-parser": "^4.0.0", - "read-cache": "^1.0.0", -@@ -4944,7 +4615,6 @@ - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/postcss-js/-/postcss-js-4.0.1.tgz", - "integrity": "sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==", -- "license": "MIT", - "dependencies": { - "camelcase-css": "^2.0.1" - }, -@@ -4973,7 +4643,6 @@ - "url": "https://github.com/sponsors/ai" - } - ], -- "license": "MIT", - "dependencies": { - "lilconfig": "^3.0.0", - "yaml": "^2.3.4" -@@ -5008,7 +4677,6 @@ - "url": "https://github.com/sponsors/ai" - } - ], -- "license": "MIT", - "dependencies": { - "postcss-selector-parser": "^6.1.1" - }, -@@ -5023,7 +4691,6 @@ - "version": "6.1.2", - "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.1.2.tgz", - "integrity": "sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==", -- "license": "MIT", - "dependencies": { - "cssesc": "^3.0.0", - "util-deprecate": "^1.0.2" -@@ -5047,7 +4714,6 @@ - "url": "https://opencollective.com/csstools" - } - ], -- "license": "MIT-0", - "dependencies": { - "@csstools/selector-resolve-nested": "^1.1.0", - "@csstools/selector-specificity": "^3.1.1", -@@ -5075,7 +4741,6 @@ - "url": "https://opencollective.com/csstools" - } - ], -- "license": "MIT-0", - "engines": { - "node": "^14 || ^16 || >=18" - }, -@@ -5098,7 +4763,6 @@ - "url": "https://opencollective.com/csstools" - } - ], -- "license": "MIT-0", - "engines": { - "node": "^14 || ^16 || >=18" - }, -@@ -5111,7 +4775,6 @@ - "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.1.2.tgz", - "integrity": "sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==", - "dev": true, -- "license": "MIT", - "dependencies": { - "cssesc": "^3.0.0", - "util-deprecate": "^1.0.2" -@@ -5125,7 +4788,6 @@ - "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.10.tgz", - "integrity": "sha512-IQ7TZdoaqbT+LCpShg46jnZVlhWD2w6iQYAcYXfHARZ7X1t/UGhhceQDs5X0cGqKvYlHNOuv7Oa1xmb0oQuA3w==", - "dev": true, -- "license": "MIT", - "dependencies": { - "cssesc": "^3.0.0", - "util-deprecate": "^1.0.2" -@@ -5137,24 +4799,21 @@ - "node_modules/postcss-value-parser": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", -- "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==", -- "license": "MIT" -+ "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==" - }, - "node_modules/prelude-ls": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", - "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", -- "license": "MIT", - "peer": true, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/prettier": { -- "version": "3.5.3", -- "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.5.3.tgz", -- "integrity": "sha512-QQtaxnoDJeAkDvDKWCLiwIXkTgRhwYDEQCghU9Z6q03iyek/rxRh/2lC3HB7P8sWT2xC/y5JDctPLBIGzHKbhw==", -- "license": "MIT", -+ "version": "3.6.2", -+ "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.6.2.tgz", -+ "integrity": "sha512-I7AIg5boAr5R0FFtJ6rCfD+LFsWHp81dolrFD8S79U9tb8Az2nGrJncnMSnys+bpQJfRUzqs9hnA81OAA3hCuQ==", - "peer": true, - "bin": { - "prettier": "bin/prettier.cjs" -@@ -5170,7 +4829,6 @@ - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/prettier-linter-helpers/-/prettier-linter-helpers-1.0.0.tgz", - "integrity": "sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==", -- "license": "MIT", - "dependencies": { - "fast-diff": "^1.1.2" - }, -@@ -5182,14 +4840,12 @@ - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz", - "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==", -- "devOptional": true, -- "license": "MIT" -+ "devOptional": true - }, - "node_modules/punycode": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", - "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", -- "license": "MIT", - "engines": { - "node": ">=6" - } -@@ -5199,7 +4855,6 @@ - "resolved": "https://registry.npmjs.org/qs/-/qs-6.14.0.tgz", - "integrity": "sha512-YWWTjgABSKcvs/nWBi9PycY/JiPJqOD4JA6o9Sej2AtvSGarXxKC3OQSk4pAarbdQlKAh5D4FCQkJNkW+GAn3w==", - "dev": true, -- "license": "BSD-3-Clause", - "dependencies": { - "side-channel": "^1.1.0" - }, -@@ -5227,14 +4882,12 @@ - "type": "consulting", - "url": "https://feross.org/support" - } -- ], -- "license": "MIT" -+ ] - }, - "node_modules/radix-vue": { - "version": "1.9.17", - "resolved": "https://registry.npmjs.org/radix-vue/-/radix-vue-1.9.17.tgz", - "integrity": "sha512-mVCu7I2vXt1L2IUYHTt0sZMz7s1K2ZtqKeTIxG3yC5mMFfLBG4FtE1FDeRMpDd+Hhg/ybi9+iXmAP1ISREndoQ==", -- "license": "MIT", - "dependencies": { - "@floating-ui/dom": "^1.6.7", - "@floating-ui/vue": "^1.1.0", -@@ -5255,14 +4908,12 @@ - "node_modules/radix-vue/node_modules/@types/web-bluetooth": { - "version": "0.0.20", - "resolved": "https://registry.npmjs.org/@types/web-bluetooth/-/web-bluetooth-0.0.20.tgz", -- "integrity": "sha512-g9gZnnXVq7gM7v3tJCWV/qw7w+KeOlSHAhgF9RytFyifW6AF61hdT2ucrYhPq9hLs5JIryeupHV3qGk95dH9ow==", -- "license": "MIT" -+ "integrity": "sha512-g9gZnnXVq7gM7v3tJCWV/qw7w+KeOlSHAhgF9RytFyifW6AF61hdT2ucrYhPq9hLs5JIryeupHV3qGk95dH9ow==" - }, - "node_modules/radix-vue/node_modules/@vueuse/core": { - "version": "10.11.1", - "resolved": "https://registry.npmjs.org/@vueuse/core/-/core-10.11.1.tgz", - "integrity": "sha512-guoy26JQktXPcz+0n3GukWIy/JDNKti9v6VEMu6kV2sYBsWuGiTU8OWdg+ADfUbHg3/3DlqySDe7JmdHrktiww==", -- "license": "MIT", - "dependencies": { - "@types/web-bluetooth": "^0.0.20", - "@vueuse/metadata": "10.11.1", -@@ -5277,7 +4928,6 @@ - "version": "10.11.1", - "resolved": "https://registry.npmjs.org/@vueuse/metadata/-/metadata-10.11.1.tgz", - "integrity": "sha512-IGa5FXd003Ug1qAZmyE8wF3sJ81xGLSqTqtQ6jaVfkeZ4i5kS2mwQF61yhVqojRnenVew5PldLyRgvdl4YYuSw==", -- "license": "MIT", - "funding": { - "url": "https://github.com/sponsors/antfu" - } -@@ -5286,7 +4936,6 @@ - "version": "10.11.1", - "resolved": "https://registry.npmjs.org/@vueuse/shared/-/shared-10.11.1.tgz", - "integrity": "sha512-LHpC8711VFZlDaYUXEBbFBCQ7GS3dVU9mjOhhMhXP6txTV4EhYQg/KGnQuvt/sPAtoUKq7VVUnL6mVtFoL42sA==", -- "license": "MIT", - "dependencies": { - "vue-demi": ">=0.14.8" - }, -@@ -5304,7 +4953,6 @@ - "url": "https://github.com/sponsors/ai" - } - ], -- "license": "MIT", - "bin": { - "nanoid": "bin/nanoid.js" - }, -@@ -5316,7 +4964,6 @@ - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/read-cache/-/read-cache-1.0.0.tgz", - "integrity": "sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==", -- "license": "MIT", - "dependencies": { - "pify": "^2.3.0" - } -@@ -5325,7 +4972,6 @@ - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", - "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", -- "license": "MIT", - "dependencies": { - "picomatch": "^2.2.1" - }, -@@ -5334,10 +4980,9 @@ - } - }, - "node_modules/reka-ui": { -- "version": "2.2.0", -- "resolved": "https://registry.npmjs.org/reka-ui/-/reka-ui-2.2.0.tgz", -- "integrity": "sha512-eeRrLI4LwJ6dkdwks6KFNKGs0+beqZlHO3JMHen7THDTh+yJ5Z0KNwONmOhhV/0hZC2uJCEExgG60QPzGstkQg==", -- "license": "MIT", -+ "version": "2.4.1", -+ "resolved": "https://registry.npmjs.org/reka-ui/-/reka-ui-2.4.1.tgz", -+ "integrity": "sha512-NB7DrCsODN8MH02BWtgiExygfFcuuZ5/PTn6fMgjppmFHqePvNhmSn1LEuF35nel6PFbA4v+gdj0IoGN1yZ+vw==", - "dependencies": { - "@floating-ui/dom": "^1.6.13", - "@floating-ui/vue": "^1.1.6", -@@ -5357,15 +5002,13 @@ - "node_modules/remove-accents": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/remove-accents/-/remove-accents-0.5.0.tgz", -- "integrity": "sha512-8g3/Otx1eJaVD12e31UbJj1YzdtVvzH85HV7t+9MJYk/u3XmkOUJ5Ys9wQrf9PCPK8+xn4ymzqYCiZl6QWKn+A==", -- "license": "MIT" -+ "integrity": "sha512-8g3/Otx1eJaVD12e31UbJj1YzdtVvzH85HV7t+9MJYk/u3XmkOUJ5Ys9wQrf9PCPK8+xn4ymzqYCiZl6QWKn+A==" - }, - "node_modules/require-from-string": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", - "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", - "dev": true, -- "license": "MIT", - "engines": { - "node": ">=0.10.0" - } -@@ -5374,7 +5017,6 @@ - "version": "1.22.10", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.10.tgz", - "integrity": "sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w==", -- "license": "MIT", - "dependencies": { - "is-core-module": "^2.16.0", - "path-parse": "^1.0.7", -@@ -5394,7 +5036,6 @@ - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", - "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", -- "license": "MIT", - "engines": { - "node": ">=4" - } -@@ -5403,20 +5044,18 @@ - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.1.0.tgz", - "integrity": "sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==", -- "license": "MIT", - "engines": { - "iojs": ">=1.0.0", - "node": ">=0.10.0" - } - }, - "node_modules/rollup": { -- "version": "4.40.0", -- "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.40.0.tgz", -- "integrity": "sha512-Noe455xmA96nnqH5piFtLobsGbCij7Tu+tb3c1vYjNbTkfzGqXqQXG3wJaYXkRZuQ0vEYN4bhwg7QnIrqB5B+w==", -+ "version": "4.46.2", -+ "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.46.2.tgz", -+ "integrity": "sha512-WMmLFI+Boh6xbop+OAGo9cQ3OgX9MIg7xOQjn+pTCwOkk+FNDAeAemXkJ3HzDJrVXleLOFVa1ipuc1AmEx1Dwg==", - "dev": true, -- "license": "MIT", - "dependencies": { -- "@types/estree": "1.0.7" -+ "@types/estree": "1.0.8" - }, - "bin": { - "rollup": "dist/bin/rollup" -@@ -5426,26 +5065,26 @@ - "npm": ">=8.0.0" - }, - "optionalDependencies": { -- "@rollup/rollup-android-arm-eabi": "4.40.0", -- "@rollup/rollup-android-arm64": "4.40.0", -- "@rollup/rollup-darwin-arm64": "4.40.0", -- "@rollup/rollup-darwin-x64": "4.40.0", -- "@rollup/rollup-freebsd-arm64": "4.40.0", -- "@rollup/rollup-freebsd-x64": "4.40.0", -- "@rollup/rollup-linux-arm-gnueabihf": "4.40.0", -- "@rollup/rollup-linux-arm-musleabihf": "4.40.0", -- "@rollup/rollup-linux-arm64-gnu": "4.40.0", -- "@rollup/rollup-linux-arm64-musl": "4.40.0", -- "@rollup/rollup-linux-loongarch64-gnu": "4.40.0", -- "@rollup/rollup-linux-powerpc64le-gnu": "4.40.0", -- "@rollup/rollup-linux-riscv64-gnu": "4.40.0", -- "@rollup/rollup-linux-riscv64-musl": "4.40.0", -- "@rollup/rollup-linux-s390x-gnu": "4.40.0", -- "@rollup/rollup-linux-x64-gnu": "4.40.0", -- "@rollup/rollup-linux-x64-musl": "4.40.0", -- "@rollup/rollup-win32-arm64-msvc": "4.40.0", -- "@rollup/rollup-win32-ia32-msvc": "4.40.0", -- "@rollup/rollup-win32-x64-msvc": "4.40.0", -+ "@rollup/rollup-android-arm-eabi": "4.46.2", -+ "@rollup/rollup-android-arm64": "4.46.2", -+ "@rollup/rollup-darwin-arm64": "4.46.2", -+ "@rollup/rollup-darwin-x64": "4.46.2", -+ "@rollup/rollup-freebsd-arm64": "4.46.2", -+ "@rollup/rollup-freebsd-x64": "4.46.2", -+ "@rollup/rollup-linux-arm-gnueabihf": "4.46.2", -+ "@rollup/rollup-linux-arm-musleabihf": "4.46.2", -+ "@rollup/rollup-linux-arm64-gnu": "4.46.2", -+ "@rollup/rollup-linux-arm64-musl": "4.46.2", -+ "@rollup/rollup-linux-loongarch64-gnu": "4.46.2", -+ "@rollup/rollup-linux-ppc64-gnu": "4.46.2", -+ "@rollup/rollup-linux-riscv64-gnu": "4.46.2", -+ "@rollup/rollup-linux-riscv64-musl": "4.46.2", -+ "@rollup/rollup-linux-s390x-gnu": "4.46.2", -+ "@rollup/rollup-linux-x64-gnu": "4.46.2", -+ "@rollup/rollup-linux-x64-musl": "4.46.2", -+ "@rollup/rollup-win32-arm64-msvc": "4.46.2", -+ "@rollup/rollup-win32-ia32-msvc": "4.46.2", -+ "@rollup/rollup-win32-x64-msvc": "4.46.2", - "fsevents": "~2.3.2" - } - }, -@@ -5467,16 +5106,14 @@ - "url": "https://feross.org/support" - } - ], -- "license": "MIT", - "dependencies": { - "queue-microtask": "^1.2.2" - } - }, - "node_modules/semver": { -- "version": "7.7.1", -- "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.1.tgz", -- "integrity": "sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==", -- "license": "ISC", -+ "version": "7.7.2", -+ "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.2.tgz", -+ "integrity": "sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA==", - "bin": { - "semver": "bin/semver.js" - }, -@@ -5488,7 +5125,6 @@ - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", - "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", -- "license": "MIT", - "dependencies": { - "shebang-regex": "^3.0.0" - }, -@@ -5500,7 +5136,6 @@ - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", - "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", -- "license": "MIT", - "engines": { - "node": ">=8" - } -@@ -5510,7 +5145,6 @@ - "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.1.0.tgz", - "integrity": "sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==", - "dev": true, -- "license": "MIT", - "dependencies": { - "es-errors": "^1.3.0", - "object-inspect": "^1.13.3", -@@ -5530,7 +5164,6 @@ - "resolved": "https://registry.npmjs.org/side-channel-list/-/side-channel-list-1.0.0.tgz", - "integrity": "sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==", - "dev": true, -- "license": "MIT", - "dependencies": { - "es-errors": "^1.3.0", - "object-inspect": "^1.13.3" -@@ -5547,7 +5180,6 @@ - "resolved": "https://registry.npmjs.org/side-channel-map/-/side-channel-map-1.0.1.tgz", - "integrity": "sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==", - "dev": true, -- "license": "MIT", - "dependencies": { - "call-bound": "^1.0.2", - "es-errors": "^1.3.0", -@@ -5566,7 +5198,6 @@ - "resolved": "https://registry.npmjs.org/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz", - "integrity": "sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==", - "dev": true, -- "license": "MIT", - "dependencies": { - "call-bound": "^1.0.2", - "es-errors": "^1.3.0", -@@ -5585,7 +5216,6 @@ - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", - "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", -- "license": "ISC", - "engines": { - "node": ">=14" - }, -@@ -5598,7 +5228,6 @@ - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true, -- "license": "BSD-3-Clause", - "engines": { - "node": ">=0.10.0" - } -@@ -5607,7 +5236,6 @@ - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz", - "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==", -- "license": "BSD-3-Clause", - "engines": { - "node": ">=0.10.0" - } -@@ -5616,7 +5244,6 @@ - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", - "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", -- "license": "MIT", - "dependencies": { - "eastasianwidth": "^0.2.0", - "emoji-regex": "^9.2.2", -@@ -5634,7 +5261,6 @@ - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", - "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", -- "license": "MIT", - "dependencies": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", -@@ -5648,7 +5274,6 @@ - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", - "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", -- "license": "MIT", - "engines": { - "node": ">=8" - } -@@ -5656,14 +5281,12 @@ - "node_modules/string-width-cjs/node_modules/emoji-regex": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", -- "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", -- "license": "MIT" -+ "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==" - }, - "node_modules/string-width-cjs/node_modules/strip-ansi": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", -- "license": "MIT", - "dependencies": { - "ansi-regex": "^5.0.1" - }, -@@ -5675,7 +5298,6 @@ - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", - "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", -- "license": "MIT", - "dependencies": { - "ansi-regex": "^6.0.1" - }, -@@ -5691,7 +5313,6 @@ - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", -- "license": "MIT", - "dependencies": { - "ansi-regex": "^5.0.1" - }, -@@ -5703,7 +5324,6 @@ - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", - "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", -- "license": "MIT", - "engines": { - "node": ">=8" - } -@@ -5712,7 +5332,6 @@ - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", - "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", -- "license": "MIT", - "engines": { - "node": ">=8" - }, -@@ -5724,7 +5343,6 @@ - "version": "3.35.0", - "resolved": "https://registry.npmjs.org/sucrase/-/sucrase-3.35.0.tgz", - "integrity": "sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==", -- "license": "MIT", - "dependencies": { - "@jridgewell/gen-mapping": "^0.3.2", - "commander": "^4.0.0", -@@ -5746,7 +5364,6 @@ - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", -- "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, -@@ -5758,7 +5375,6 @@ - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", - "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", -- "license": "MIT", - "engines": { - "node": ">= 0.4" - }, -@@ -5767,13 +5383,11 @@ - } - }, - "node_modules/synckit": { -- "version": "0.11.3", -- "resolved": "https://registry.npmjs.org/synckit/-/synckit-0.11.3.tgz", -- "integrity": "sha512-szhWDqNNI9etJUvbZ1/cx1StnZx8yMmFxme48SwR4dty4ioSY50KEZlpv0qAfgc1fpRzuh9hBXEzoCpJ779dLg==", -- "license": "MIT", -+ "version": "0.11.11", -+ "resolved": "https://registry.npmjs.org/synckit/-/synckit-0.11.11.tgz", -+ "integrity": "sha512-MeQTA1r0litLUf0Rp/iisCaL8761lKAZHaimlbGK4j0HysC4PLfqygQj9srcs0m2RdtDYnF8UuYyKpbjHYp7Jw==", - "dependencies": { -- "@pkgr/core": "^0.2.1", -- "tslib": "^2.8.1" -+ "@pkgr/core": "^0.2.9" - }, - "engines": { - "node": "^14.18.0 || >=16.0.0" -@@ -5782,23 +5396,15 @@ - "url": "https://opencollective.com/synckit" - } - }, -- "node_modules/synckit/node_modules/tslib": { -- "version": "2.8.1", -- "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", -- "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==", -- "license": "0BSD" -- }, - "node_modules/tabbable": { - "version": "6.2.0", - "resolved": "https://registry.npmjs.org/tabbable/-/tabbable-6.2.0.tgz", -- "integrity": "sha512-Cat63mxsVJlzYvN51JmVXIgNoUokrIaT2zLclCXjRd8boZ0004U4KCs/sToJ75C6sdlByWxpYnb5Boif1VSFew==", -- "license": "MIT" -+ "integrity": "sha512-Cat63mxsVJlzYvN51JmVXIgNoUokrIaT2zLclCXjRd8boZ0004U4KCs/sToJ75C6sdlByWxpYnb5Boif1VSFew==" - }, - "node_modules/tailwind-merge": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/tailwind-merge/-/tailwind-merge-2.6.0.tgz", - "integrity": "sha512-P+Vu1qXfzediirmHOC3xKGAYeZtPcV9g76X+xg2FD4tYgR71ewMA35Y3sCz3zhiN/dwefRpJX0yBcgwi1fXNQA==", -- "license": "MIT", - "funding": { - "type": "github", - "url": "https://github.com/sponsors/dcastil" -@@ -5808,7 +5414,6 @@ - "version": "3.4.17", - "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.4.17.tgz", - "integrity": "sha512-w33E2aCvSDP0tW9RZuNXadXlkHXqFzSkQew/aIa2i/Sj8fThxwovwlXHSPXTbAHwEIhBFXAedUhP2tueAKP8Og==", -- "license": "MIT", - "dependencies": { - "@alloc/quick-lru": "^5.2.0", - "arg": "^5.0.2", -@@ -5845,7 +5450,6 @@ - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/tailwindcss-animate/-/tailwindcss-animate-1.0.7.tgz", - "integrity": "sha512-bl6mpH3T7I3UFxuvDEXLxy/VuFxBk5bbzplh7tXI68mwMokNYd1t9qPBHlnyTwfa4JGC4zP516I1hYYtQ/vspA==", -- "license": "MIT", - "peerDependencies": { - "tailwindcss": ">=3.0.0 || insiders" - } -@@ -5854,7 +5458,6 @@ - "version": "6.1.2", - "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.1.2.tgz", - "integrity": "sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==", -- "license": "MIT", - "dependencies": { - "cssesc": "^3.0.0", - "util-deprecate": "^1.0.2" -@@ -5868,7 +5471,6 @@ - "resolved": "https://registry.npmjs.org/tanu/-/tanu-0.1.13.tgz", - "integrity": "sha512-UbRmX7ccZ4wMVOY/Uw+7ji4VOkEYSYJG1+I4qzbnn4qh/jtvVbrm6BFnF12NQQ4+jGv21wKmjb1iFyUSVnBWcQ==", - "dev": true, -- "license": "MIT", - "dependencies": { - "tslib": "^2.4.0", - "typescript": "^4.7.4" -@@ -5878,15 +5480,13 @@ - "version": "2.8.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", - "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==", -- "dev": true, -- "license": "0BSD" -+ "dev": true - }, - "node_modules/tanu/node_modules/typescript": { - "version": "4.9.5", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.9.5.tgz", - "integrity": "sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==", - "dev": true, -- "license": "Apache-2.0", - "bin": { - "tsc": "bin/tsc", - "tsserver": "bin/tsserver" -@@ -5899,7 +5499,6 @@ - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/thenify/-/thenify-3.3.1.tgz", - "integrity": "sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==", -- "license": "MIT", - "dependencies": { - "any-promise": "^1.0.0" - } -@@ -5908,7 +5507,6 @@ - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/thenify-all/-/thenify-all-1.6.0.tgz", - "integrity": "sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==", -- "license": "MIT", - "dependencies": { - "thenify": ">= 3.1.0 < 4" - }, -@@ -5920,14 +5518,54 @@ - "version": "1.3.3", - "resolved": "https://registry.npmjs.org/tiny-invariant/-/tiny-invariant-1.3.3.tgz", - "integrity": "sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg==", -+ "dev": true -+ }, -+ "node_modules/tinyglobby": { -+ "version": "0.2.14", -+ "resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.14.tgz", -+ "integrity": "sha512-tX5e7OM1HnYr2+a2C/4V0htOcSQcoSTH9KgJnVvNm5zm/cyEWKJ7j7YutsH9CxMdtOkkLFy2AHrMci9IM8IPZQ==", - "dev": true, -- "license": "MIT" -+ "dependencies": { -+ "fdir": "^6.4.4", -+ "picomatch": "^4.0.2" -+ }, -+ "engines": { -+ "node": ">=12.0.0" -+ }, -+ "funding": { -+ "url": "https://github.com/sponsors/SuperchupuDev" -+ } -+ }, -+ "node_modules/tinyglobby/node_modules/fdir": { -+ "version": "6.4.6", -+ "resolved": "https://registry.npmjs.org/fdir/-/fdir-6.4.6.tgz", -+ "integrity": "sha512-hiFoqpyZcfNm1yc4u8oWCf9A2c4D3QjCrks3zmoVKVxpQRzmPNar1hUJcBG2RQHvEVGDN+Jm81ZheVLAQMK6+w==", -+ "dev": true, -+ "peerDependencies": { -+ "picomatch": "^3 || ^4" -+ }, -+ "peerDependenciesMeta": { -+ "picomatch": { -+ "optional": true -+ } -+ } -+ }, -+ "node_modules/tinyglobby/node_modules/picomatch": { -+ "version": "4.0.3", -+ "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.3.tgz", -+ "integrity": "sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==", -+ "dev": true, -+ "engines": { -+ "node": ">=12" -+ }, -+ "funding": { -+ "url": "https://github.com/sponsors/jonschlinkert" -+ } - }, - "node_modules/to-regex-range": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", - "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", -- "license": "MIT", - "dependencies": { - "is-number": "^7.0.0" - }, -@@ -5939,7 +5577,6 @@ - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-2.1.0.tgz", - "integrity": "sha512-CUgTZL1irw8u29bzrOD/nH85jqyc74D6SshFgujOIA7osm2Rz7dYH77agkx7H4FBNxDq7Cjf+IjaX/8zwFW+ZQ==", -- "license": "MIT", - "engines": { - "node": ">=18.12" - }, -@@ -5950,34 +5587,29 @@ - "node_modules/ts-interface-checker": { - "version": "0.1.13", - "resolved": "https://registry.npmjs.org/ts-interface-checker/-/ts-interface-checker-0.1.13.tgz", -- "integrity": "sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==", -- "license": "Apache-2.0" -+ "integrity": "sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==" - }, - "node_modules/ts-pattern": { -- "version": "5.7.0", -- "resolved": "https://registry.npmjs.org/ts-pattern/-/ts-pattern-5.7.0.tgz", -- "integrity": "sha512-0/FvIG4g3kNkYgbNwBBW5pZBkfpeYQnH+2AA3xmjkCAit/DSDPKmgwC3fKof4oYUq6gupClVOJlFl+939VRBMg==", -- "dev": true, -- "license": "MIT" -+ "version": "5.8.0", -+ "resolved": "https://registry.npmjs.org/ts-pattern/-/ts-pattern-5.8.0.tgz", -+ "integrity": "sha512-kIjN2qmWiHnhgr5DAkAafF9fwb0T5OhMVSWrm8XEdTFnX6+wfXwYOFjeF86UZ54vduqiR7BfqScFmXSzSaH8oA==", -+ "dev": true - }, - "node_modules/ts-toolbelt": { - "version": "9.6.0", - "resolved": "https://registry.npmjs.org/ts-toolbelt/-/ts-toolbelt-9.6.0.tgz", - "integrity": "sha512-nsZd8ZeNUzukXPlJmTBwUAuABDe/9qtVDelJeT/qW0ow3ZS3BsQJtNkan1802aM9Uf68/Y8ljw86Hu0h5IUW3w==", -- "dev": true, -- "license": "Apache-2.0" -+ "dev": true - }, - "node_modules/tslib": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.0.tgz", -- "integrity": "sha512-N82ooyxVNm6h1riLCoyS9e3fuJ3AMG2zIZs2Gd1ATcSFjSA23Q0fzjjZeh0jbJvWVDZ0cJT8yaNNaaXHzueNjg==", -- "license": "0BSD" -+ "integrity": "sha512-N82ooyxVNm6h1riLCoyS9e3fuJ3AMG2zIZs2Gd1ATcSFjSA23Q0fzjjZeh0jbJvWVDZ0cJT8yaNNaaXHzueNjg==" - }, - "node_modules/type-check": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", - "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", -- "license": "MIT", - "peer": true, - "dependencies": { - "prelude-ls": "^1.2.1" -@@ -5991,7 +5623,6 @@ - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-3.13.1.tgz", - "integrity": "sha512-tLq3bSNx+xSpwvAJnzrK0Ep5CLNWjvFTOp71URMaAEWBfRb9nnJiBoUe0tF8bI4ZFO3omgBR6NvnbzVUT3Ly4g==", - "dev": true, -- "license": "(MIT OR CC0-1.0)", - "engines": { - "node": ">=14.16" - }, -@@ -6000,10 +5631,9 @@ - } - }, - "node_modules/typescript": { -- "version": "5.8.3", -- "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.8.3.tgz", -- "integrity": "sha512-p1diW6TqL9L07nNxvRMM7hMMw4c5XOo/1ibL4aAIGmSAt9slTE1Xgw5KWuof2uTOvCg9BY7ZRi+GaF+7sfgPeQ==", -- "license": "Apache-2.0", -+ "version": "5.9.2", -+ "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.9.2.tgz", -+ "integrity": "sha512-CWBzXQrc/qOkhidw1OzBTQuYRbfyxDXJMVJ1XNwUHGROVmuaeiEm3OslpZ1RV96d7SKKjZKrSJu3+t/xlw3R9A==", - "bin": { - "tsc": "bin/tsc", - "tsserver": "bin/tsserver" -@@ -6013,14 +5643,14 @@ - } - }, - "node_modules/typescript-eslint": { -- "version": "8.29.1", -- "resolved": "https://registry.npmjs.org/typescript-eslint/-/typescript-eslint-8.29.1.tgz", -- "integrity": "sha512-f8cDkvndhbQMPcysk6CUSGBWV+g1utqdn71P5YKwMumVMOG/5k7cHq0KyG4O52nB0oKS4aN2Tp5+wB4APJGC+w==", -- "license": "MIT", -+ "version": "8.39.0", -+ "resolved": "https://registry.npmjs.org/typescript-eslint/-/typescript-eslint-8.39.0.tgz", -+ "integrity": "sha512-lH8FvtdtzcHJCkMOKnN73LIn6SLTpoojgJqDAxPm1jCR14eWSGPX8ul/gggBdPMk/d5+u9V854vTYQ8T5jF/1Q==", - "dependencies": { -- "@typescript-eslint/eslint-plugin": "8.29.1", -- "@typescript-eslint/parser": "8.29.1", -- "@typescript-eslint/utils": "8.29.1" -+ "@typescript-eslint/eslint-plugin": "8.39.0", -+ "@typescript-eslint/parser": "8.39.0", -+ "@typescript-eslint/typescript-estree": "8.39.0", -+ "@typescript-eslint/utils": "8.39.0" - }, - "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" -@@ -6031,7 +5661,7 @@ - }, - "peerDependencies": { - "eslint": "^8.57.0 || ^9.0.0", -- "typescript": ">=4.8.4 <5.9.0" -+ "typescript": ">=4.8.4 <6.0.0" - } - }, - "node_modules/uglify-js": { -@@ -6039,7 +5669,6 @@ - "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.19.3.tgz", - "integrity": "sha512-v3Xu+yuwBXisp6QYTcH4UbH+xYJXqnq2m/LtQVWKWzYc1iehYnLixoQDN9FH6/j9/oybfd6W9Ghwkl8+UMKTKQ==", - "dev": true, -- "license": "BSD-2-Clause", - "optional": true, - "bin": { - "uglifyjs": "bin/uglifyjs" -@@ -6052,15 +5681,13 @@ - "version": "6.21.0", - "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.21.0.tgz", - "integrity": "sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==", -- "dev": true, -- "license": "MIT" -+ "dev": true - }, - "node_modules/universalify": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz", - "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==", - "dev": true, -- "license": "MIT", - "engines": { - "node": ">= 10.0.0" - } -@@ -6084,7 +5711,6 @@ - "url": "https://github.com/sponsors/ai" - } - ], -- "license": "MIT", - "dependencies": { - "escalade": "^3.2.0", - "picocolors": "^1.1.1" -@@ -6100,7 +5726,6 @@ - "version": "4.4.1", - "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", - "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", -- "license": "BSD-2-Clause", - "dependencies": { - "punycode": "^2.1.0" - } -@@ -6108,19 +5733,20 @@ - "node_modules/util-deprecate": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", -- "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", -- "license": "MIT" -+ "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==" - }, - "node_modules/vite": { -- "version": "6.2.6", -- "resolved": "https://registry.npmjs.org/vite/-/vite-6.2.6.tgz", -- "integrity": "sha512-9xpjNl3kR4rVDZgPNdTL0/c6ao4km69a/2ihNQbcANz8RuCOK3hQBmLSJf3bRKVQjVMda+YvizNE8AwvogcPbw==", -+ "version": "6.3.5", -+ "resolved": "https://registry.npmjs.org/vite/-/vite-6.3.5.tgz", -+ "integrity": "sha512-cZn6NDFE7wdTpINgs++ZJ4N49W2vRp8LCKrn3Ob1kYNtOo21vfDoaV5GzBfLU4MovSAB8uNRm4jgzVQZ+mBzPQ==", - "dev": true, -- "license": "MIT", - "dependencies": { - "esbuild": "^0.25.0", -+ "fdir": "^6.4.4", -+ "picomatch": "^4.0.2", - "postcss": "^8.5.3", -- "rollup": "^4.30.1" -+ "rollup": "^4.34.9", -+ "tinyglobby": "^0.2.13" - }, - "bin": { - "vite": "bin/vite.js" -@@ -6188,7 +5814,6 @@ - "resolved": "https://registry.npmjs.org/vite-plugin-checker/-/vite-plugin-checker-0.8.0.tgz", - "integrity": "sha512-UA5uzOGm97UvZRTdZHiQVYFnd86AVn8EVaD4L3PoVzxH+IZSfaAw14WGFwX9QS23UW3lV/5bVKZn6l0w+q9P0g==", - "dev": true, -- "license": "MIT", - "dependencies": { - "@babel/code-frame": "^7.12.13", - "ansi-escapes": "^4.3.0", -@@ -6255,7 +5880,6 @@ - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", - "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", - "dev": true, -- "license": "MIT", - "engines": { - "node": ">=8" - } -@@ -6265,17 +5889,15 @@ - "resolved": "https://registry.npmjs.org/commander/-/commander-8.3.0.tgz", - "integrity": "sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==", - "dev": true, -- "license": "MIT", - "engines": { - "node": ">= 12" - } - }, - "node_modules/vite-plugin-checker/node_modules/fs-extra": { -- "version": "11.3.0", -- "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.3.0.tgz", -- "integrity": "sha512-Z4XaCL6dUDHfP/jT25jJKMmtxvuwbkrD1vNSMFlo9lNLY2c5FHYSQgHPRZUjAB26TpDEoW9HCOgplrdbaPV/ew==", -+ "version": "11.3.1", -+ "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.3.1.tgz", -+ "integrity": "sha512-eXvGGwZ5CL17ZSwHWd3bbgk7UUpF6IFHtP57NYYakPvHOs8GDgDe5KJI36jIJzDkJ6eJjuzRA8eBQb6SkKue0g==", - "dev": true, -- "license": "MIT", - "dependencies": { - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", -@@ -6290,7 +5912,6 @@ - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", - "dev": true, -- "license": "MIT", - "dependencies": { - "ansi-regex": "^5.0.1" - }, -@@ -6303,19 +5924,31 @@ - "resolved": "https://registry.npmjs.org/vite-plugin-full-reload/-/vite-plugin-full-reload-1.2.0.tgz", - "integrity": "sha512-kz18NW79x0IHbxRSHm0jttP4zoO9P9gXh+n6UTwlNKnviTTEpOlum6oS9SmecrTtSr+muHEn5TUuC75UovQzcA==", - "dev": true, -- "license": "MIT", - "dependencies": { - "picocolors": "^1.0.0", - "picomatch": "^2.3.1" - } - }, -+ "node_modules/vite/node_modules/fdir": { -+ "version": "6.4.6", -+ "resolved": "https://registry.npmjs.org/fdir/-/fdir-6.4.6.tgz", -+ "integrity": "sha512-hiFoqpyZcfNm1yc4u8oWCf9A2c4D3QjCrks3zmoVKVxpQRzmPNar1hUJcBG2RQHvEVGDN+Jm81ZheVLAQMK6+w==", -+ "dev": true, -+ "peerDependencies": { -+ "picomatch": "^3 || ^4" -+ }, -+ "peerDependenciesMeta": { -+ "picomatch": { -+ "optional": true -+ } -+ } -+ }, - "node_modules/vite/node_modules/fsevents": { - "version": "2.3.3", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", - "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", - "dev": true, - "hasInstallScript": true, -- "license": "MIT", - "optional": true, - "os": [ - "darwin" -@@ -6324,12 +5957,23 @@ - "node": "^8.16.0 || ^10.6.0 || >=11.0.0" - } - }, -+ "node_modules/vite/node_modules/picomatch": { -+ "version": "4.0.3", -+ "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.3.tgz", -+ "integrity": "sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==", -+ "dev": true, -+ "engines": { -+ "node": ">=12" -+ }, -+ "funding": { -+ "url": "https://github.com/sponsors/jonschlinkert" -+ } -+ }, - "node_modules/vscode-jsonrpc": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/vscode-jsonrpc/-/vscode-jsonrpc-6.0.0.tgz", - "integrity": "sha512-wnJA4BnEjOSyFMvjZdpiOwhSq9uDoK8e/kpRJDTaMYzwlkrhG1fwDIZI94CLsLzlCK5cIbMMtFlJlfR57Lavmg==", - "dev": true, -- "license": "MIT", - "engines": { - "node": ">=8.0.0 || >=10.0.0" - } -@@ -6339,7 +5983,6 @@ - "resolved": "https://registry.npmjs.org/vscode-languageclient/-/vscode-languageclient-7.0.0.tgz", - "integrity": "sha512-P9AXdAPlsCgslpP9pRxYPqkNYV7Xq8300/aZDpO35j1fJm/ncize8iGswzYlcvFw5DQUx4eVk+KvfXdL0rehNg==", - "dev": true, -- "license": "MIT", - "dependencies": { - "minimatch": "^3.0.4", - "semver": "^7.3.4", -@@ -6354,7 +5997,6 @@ - "resolved": "https://registry.npmjs.org/vscode-languageserver/-/vscode-languageserver-7.0.0.tgz", - "integrity": "sha512-60HTx5ID+fLRcgdHfmz0LDZAXYEV68fzwG0JWwEPBode9NuMYTIxuYXPg4ngO8i8+Ou0lM7y6GzaYWbiDL0drw==", - "dev": true, -- "license": "MIT", - "dependencies": { - "vscode-languageserver-protocol": "3.16.0" - }, -@@ -6367,7 +6009,6 @@ - "resolved": "https://registry.npmjs.org/vscode-languageserver-protocol/-/vscode-languageserver-protocol-3.16.0.tgz", - "integrity": "sha512-sdeUoAawceQdgIfTI+sdcwkiK2KU+2cbEYA0agzM2uqaUy2UpnnGHtWTHVEtS0ES4zHU0eMFRGN+oQgDxlD66A==", - "dev": true, -- "license": "MIT", - "dependencies": { - "vscode-jsonrpc": "6.0.0", - "vscode-languageserver-types": "3.16.0" -@@ -6377,34 +6018,30 @@ - "version": "1.0.12", - "resolved": "https://registry.npmjs.org/vscode-languageserver-textdocument/-/vscode-languageserver-textdocument-1.0.12.tgz", - "integrity": "sha512-cxWNPesCnQCcMPeenjKKsOCKQZ/L6Tv19DTRIGuLWe32lyzWhihGVJ/rcckZXJxfdKCFvRLS3fpBIsV/ZGX4zA==", -- "dev": true, -- "license": "MIT" -+ "dev": true - }, - "node_modules/vscode-languageserver-types": { - "version": "3.16.0", - "resolved": "https://registry.npmjs.org/vscode-languageserver-types/-/vscode-languageserver-types-3.16.0.tgz", - "integrity": "sha512-k8luDIWJWyenLc5ToFQQMaSrqCHiLwyKPHKPQZ5zz21vM+vIVUSvsRpcbiECH4WR88K2XZqc4ScRcZ7nk/jbeA==", -- "dev": true, -- "license": "MIT" -+ "dev": true - }, - "node_modules/vscode-uri": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/vscode-uri/-/vscode-uri-3.1.0.tgz", - "integrity": "sha512-/BpdSx+yCQGnCvecbyXdxHDkuk55/G3xwnC0GqY4gmQ3j+A+g8kzzgB4Nk/SINjqn6+waqw3EgbVF2QKExkRxQ==", -- "dev": true, -- "license": "MIT" -+ "dev": true - }, - "node_modules/vue": { -- "version": "3.5.13", -- "resolved": "https://registry.npmjs.org/vue/-/vue-3.5.13.tgz", -- "integrity": "sha512-wmeiSMxkZCSc+PM2w2VRsOYAZC8GdipNFRTsLSfodVqI9mbejKeXEGr8SckuLnrQPGe3oJN5c3K0vpoU9q/wCQ==", -- "license": "MIT", -+ "version": "3.5.18", -+ "resolved": "https://registry.npmjs.org/vue/-/vue-3.5.18.tgz", -+ "integrity": "sha512-7W4Y4ZbMiQ3SEo+m9lnoNpV9xG7QVMLa+/0RFwwiAVkeYoyGXqWE85jabU4pllJNUzqfLShJ5YLptewhCWUgNA==", - "dependencies": { -- "@vue/compiler-dom": "3.5.13", -- "@vue/compiler-sfc": "3.5.13", -- "@vue/runtime-dom": "3.5.13", -- "@vue/server-renderer": "3.5.13", -- "@vue/shared": "3.5.13" -+ "@vue/compiler-dom": "3.5.18", -+ "@vue/compiler-sfc": "3.5.18", -+ "@vue/runtime-dom": "3.5.18", -+ "@vue/server-renderer": "3.5.18", -+ "@vue/shared": "3.5.18" - }, - "peerDependencies": { - "typescript": "*" -@@ -6420,7 +6057,6 @@ - "resolved": "https://registry.npmjs.org/vue-demi/-/vue-demi-0.14.10.tgz", - "integrity": "sha512-nMZBOwuzabUO0nLgIcc6rycZEebF6eeUfaiQx9+WSk8e29IbLvPU9feI6tqW4kTo3hvoYAJkMh8n8D0fuISphg==", - "hasInstallScript": true, -- "license": "MIT", - "bin": { - "vue-demi-fix": "bin/vue-demi-fix.js", - "vue-demi-switch": "bin/vue-demi-switch.js" -@@ -6445,7 +6081,6 @@ - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/vue-echarts/-/vue-echarts-7.0.3.tgz", - "integrity": "sha512-/jSxNwOsw5+dYAUcwSfkLwKPuzTQ0Cepz1LxCOpj2QcHrrmUa/Ql0eQqMmc1rTPQVrh2JQ29n2dhq75ZcHvRDw==", -- "license": "MIT", - "dependencies": { - "vue-demi": "^0.13.11" - }, -@@ -6465,7 +6100,6 @@ - "resolved": "https://registry.npmjs.org/vue-demi/-/vue-demi-0.13.11.tgz", - "integrity": "sha512-IR8HoEEGM65YY3ZJYAjMlKygDQn25D5ajNFNoKh9RSDMQtlzCxtfQjdQgv9jjK+m3377SsJXY8ysq8kLCZL25A==", - "hasInstallScript": true, -- "license": "MIT", - "bin": { - "vue-demi-fix": "bin/vue-demi-fix.js", - "vue-demi-switch": "bin/vue-demi-switch.js" -@@ -6487,17 +6121,15 @@ - } - }, - "node_modules/vue-eslint-parser": { -- "version": "10.1.3", -- "resolved": "https://registry.npmjs.org/vue-eslint-parser/-/vue-eslint-parser-10.1.3.tgz", -- "integrity": "sha512-dbCBnd2e02dYWsXoqX5yKUZlOt+ExIpq7hmHKPb5ZqKcjf++Eo0hMseFTZMLKThrUk61m+Uv6A2YSBve6ZvuDQ==", -- "license": "MIT", -+ "version": "10.2.0", -+ "resolved": "https://registry.npmjs.org/vue-eslint-parser/-/vue-eslint-parser-10.2.0.tgz", -+ "integrity": "sha512-CydUvFOQKD928UzZhTp4pr2vWz1L+H99t7Pkln2QSPdvmURT0MoC4wUccfCnuEaihNsu9aYYyk+bep8rlfkUXw==", - "dependencies": { - "debug": "^4.4.0", - "eslint-scope": "^8.2.0", - "eslint-visitor-keys": "^4.2.0", - "espree": "^10.3.0", - "esquery": "^1.6.0", -- "lodash": "^4.17.21", - "semver": "^7.6.3" - }, - "engines": { -@@ -6511,10 +6143,9 @@ - } - }, - "node_modules/vue-eslint-parser/node_modules/eslint-visitor-keys": { -- "version": "4.2.0", -- "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.2.0.tgz", -- "integrity": "sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==", -- "license": "Apache-2.0", -+ "version": "4.2.1", -+ "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.2.1.tgz", -+ "integrity": "sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==", - "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" - }, -@@ -6523,14 +6154,13 @@ - } - }, - "node_modules/vue-tsc": { -- "version": "2.2.8", -- "resolved": "https://registry.npmjs.org/vue-tsc/-/vue-tsc-2.2.8.tgz", -- "integrity": "sha512-jBYKBNFADTN+L+MdesNX/TB3XuDSyaWynKMDgR+yCSln0GQ9Tfb7JS2lr46s2LiFUT1WsmfWsSvIElyxzOPqcQ==", -+ "version": "2.2.12", -+ "resolved": "https://registry.npmjs.org/vue-tsc/-/vue-tsc-2.2.12.tgz", -+ "integrity": "sha512-P7OP77b2h/Pmk+lZdJ0YWs+5tJ6J2+uOQPo7tlBnY44QqQSPYvS0qVT4wqDJgwrZaLe47etJLLQRFia71GYITw==", - "dev": true, -- "license": "MIT", - "dependencies": { -- "@volar/typescript": "~2.4.11", -- "@vue/language-core": "2.2.8" -+ "@volar/typescript": "2.4.15", -+ "@vue/language-core": "2.2.12" - }, - "bin": { - "vue-tsc": "bin/vue-tsc.js" -@@ -6540,14 +6170,13 @@ - } - }, - "node_modules/whence": { -- "version": "2.0.2", -- "resolved": "https://registry.npmjs.org/whence/-/whence-2.0.2.tgz", -- "integrity": "sha512-dSzQeVdKM4BJ+mVMXD/MOt4LrZxMpjuNmRi7hqkDEmFJMPnLbEc0hSWR3mN/S0xkLlWuWTPg89lrTNFX4lGpdA==", -+ "version": "2.1.0", -+ "resolved": "https://registry.npmjs.org/whence/-/whence-2.1.0.tgz", -+ "integrity": "sha512-4UBPMg5mng5KLzdliVQdQ4fJwCdIMXkE8CkoDmGKRy5r8pV9xq+nVgf/sKXpmNEIOtFp7m7v2bFdb7JoLvh+Hg==", - "dev": true, -- "license": "MIT", - "dependencies": { -- "@babel/parser": "^7.26.7", -- "eval-estree-expression": "^2.1.1" -+ "@babel/parser": "^7.28.0", -+ "eval-estree-expression": "^3.0.0" - }, - "engines": { - "node": ">=14" -@@ -6557,7 +6186,6 @@ - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", - "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", -- "license": "ISC", - "dependencies": { - "isexe": "^2.0.0" - }, -@@ -6572,7 +6200,6 @@ - "version": "1.2.5", - "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz", - "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==", -- "license": "MIT", - "peer": true, - "engines": { - "node": ">=0.10.0" -@@ -6582,14 +6209,12 @@ - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz", - "integrity": "sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==", -- "dev": true, -- "license": "MIT" -+ "dev": true - }, - "node_modules/wrap-ansi": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", - "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", -- "license": "MIT", - "dependencies": { - "ansi-styles": "^6.1.0", - "string-width": "^5.0.1", -@@ -6607,7 +6232,6 @@ - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", - "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", -- "license": "MIT", - "dependencies": { - "ansi-styles": "^4.0.0", - "string-width": "^4.1.0", -@@ -6624,7 +6248,6 @@ - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", - "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", -- "license": "MIT", - "engines": { - "node": ">=8" - } -@@ -6632,14 +6255,12 @@ - "node_modules/wrap-ansi-cjs/node_modules/emoji-regex": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", -- "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", -- "license": "MIT" -+ "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==" - }, - "node_modules/wrap-ansi-cjs/node_modules/string-width": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", - "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", -- "license": "MIT", - "dependencies": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", -@@ -6653,7 +6274,6 @@ - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", -- "license": "MIT", - "dependencies": { - "ansi-regex": "^5.0.1" - }, -@@ -6665,7 +6285,6 @@ - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", - "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", -- "license": "MIT", - "engines": { - "node": ">=12" - }, -@@ -6677,7 +6296,6 @@ - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-4.0.0.tgz", - "integrity": "sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==", -- "license": "Apache-2.0", - "peer": true, - "engines": { - "node": ">=12" -@@ -6687,26 +6305,23 @@ - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", - "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", -- "dev": true, -- "license": "ISC" -+ "dev": true - }, - "node_modules/yaml": { -- "version": "2.7.1", -- "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.7.1.tgz", -- "integrity": "sha512-10ULxpnOCQXxJvBgxsn9ptjq6uviG/htZKk9veJGhlqn3w/DxQ631zFF+nlQXLwmImeS5amR2dl2U8sg6U9jsQ==", -- "license": "ISC", -+ "version": "2.8.1", -+ "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.8.1.tgz", -+ "integrity": "sha512-lcYcMxX2PO9XMGvAJkJ3OsNMw+/7FKes7/hgerGUYWIoWu5j/+YQqcZr5JnPZWzOsEBgMbSbiSTn/dv/69Mkpw==", - "bin": { - "yaml": "bin.mjs" - }, - "engines": { -- "node": ">= 14" -+ "node": ">= 14.6" - } - }, - "node_modules/yocto-queue": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", - "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", -- "license": "MIT", - "peer": true, - "engines": { - "node": ">=10" -@@ -6716,11 +6331,10 @@ - } - }, - "node_modules/zod": { -- "version": "3.24.2", -- "resolved": "https://registry.npmjs.org/zod/-/zod-3.24.2.tgz", -- "integrity": "sha512-lY7CDW43ECgW9u1TcT3IoXHflywfVqDYze4waEz812jR/bZ8FHDsl7pFQoSZTz5N+2NqRXs8GBwnAwo3ZNxqhQ==", -+ "version": "3.25.76", -+ "resolved": "https://registry.npmjs.org/zod/-/zod-3.25.76.tgz", -+ "integrity": "sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==", - "dev": true, -- "license": "MIT", - "funding": { - "url": "https://github.com/sponsors/colinhacks" - } -@@ -6729,7 +6343,6 @@ - "version": "5.6.1", - "resolved": "https://registry.npmjs.org/zrender/-/zrender-5.6.1.tgz", - "integrity": "sha512-OFXkDJKcrlx5su2XbzJvj/34Q3m6PvyCZkVPHGYpcCJ52ek4U/ymZyfuV1nKE23AyBJ51E/6Yr0mhZ7xGTO4ag==", -- "license": "BSD-3-Clause", - "dependencies": { - "tslib": "2.3.0" - } -diff --git a/resources/js/Components/Common/Client/ClientMoreOptionsDropdown.vue b/resources/js/Components/Common/Client/ClientMoreOptionsDropdown.vue -index b80b217..a8c2ec2 100644 ---- a/resources/js/Components/Common/Client/ClientMoreOptionsDropdown.vue -+++ b/resources/js/Components/Common/Client/ClientMoreOptionsDropdown.vue -@@ -1,7 +1,7 @@ - - -@@ -22,7 +26,7 @@ const createClient = ref(false); -
-+ style="grid-template-columns: max-content max-content 1fr 80px"> - -
- -@@ -35,7 +39,7 @@ const createClient = ref(false); - >Create your First Client - -
--