diff --git a/.eslintrc.cjs b/.eslintrc.cjs
deleted file mode 100644
index cada6b460..000000000
--- a/.eslintrc.cjs
+++ /dev/null
@@ -1,54 +0,0 @@
-const COPYRIGHT_HEADER = `/*
-Copyright %%CURRENT_YEAR%% New Vector Ltd.
-
-SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
-Please see LICENSE in the repository root for full details.
-*/
-
-`;
-
-module.exports = {
- plugins: ["matrix-org", "rxjs"],
- extends: [
- "plugin:matrix-org/react",
- "plugin:matrix-org/a11y",
- "plugin:matrix-org/typescript",
- "prettier",
- "plugin:rxjs/recommended",
- ],
- parserOptions: {
- ecmaVersion: "latest",
- sourceType: "module",
- project: ["./tsconfig.json"],
- },
- env: {
- browser: true,
- node: true,
- },
- rules: {
- "matrix-org/require-copyright-header": ["error", COPYRIGHT_HEADER],
- "jsx-a11y/media-has-caption": "off",
- // We should use the js-sdk logger, never console directly.
- "no-console": ["error"],
- "react/display-name": "error",
- // Encourage proper usage of Promises:
- "@typescript-eslint/no-floating-promises": "error",
- "@typescript-eslint/no-misused-promises": "error",
- "@typescript-eslint/promise-function-async": "error",
- "@typescript-eslint/require-await": "error",
- "@typescript-eslint/await-thenable": "error",
- // To help ensure that we get proper vite/rollup lazy loading (e.g. for matrix-js-sdk):
- "@typescript-eslint/consistent-type-imports": [
- "error",
- { fixStyle: "inline-type-imports" },
- ],
- // To encourage good usage of RxJS:
- "rxjs/no-exposed-subjects": "error",
- "rxjs/finnish": "error",
- },
- settings: {
- react: {
- version: "detect",
- },
- },
-};
diff --git a/.githooks/post-commit b/.githooks/post-commit
deleted file mode 100755
index 96e19a171..000000000
--- a/.githooks/post-commit
+++ /dev/null
@@ -1,11 +0,0 @@
-#!/usr/bin/sh
-
-FILE=.links.disabled.yaml
-if test -f "$FILE"; then
- # echo "$FILE exists. -> moving to .links.disabled.yaml"
- mv .links.disabled.yaml .links.yaml
- # echo "running yarn"
- yarnLog=$(yarn)
- echo "[yarn-linker] The post-commit hook has re-enabled .links.yaml."
- exit 1
-fi
diff --git a/.githooks/pre-commit b/.githooks/pre-commit
index f80982035..2656c9b93 100755
--- a/.githooks/pre-commit
+++ b/.githooks/pre-commit
@@ -1,12 +1,9 @@
-#!/usr/bin/sh
+#!/usr/bin/env bash
-FILE=".links.yaml"
-if test -f "$FILE"; then
- # echo "$FILE exists. -> moving to .links.disabled.yaml"
- mv .links.yaml .links.disabled.yaml
- # echo "running yarn"
- x=$(yarn)
- y=$(git add yarn.lock)
- echo "[yarn-linker] The pre-commit hook has disabled .links.yaml and MODIFIED the yarn.lock file. Review the staged changes (the hook added yarn.lock, was this desired?) and run \`git commit \` again if they look okay. The post-commit hook will re-enable your links."
+# Checks if there currently is linking configured. Informs the user to disable linking before committing.
+
+PNPMFILE=.pnpmfile.cjs
+if test -f "$PNPMFILE"; then
+ echo "[pnpm-linker] The pre-commit hook detected $PNPMFILE which implies you have linked packages in your pnpm-lock.yaml. Run pnpm links:off and commit again. See also linking.md."
exit 1
fi
diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md
new file mode 100644
index 000000000..1c1111f7b
--- /dev/null
+++ b/.github/PULL_REQUEST_TEMPLATE.md
@@ -0,0 +1,46 @@
+
+
+> [!IMPORTANT]
+> **Features and UI changes require a pre-approved issue.**
+> Every PR must have a linked issue
+> that a maintainer has reviewed and approved **before you started writing code**.
+> PRs that don't meet this requirement will not be reviewed.
+> See [CONTRIBUTING.md](https://github.com/element-hq/element-call/blob/livekit/CONTRIBUTING.md) for ElementCall decided for this approach.
+
+## Content
+
+
+
+## Motivation and context
+
+
+
+## Screenshots / GIFs
+
+
+
+## Tests
+
+
+
+- Step 1
+- Step 2
+- Step ...
+
+## Checklist
+
+- [ ] A linked, pre-approved issue exists for this feature or UI change.
+- [ ] I have read [CONTRIBUTING.md](https://github.com/element-hq/element-call/blob/livekit/CONTRIBUTING.md) in full.
+- [ ] Pull request includes screenshots or videos for any UI changes.
+- [ ] Tests written for new code (and existing touched code where feasible).
+- [ ] Linter and other CI checks pass.
+- [ ] I have licensed the changes to Element by completing the [Contributor License Agreement (CLA)](https://cla-assistant.io/element-hq/element-call)
diff --git a/.github/labels.yml b/.github/labels.yml
new file mode 100644
index 000000000..063787d96
--- /dev/null
+++ b/.github/labels.yml
@@ -0,0 +1,253 @@
+- name: "A-1:1"
+ description: "Calls between two people"
+ color: "bfd4f2"
+- name: "A-Big-Grid"
+ description: "The freedom layout system used for >12 participants"
+ color: "bfd4f2"
+- name: "A-Developer-Experience"
+ description: "Workflow of developing: building, linting, debugging, profiling, etc."
+ color: "c5def5"
+- name: "A-E2EE"
+ description: "End-to-end encryption"
+ color: "bfd4f2"
+- name: "A-Embedded"
+ description: "Using the app embedded within other Matrix clients (as a widget)"
+ color: "bfd4f2"
+- name: "A-Feedback-Reporting"
+ description: "Reporting process for bugs, debug logs (rageshakes), suggestions"
+ color: "bfd4f2"
+- name: "A-Freedom"
+ description: "Freedom layout, where participants can be rearranged and resized"
+ color: "bfd4f2"
+- name: "A-Handset"
+ description: "Audio playback through the earpiece of a phone. Also known as 'earpiece mode' or 'handset mode'."
+ color: "bfd4f2"
+- name: "A-Huddle"
+ description: "Ad-hoc calls in a room notifying others"
+ color: "bfd4f2"
+- name: "A-Lobby"
+ description: "The page before joining a call"
+ color: "bfd4f2"
+- name: "A-Login"
+ color: "bfd4f2"
+- name: "A-Matrix2.0"
+ description: "Issues relating to the Matrix 2.0 / MSC4143 work, such as sticky events and multi-sfu"
+ color: "bfd4f2"
+- name: "A-Media-Devices"
+ color: "BFD4F2"
+- name: "A-Media-Quality"
+ description: "Distortions or glitches in audio/video"
+ color: "bfd4f2"
+- name: "A-Meeting"
+ description: "Scheduled call on the calendar"
+ color: "bfd4f2"
+- name: "A-Mobile"
+ description: "Using the app on a mobile device"
+ color: "bfd4f2"
+- name: "A-Moderation"
+ description: "Access to calls and powers within calls"
+ color: "bfd4f2"
+- name: "A-Performance"
+ color: "bfd4f2"
+- name: "A-Reactions"
+ color: "bfd4f2"
+- name: "A-Registration"
+ color: "bfd4f2"
+- name: "A-Screen-Sharing"
+ color: "bfd4f2"
+- name: "A-SDK"
+ description: "SDK for building MatrixRTC + LiveKit widgets"
+ color: "c5def5"
+- name: "A-Settings"
+ color: "bfd4f2"
+- name: "A-SFU"
+ description: "Routing calls through a selective forwarding unit"
+ color: "bfd4f2"
+- name: "A-Signaling"
+ description: "Call signaling"
+ color: "bfd4f2"
+- name: "A-Simulcast"
+ description: "Automatic selection of variable video resolutions"
+ color: "bfd4f2"
+- name: "A-SPA"
+ description: "Standalone application accessed via call links"
+ color: "bfd4f2"
+- name: "A-Spatial-Audio"
+ description: "Directional audio based on where a speaker appears on screen"
+ color: "bfd4f2"
+- name: "A-Speech-Enhancement"
+ description: "Techniques to enhance the intelligibility of speech in calls"
+ color: "c5def5"
+- name: "A-Split-Grid"
+ description: "The freedom layout system used for ≤12 participants"
+ color: "bfd4f2"
+- name: "A-Spotlight"
+ description: "Spotlight layout, where the active speaker is foregrounded"
+ color: "bfd4f2"
+- name: "A-Telemetry-Posthog"
+ description: "Share opt in usage data for optimizing the app via posthog"
+ color: "bfd4f2"
+- name: "A-Testing"
+ description: "Integration tests, unit tests, etc."
+ color: "bfd4f2"
+- name: "A-Video-Rooms"
+ description: "Rooms reserved exclusively for calling"
+ color: "bfd4f2"
+- name: "A-Walkie-Talkie"
+ description: "Walkie-talkie / PTT (push-to-talk) mode"
+ color: "bfd4f2"
+- name: "A11y"
+ description: "Accessibility"
+ color: "4ADEC0"
+- name: "backport-candidate"
+ description: "Something that is a candidate for backport to a particular release branch"
+ color: "0B8D85"
+- name: "customer-retainer"
+ color: "F44A5F"
+- name: "dependencies"
+ description: "Pull requests that update a dependency file"
+ color: "0366d6"
+- name: "development build"
+ description: "runs yarn build process in development mode"
+ color: "1d76db"
+- name: "Discord"
+ description: "Use case familiar to Discord users"
+ color: "3670d2"
+- name: "docker build"
+ description: "Creates a docker image for this PR"
+ color: "0e8a16"
+- name: "EPIC"
+ color: "5319E7"
+- name: "good first issue"
+ description: "Good for newcomers"
+ color: "7057ff"
+- name: "Help Wanted"
+ description: "Community contributions are welcome!"
+ color: "159818"
+- name: "I18n"
+ description: "Internationalisation"
+ color: "d4c5f9"
+- name: "O-Frequent"
+ description: "Affects or can be seen by most users regularly or impacts most users' first experience"
+ color: "0052CC"
+- name: "O-Occasional"
+ description: "Affects or can be seen by some users regularly or most users rarely"
+ color: "1D76DB"
+- name: "O-Uncommon"
+ description: "Most users are unlikely to come across this or unexpected workflow"
+ color: "C5DEF5"
+- name: "p1"
+ description: "Must fix/implement before this is usable as a product"
+ color: "D93F0B"
+- name: "p2"
+ description: "Should fix/implement, but not at the expense of p1s"
+ color: "FBCA04"
+- name: "p3"
+ description: "Could fix/implement when time allows"
+ color: "0E8A16"
+- name: "PR-Breaking-Change"
+ description: "A Pull request that changes EC in a way that is incompatible to the previous version."
+ color: "D93F0B"
+- name: "PR-Bug-Fix"
+ description: "Release note category. A PR that fixes a bug."
+ color: "C2E0C6"
+- name: "PR-Developer-Experience"
+ description: "Release note category. A PR that does not change EC but improves working with the repository."
+ color: "C2E0C6"
+- name: "PR-Documentation"
+ description: "Release note category. A PR that improves the documentation."
+ color: "C2E0C6"
+- name: "PR-Feature"
+ description: "Release note category. A PR that introduces a new user facing feature."
+ color: "C2E0C6"
+- name: "PR-Improvement"
+ description: "Release note category. A PR that improves EC's performance or stability."
+ color: "C2E0C6"
+- name: "PR-Task"
+ description: "Release note category. A PR that is hidden from release note."
+ color: "C2E0C6"
+- name: "Privacy"
+ color: "f41192"
+- name: "Roadmap"
+ color: "57457E"
+- name: "S-Critical"
+ description: "Prevents work, causes data loss and/or has no workaround"
+ color: "bd0026"
+- name: "S-Major"
+ description: "Severely degrades major functionality or product features, with no satisfactory workaround"
+ color: "fc4e2a"
+- name: "S-Minor"
+ description: "Impairs non-critical functionality or suitable workarounds exist"
+ color: "feb24c"
+- name: "S-Tolerable"
+ description: "Low/no impact on users"
+ color: "ffeda0"
+- name: "Security"
+ color: "b3e5fc"
+- name: "storybook build"
+ description: "Build and deploy the storybook frontend to netlify."
+ color: "45cd61"
+- name: "T-Defect"
+ description: "Something isn't working: bugs, crashes, hangs, vulnerabilities, or other reported problems"
+ color: "98e6ae"
+- name: "T-Enhancement"
+ description: "New features, changes in functionality, performance boosts, user-facing improvements"
+ color: "98e6ae"
+- name: "T-Other"
+ description: "Questions, user support, anything else"
+ color: "98e6ae"
+- name: "T-Task"
+ description: "Refactoring, enabling or disabling functionality, other engineering tasks"
+ color: "98e6ae"
+- name: "X-Blocked"
+ description: "Cannot be merged due to external dependencies"
+ color: "ff7979"
+- name: "X-Cannot-Reproduce"
+ description: "Needs reproduction steps"
+ color: "ff7979"
+- name: "X-Needs-Design"
+ description: "May require input from the design team"
+ color: "ff7979"
+- name: "X-Needs-Info"
+ description: "This issue is blocked awaiting information from the reporter"
+ color: "ff7979"
+- name: "X-Needs-Investigation"
+ color: "ff7979"
+- name: "X-Needs-Product"
+ description: "More input needed from the Product team"
+ color: "ff7979"
+- name: "X-Regression"
+ color: "ff7979"
+- name: "X-Release-Blocker"
+ color: "ff7979"
+- name: "X-Spec-Changes"
+ description: "May require spec changes"
+ color: "ff7979"
+- name: "X-Won't-Fix"
+ description: "This will not be worked on"
+ color: "ff7979"
+- name: "Z-Community-Testing"
+ description: "Issues found during the community testing sessions"
+ color: "efefef"
+- name: "Z-Could"
+ color: "ededed"
+- name: "Z-Design"
+ color: "ededed"
+- name: "Z-Flaky-Test"
+ color: "aaaaaa"
+- name: "Z-Media-Failure"
+ description: "Someone's audio or video isn't coming through"
+ color: "ededed"
+- name: "Z-Must"
+ color: "ededed"
+- name: "Z-Platform-Specific"
+ color: "ededed"
+- name: "Z-Power-Users"
+ color: "ededed"
+- name: "Z-ProductPolish"
+ color: "aaaaaa"
+- name: "Z-Should"
+ color: "ededed"
+- name: "Z-Splitbrain"
+ description: "Someone who should be on the call isn't showing up"
+ color: "ededed"
diff --git a/.github/realease.yml b/.github/release.yml
similarity index 100%
rename from .github/realease.yml
rename to .github/release.yml
diff --git a/.github/workflows/blocked.yaml b/.github/workflows/blocked.yaml
index e016e7070..cc7db7477 100644
--- a/.github/workflows/blocked.yaml
+++ b/.github/workflows/blocked.yaml
@@ -1,7 +1,16 @@
name: Prevent blocked
on:
+ # zizmor: ignore[dangerous-triggers]
+ # Reason: This workflow does not checkout code or use secrets.
+ # It only reads labels to set a failure status on the PR.
pull_request_target:
- types: [opened, labeled, unlabeled]
+ types: [opened, labeled, unlabeled, synchronize]
+
+permissions:
+ pull-requests: read
+ # Required to fail the check on the PR
+ statuses: write
+
jobs:
prevent-blocked:
name: Prevent blocked
@@ -10,7 +19,7 @@ jobs:
pull-requests: read
steps:
- name: Add notice
- uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7
+ uses: actions/github-script@f28e40c7f34bde8b3046d885e986cb6290c5673b # v7
if: contains(github.event.pull_request.labels.*.name, 'X-Blocked')
with:
script: |
diff --git a/.github/workflows/build-and-publish-docker.yaml b/.github/workflows/build-and-publish-docker.yaml
index ec34a0460..3b18b133b 100644
--- a/.github/workflows/build-and-publish-docker.yaml
+++ b/.github/workflows/build-and-publish-docker.yaml
@@ -20,13 +20,16 @@ jobs:
runs-on: ubuntu-latest
permissions:
contents: write # required to upload release asset
- packages: write
+ packages: write # needed for publishing packages to GHCR
+ id-token: write # needed for login into tailscale with GitHub OIDC Token
steps:
- name: Check it out
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
+ uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
+ with:
+ persist-credentials: false
- name: 📥 Download artifact
- uses: actions/download-artifact@95815c38cf2ff2164869cbab79da8d1f422bc89e # v4
+ uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
run-id: ${{ inputs.artifact_run_id }}
@@ -34,24 +37,64 @@ jobs:
path: dist
- name: Log in to container registry
- uses: docker/login-action@74a5d142397b4f367a81961eba4e8cd7edddf772 # v3.4.0
+ uses: docker/login-action@c94ce9fb468520275223c153574b00df6fe4bcc9 # v3.7.0
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
+ - name: Connect to Tailscale
+ uses: tailscale/github-action@306e68a486fd2350f2bfc3b19fcd143891a4a2d8 # v4
+ if: github.event_name != 'pull_request'
+ with:
+ oauth-client-id: ${{ secrets.TS_OAUTH_CLIENT_ID }}
+ audience: ${{ secrets.TS_AUDIENCE }}
+ tags: tag:github-actions
+
+ - name: Compute vault jwt role name
+ id: vault-jwt-role
+ if: github.event_name != 'pull_request'
+ run: |
+ echo "role_name=github_service_management_$( echo "${{ github.repository }}" | sed -r 's|[/-]|_|g')" | tee -a "$GITHUB_OUTPUT"
+
+ - name: Get team registry token
+ id: import-secrets
+ uses: hashicorp/vault-action@4c06c5ccf5c0761b6029f56cfb1dcf5565918a3b # v3
+ if: github.event_name != 'pull_request'
+ with:
+ url: https://vault.infra.ci.i.element.dev
+ role: ${{ steps.vault-jwt-role.outputs.role_name }}
+ path: service-management/github-actions
+ jwtGithubAudience: https://vault.infra.ci.i.element.dev
+ method: jwt
+ secrets: |
+ services/voip-repositories/secret/data/oci.element.io username | OCI_USERNAME ;
+ services/voip-repositories/secret/data/oci.element.io password | OCI_PASSWORD ;
+
+ - name: Login to oci.element.io Registry
+ uses: docker/login-action@c94ce9fb468520275223c153574b00df6fe4bcc9 # v3
+ if: github.event_name != 'pull_request'
+ with:
+ registry: oci-push.vpn.infra.element.io
+ username: ${{ steps.import-secrets.outputs.OCI_USERNAME }}
+ password: ${{ steps.import-secrets.outputs.OCI_PASSWORD }}
+
- name: Extract metadata (tags, labels) for Docker
id: meta
- uses: docker/metadata-action@902fa8ec7d6ecbf8d84d538b9b233a880e428804 # v5.7.0
+ uses: docker/metadata-action@c299e40c65443455700f0fdfc63efafe5b349051 # v5.10.0
with:
- images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
- tags: ${{ inputs.docker_tags}}
+ images: |
+ ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
+ oci-push.vpn.infra.element.io/element-call
+ tags: ${{ inputs.docker_tags }}
+ labels: |
+ org.opencontainers.image.licenses=AGPL-3.0-only OR LicenseRef-Element-Commercial
- name: Set up Docker Buildx
- uses: docker/setup-buildx-action@b5ca514318bd6ebac0fb2aedd5d36ec1b5c232a2 # v3.10.0
+ uses: docker/setup-buildx-action@8d2750c68a42422c14e847fe6c8ac0403b4cbd6f # v3.12.0
- name: Build and push Docker image
- uses: docker/build-push-action@471d1dc4e07e5cdedd4c2171150001c434f0b7a4 # v6.15.0
+ uses: docker/build-push-action@10e90e3645eae34f1e60eeb005ba3a3d33f178e8 # v6.19.2
with:
context: .
platforms: linux/amd64,linux/arm64
diff --git a/.github/workflows/build-element-call.yaml b/.github/workflows/build-element-call.yaml
index 5a193eb5e..f4071975e 100644
--- a/.github/workflows/build-element-call.yaml
+++ b/.github/workflows/build-element-call.yaml
@@ -7,8 +7,13 @@ on:
type: string
package:
type: string # This would ideally be a `choice` type, but that isn't supported yet
- description: The package type to be built. Must be one of 'full' or 'embedded'
+ description: The package type to be built. Must be one of 'full', 'embedded', or 'sdk'
required: true
+ build_mode:
+ type: string # This would ideally be a `choice` type, but that isn't supported yet
+ description: The build mode for vite. Must be either 'development' or 'production'
+ required: false
+ default: production
secrets:
SENTRY_ORG:
required: true
@@ -27,30 +32,21 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
+ uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
+ with:
+ persist-credentials: false
- name: Enable Corepack
run: corepack enable
- - name: Yarn cache
- uses: actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e # v4
+ - name: pnpm cache
+ uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
with:
- cache: "yarn"
+ cache: "pnpm"
node-version-file: ".node-version"
- name: Install dependencies
- run: "yarn install --immutable"
- - name: Build full version
- if: ${{ inputs.package == 'full' }}
- run: "yarn run build:full"
- env:
- SENTRY_ORG: ${{ secrets.SENTRY_ORG }}
- SENTRY_PROJECT: ${{ secrets.SENTRY_PROJECT }}
- SENTRY_URL: ${{ secrets.SENTRY_URL }}
- SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}
- CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
- VITE_APP_VERSION: ${{ inputs.vite_app_version }}
- NODE_OPTIONS: "--max-old-space-size=4096"
- - name: Build embedded
- if: ${{ inputs.package == 'embedded' }}
- run: "yarn run build:embedded"
+ # ignore-pnpmfile should never be commited. Make CI crash if it happened (`pnpmfileChecksum` is present)
+ run: "pnpm install --frozen-lockfile --ignore-pnpmfile"
+ - name: Build Element Call
+ run: pnpm run build:"$PACKAGE":"$BUILD_MODE"
env:
SENTRY_ORG: ${{ secrets.SENTRY_ORG }}
SENTRY_PROJECT: ${{ secrets.SENTRY_PROJECT }}
@@ -59,6 +55,8 @@ jobs:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
VITE_APP_VERSION: ${{ inputs.vite_app_version }}
NODE_OPTIONS: "--max-old-space-size=4096"
+ PACKAGE: ${{ inputs.package }}
+ BUILD_MODE: ${{ inputs.build_mode }}
- name: Upload Artifact
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
with:
diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml
index 47f956c7c..ba7cde513 100644
--- a/.github/workflows/build.yaml
+++ b/.github/workflows/build.yaml
@@ -14,6 +14,7 @@ jobs:
with:
package: full
vite_app_version: ${{ github.event.release.tag_name || github.sha }}
+ build_mode: ${{ github.event_name == 'pull_request' && contains(github.event.pull_request.labels.*.name, 'development build') && 'development' || 'production' }}
secrets:
SENTRY_ORG: ${{ secrets.SENTRY_ORG }}
SENTRY_PROJECT: ${{ secrets.SENTRY_PROJECT }}
@@ -48,7 +49,9 @@ jobs:
permissions:
contents: write
packages: write
+ id-token: write
uses: ./.github/workflows/build-and-publish-docker.yaml
+ secrets: inherit
with:
artifact_run_id: ${{ github.run_id }}
docker_tags: |
@@ -61,9 +64,52 @@ jobs:
with:
package: embedded
vite_app_version: ${{ github.event.release.tag_name || github.sha }}
+ build_mode: ${{ github.event_name == 'pull_request' && contains(github.event.pull_request.labels.*.name, 'development build') && 'development' || 'production' }}
secrets:
SENTRY_ORG: ${{ secrets.SENTRY_ORG }}
SENTRY_PROJECT: ${{ secrets.SENTRY_PROJECT }}
SENTRY_URL: ${{ secrets.SENTRY_URL }}
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
+
+ build_sdk_element_call:
+ # Use the embedded package vite build
+ uses: ./.github/workflows/build-element-call.yaml
+ with:
+ package: sdk
+ vite_app_version: ${{ github.event.release.tag_name || github.sha }}
+ build_mode: ${{ github.event_name == 'pull_request' && contains(github.event.pull_request.labels.*.name, 'development build') && 'development' || 'production' }}
+ secrets:
+ SENTRY_ORG: ${{ secrets.SENTRY_ORG }}
+ SENTRY_PROJECT: ${{ secrets.SENTRY_PROJECT }}
+ SENTRY_URL: ${{ secrets.SENTRY_URL }}
+ SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}
+ CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
+
+ build_storybook:
+ name: Build Storybook
+ if: contains(github.event.pull_request.labels.*.name, 'storybook build')
+ runs-on: ubuntu-latest
+ steps:
+ - name: Checkout code
+ uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
+ with:
+ persist-credentials: false
+ - name: Enable Corepack
+ run: corepack enable
+ - name: pnpm cache
+ uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
+ with:
+ cache: "pnpm"
+ node-version-file: ".node-version"
+ - name: Install dependencies
+ run: "pnpm install --frozen-lockfile --ignore-pnpmfile"
+ - name: Build Storybook
+ run: pnpm run build-storybook
+ - name: Upload Artifact
+ uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
+ with:
+ name: build-output-storybook
+ path: storybook-static
+ # We'll only use this in a triggered job, then we're done with it
+ retention-days: 1
diff --git a/.github/workflows/changelog-label.yml b/.github/workflows/changelog-label.yml
new file mode 100644
index 000000000..84c53cdbc
--- /dev/null
+++ b/.github/workflows/changelog-label.yml
@@ -0,0 +1,22 @@
+name: PR changelog label
+
+on:
+ # zizmor: ignore[dangerous-triggers]
+ # This is safe because we do not use actions/checkout or execute untrusted code.
+ # Using pull_request_target is necessary to allow status writes for PRs from forks.
+ pull_request_target:
+ types: [labeled, unlabeled, opened, synchronize]
+
+permissions:
+ pull-requests: read
+ statuses: write
+
+jobs:
+ pr-changelog-label:
+ runs-on: ubuntu-latest
+ steps:
+ - uses: yogevbd/enforce-label-action@a3c219da6b8fa73f6ba62b68ff09c469b3a1c024 # 2.2.2
+ with:
+ REQUIRED_LABELS_ANY: "PR-Bug-Fix,PR-Documentation,PR-Task,PR-Feature,PR-Improvement,PR-Developer-Experience,dependencies,PR-Breaking-Change"
+ REQUIRED_LABELS_ANY_DESCRIPTION: "Select at least one 'PR-' label"
+ BANNED_LABELS: "banned"
diff --git a/.github/workflows/deploy-to-netlify.yaml b/.github/workflows/deploy-to-netlify.yaml
index 53a6931bd..554e384bc 100644
--- a/.github/workflows/deploy-to-netlify.yaml
+++ b/.github/workflows/deploy-to-netlify.yaml
@@ -14,6 +14,10 @@ on:
deployment_ref:
required: true
type: string
+ package:
+ required: true
+ type: string
+ description: Which package to deploy - 'full', 'embedded', 'sdk', or 'storybook'
artifact_run_id:
required: false
type: string
@@ -39,34 +43,46 @@ jobs:
with:
step: start
token: ${{ secrets.GITHUB_TOKEN }}
- env: Netlify
+ env: ${{ inputs.package}}
ref: ${{ inputs.deployment_ref }}
desc: |
Do you trust the author of this PR? Maybe this build will steal your keys or give you malware.
Exercise caution. Use test accounts.
- name: 📥 Download artifact
- uses: actions/download-artifact@95815c38cf2ff2164869cbab79da8d1f422bc89e # v4
+ uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4
with:
github-token: ${{ secrets.ELEMENT_BOT_TOKEN }}
run-id: ${{ inputs.artifact_run_id }}
- name: build-output-full
+ name: build-output-${{ inputs.package }}
path: webapp
- name: Add redirects file
# We fetch from github directly as we don't bother checking out the repo
+ # Not needed for storybook deployments
+ if: inputs.package != 'storybook'
run: curl -s https://raw.githubusercontent.com/element-hq/element-call/main/config/netlify_redirects > webapp/_redirects
- name: Add config file
- run: curl -s "https://raw.githubusercontent.com/${{ inputs.pr_head_full_name }}/${{ inputs.pr_head_ref }}/config/config_netlify_preview.json" > webapp/config.json
-
+ # Not needed for storybook deployments
+ if: inputs.package != 'storybook'
+ run: |
+ if [ "${INPUTS_PACKAGE}" = "full" ]; then
+ curl -s "https://raw.githubusercontent.com/${INPUTS_PR_HEAD_FULL_NAME}/${INPUTS_PR_HEAD_REF}/config/config_netlify_preview.json" > webapp/config.json
+ else
+ curl -s "https://raw.githubusercontent.com/${INPUTS_PR_HEAD_FULL_NAME}/${INPUTS_PR_HEAD_REF}/config/config_netlify_preview_sdk.json" > webapp/config.json
+ fi
+ env:
+ INPUTS_PACKAGE: ${{ inputs.package }}
+ INPUTS_PR_HEAD_FULL_NAME: ${{ inputs.pr_head_full_name }}
+ INPUTS_PR_HEAD_REF: ${{ inputs.pr_head_ref }}
- name: ☁️ Deploy to Netlify
id: netlify
uses: nwtgck/actions-netlify@4cbaf4c08f1a7bfa537d6113472ef4424e4eb654 # v3.0
with:
publish-dir: webapp
deploy-message: "Deploy from GitHub Actions"
- alias: pr${{ inputs.pr_number }}
+ alias: ${{ inputs.package == 'sdk' && format('pr{0}-sdk', inputs.pr_number) || inputs.package == 'storybook' && format('pr{0}-storybook', inputs.pr_number) || format('pr{0}', inputs.pr_number) }}
env:
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }}
diff --git a/.github/workflows/lint.yaml b/.github/workflows/lint.yaml
index 1049930e1..ad92e7d1a 100644
--- a/.github/workflows/lint.yaml
+++ b/.github/workflows/lint.yaml
@@ -2,28 +2,31 @@ name: Lint, format & type check
on:
pull_request: {}
jobs:
- prettier:
+ lint:
name: Lint, format & type check
runs-on: ubuntu-latest
steps:
- name: Checkout code
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
+ uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
+ with:
+ persist-credentials: false
- name: Enable Corepack
run: corepack enable
- - name: Yarn cache
- uses: actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e # v4
+ - name: pnpm cache
+ uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
with:
- cache: "yarn"
+ cache: "pnpm"
node-version-file: ".node-version"
- name: Install dependencies
- run: "yarn install --immutable"
- - name: Prettier
- run: "yarn run prettier:check"
+ # ignore-pnpmfile should never be commited. Make CI crash if it happened (`pnpmfileChecksum` is present)
+ run: "pnpm install --frozen-lockfile --ignore-pnpmfile"
+ - name: Formatting
+ run: "pnpm run format:check"
- name: i18n
- run: "yarn run i18n:check"
- - name: ESLint
- run: "yarn run lint:eslint"
+ run: "pnpm run i18n:check"
+ - name: Lint
+ run: "pnpm run lint:oxlint"
- name: Type check
- run: "yarn run lint:types"
+ run: "pnpm run lint:types"
- name: Dead code analysis
- run: "yarn run lint:knip"
+ run: "pnpm run lint:knip"
diff --git a/.github/workflows/pr-deploy.yaml b/.github/workflows/pr-deploy.yaml
index 7b1283527..3d88b083f 100644
--- a/.github/workflows/pr-deploy.yaml
+++ b/.github/workflows/pr-deploy.yaml
@@ -1,5 +1,7 @@
name: Deploy previews for PRs
on:
+ # zizmor: ignore[dangerous-triggers]
+ # Reason: This is now restricted to internal PRs only using the 'if' condition below.
workflow_run:
workflows: ["Build"]
types:
@@ -7,7 +9,14 @@ on:
jobs:
prdetails:
- if: ${{ github.event.workflow_run.conclusion == 'success' && github.event.workflow_run.event == 'pull_request' }}
+ # Logic:
+ # 1. Build must be successful
+ # 2. Event must be a pull_request
+ # 3. Head repository must be the SAME as the base repository (No Forks!)
+ if: >
+ github.event.workflow_run.conclusion == 'success' &&
+ github.event.workflow_run.event == 'pull_request' &&
+ github.event.workflow_run.head_repository.full_name == github.repository
runs-on: ubuntu-latest
outputs:
pr_number: ${{ steps.prdetails.outputs.pr_id }}
@@ -20,7 +29,7 @@ jobs:
owner: ${{ github.event.workflow_run.head_repository.owner.login }}
branch: ${{ github.event.workflow_run.head_branch }}
- netlify:
+ netlify-full:
needs: prdetails
permissions:
deployments: write
@@ -31,6 +40,42 @@ jobs:
pr_head_full_name: ${{ github.event.workflow_run.head_repository.full_name }}
pr_head_ref: ${{ needs.prdetails.outputs.pr_data_json && fromJSON(needs.prdetails.outputs.pr_data_json).head.ref }}
deployment_ref: ${{ needs.prdetails.outputs.pr_data_json && fromJSON(needs.prdetails.outputs.pr_data_json).head.sha || github.ref || github.head_ref }}
+ package: full
+ secrets:
+ ELEMENT_BOT_TOKEN: ${{ secrets.ELEMENT_BOT_TOKEN }}
+ NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
+ NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }}
+
+ netlify-sdk:
+ needs: prdetails
+ permissions:
+ deployments: write
+ uses: ./.github/workflows/deploy-to-netlify.yaml
+ with:
+ artifact_run_id: ${{ github.event.workflow_run.id || github.run_id }}
+ pr_number: ${{ needs.prdetails.outputs.pr_number }}
+ pr_head_full_name: ${{ github.event.workflow_run.head_repository.full_name }}
+ pr_head_ref: ${{ needs.prdetails.outputs.pr_data_json && fromJSON(needs.prdetails.outputs.pr_data_json).head.ref }}
+ deployment_ref: ${{ needs.prdetails.outputs.pr_data_json && fromJSON(needs.prdetails.outputs.pr_data_json).head.sha || github.ref || github.head_ref }}
+ package: sdk
+ secrets:
+ ELEMENT_BOT_TOKEN: ${{ secrets.ELEMENT_BOT_TOKEN }}
+ NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
+ NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }}
+
+ netlify-storybook:
+ needs: prdetails
+ if: ${{ needs.prdetails.outputs.pr_data_json && contains(fromJSON(needs.prdetails.outputs.pr_data_json).labels.*.name, 'storybook build') }}
+ permissions:
+ deployments: write
+ uses: ./.github/workflows/deploy-to-netlify.yaml
+ with:
+ artifact_run_id: ${{ github.event.workflow_run.id || github.run_id }}
+ pr_number: ${{ needs.prdetails.outputs.pr_number }}
+ pr_head_full_name: ${{ github.event.workflow_run.head_repository.full_name }}
+ pr_head_ref: ${{ needs.prdetails.outputs.pr_data_json && fromJSON(needs.prdetails.outputs.pr_data_json).head.ref }}
+ deployment_ref: ${{ needs.prdetails.outputs.pr_data_json && fromJSON(needs.prdetails.outputs.pr_data_json).head.sha || github.ref || github.head_ref }}
+ package: storybook
secrets:
ELEMENT_BOT_TOKEN: ${{ secrets.ELEMENT_BOT_TOKEN }}
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
@@ -42,7 +87,9 @@ jobs:
permissions:
contents: write
packages: write
+ id-token: write
uses: ./.github/workflows/build-and-publish-docker.yaml
+ secrets: inherit
with:
artifact_run_id: ${{ github.event.workflow_run.id || github.run_id }}
docker_tags: |
diff --git a/.github/workflows/publish-embedded-packages.yaml b/.github/workflows/publish-embedded-packages.yaml
index a84e302af..34e5885d0 100644
--- a/.github/workflows/publish-embedded-packages.yaml
+++ b/.github/workflows/publish-embedded-packages.yaml
@@ -11,19 +11,60 @@ on:
push:
branches: [livekit]
-env:
- # We perform a dry run for all events except releases.
- # This is to help make sure that we notice if the packaging process has become
- # broken ahead of a release.
- DRY_RUN: ${{ github.event_name != 'release' }}
- # We should only use the hard coded test value for a dry run
- VERSION: ${{ github.event_name == 'release' && github.event.release.tag_name || 'v0.0.0-pre.0' }}
-
jobs:
+ versioning:
+ name: Versioning
+ runs-on: ubuntu-latest
+ outputs:
+ DRY_RUN: ${{ steps.dry_run.outputs.DRY_RUN }}
+ PREFIXED_VERSION: ${{ steps.prefixed_version.outputs.PREFIXED_VERSION }}
+ UNPREFIXED_VERSION: ${{ steps.unprefixed_version.outputs.UNPREFIXED_VERSION }}
+ TAG: ${{ steps.tag.outputs.TAG }}
+ steps:
+ - name: Calculate VERSION
+ # Safely store dynamic values in environment variables
+ # to prevent shell injection (template-injection)
+ run: |
+ # The logic is executed within the shell using the env variables
+ if [ "$EVENT_NAME" = "release" ]; then
+ echo "VERSION=$RELEASE_TAG" >> "$GITHUB_ENV"
+ else
+ echo "VERSION=v0.0.0-pre.0" >> "$GITHUB_ENV"
+ fi
+ env:
+ RELEASE_TAG: ${{ github.event.release.tag_name }}
+ EVENT_NAME: ${{ github.event_name }}
+ - id: dry_run
+ name: Set DRY_RUN
+ # We perform a dry run for all events except releases.
+ # This is to help make sure that we notice if the packaging process has become
+ # broken ahead of a release.
+ run: echo "DRY_RUN=${{ github.event_name != 'release' }}" >> "$GITHUB_OUTPUT"
+ - id: prefixed_version
+ name: Set PREFIXED_VERSION
+ run: echo "PREFIXED_VERSION=${VERSION}" >> "$GITHUB_OUTPUT"
+ - id: unprefixed_version
+ name: Set UNPREFIXED_VERSION
+ # This just strips the leading character
+ run: echo "UNPREFIXED_VERSION=${VERSION:1}" >> "$GITHUB_OUTPUT"
+ - id: tag
+ # latest = a proper release
+ # other = anything else
+ name: Set tag
+ run: |
+ if [[ "${VERSION}" =~ ^v[0-9]+\.[0-9]+\.[0-9]+$ ]]; then
+ echo "TAG=latest" >> "$GITHUB_OUTPUT"
+ elif [[ "${VERSION}" =~ ^v[0-9]+\.[0-9]+\.[0-9]+\-rc\.[0-9]+$ ]]; then
+ echo "TAG=rc" >> "$GITHUB_OUTPUT"
+ else
+ echo "TAG=other" >> "$GITHUB_OUTPUT"
+ fi
+
build_element_call:
+ needs: versioning
uses: ./.github/workflows/build-element-call.yaml
with:
- vite_app_version: embedded-${{ github.event.release.tag_name || 'v0.0.0-pre.0' }} # Using ${{ env.VERSION }} here doesn't work
+ vite_app_version: embedded-${{ needs.versioning.outputs.PREFIXED_VERSION }}
package: embedded
secrets:
SENTRY_ORG: ${{ secrets.SENTRY_ORG }}
@@ -32,7 +73,7 @@ jobs:
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}
publish_tarball:
- needs: build_element_call
+ needs: [build_element_call, versioning]
if: always()
name: Publish tarball
runs-on: ubuntu-latest
@@ -40,40 +81,46 @@ jobs:
contents: write # required to upload release asset
steps:
- name: Determine filename
- run: echo "FILENAME_PREFIX=element-call-embedded-${VERSION:1}" >> "$GITHUB_ENV"
+ run: echo "FILENAME_PREFIX=element-call-embedded-${NEEDS_VERSIONING_OUTPUTS_UNPREFIXED_VERSION}" >> "$GITHUB_ENV"
+ env:
+ NEEDS_VERSIONING_OUTPUTS_UNPREFIXED_VERSION: ${{ needs.versioning.outputs.UNPREFIXED_VERSION }}
- name: 📥 Download built element-call artifact
- uses: actions/download-artifact@95815c38cf2ff2164869cbab79da8d1f422bc89e # v4
+ uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
run-id: ${{ github.event.workflow_run.id || github.run_id }}
name: build-output-embedded
path: ${{ env.FILENAME_PREFIX}}
- name: Create Tarball
- run: tar --numeric-owner -cvzf ${{ env.FILENAME_PREFIX }}.tar.gz ${{ env.FILENAME_PREFIX }}
+ run: tar --numeric-owner -cvzf ${FILENAME_PREFIX}.tar.gz ${FILENAME_PREFIX}
- name: Create Checksum
- run: find ${{ env.FILENAME_PREFIX }} -type f -print0 | sort -z | xargs -0 sha256sum | tee ${{ env.FILENAME_PREFIX }}.sha256
+ run: find ${FILENAME_PREFIX} -type f -print0 | sort -z | xargs -0 sha256sum | tee ${FILENAME_PREFIX}.sha256
- name: Upload
- if: ${{ env.DRY_RUN == 'false' }}
- uses: softprops/action-gh-release@c95fe1489396fe8a9eb87c0abf8aa5b2ef267fda # v2
+ if: ${{ needs.versioning.outputs.DRY_RUN == 'false' }}
+ uses: softprops/action-gh-release@3bb12739c298aeb8a4eeaf626c5b8d85266b0e65 # v2
with:
files: |
${{ env.FILENAME_PREFIX }}.tar.gz
${{ env.FILENAME_PREFIX }}.sha256
publish_npm:
- needs: build_element_call
+ needs: [build_element_call, versioning]
if: always()
name: Publish NPM
runs-on: ubuntu-latest
+ outputs:
+ ARTIFACT_VERSION: ${{ steps.artifact_version.outputs.ARTIFACT_VERSION }}
permissions:
contents: read
- id-token: write # required for the provenance flag on npm publish
+ id-token: write # Allow npm to authenticate as a trusted publisher
steps:
- name: Checkout
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
+ uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
+ with:
+ persist-credentials: false
- name: 📥 Download built element-call artifact
- uses: actions/download-artifact@95815c38cf2ff2164869cbab79da8d1f422bc89e # v4
+ uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
run-id: ${{ github.event.workflow_run.id || github.run_id }}
@@ -82,7 +129,7 @@ jobs:
# n.b. We don't enable corepack here because we are using plain npm
- name: Setup node
- uses: actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e # v4
+ uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
with:
node-version-file: .node-version
registry-url: "https://registry.npmjs.org"
@@ -90,25 +137,34 @@ jobs:
- name: Publish npm
working-directory: embedded/web
run: |
- npm version ${{ env.VERSION }} --no-git-tag-version
+ npm version ${NEEDS_VERSIONING_OUTPUTS_PREFIXED_VERSION} --no-git-tag-version
echo "ARTIFACT_VERSION=$(jq '.version' --raw-output package.json)" >> "$GITHUB_ENV"
- npm publish --provenance --access public ${{ env.DRY_RUN == 'true' && '--dry-run' || '' }}
+ npm publish --provenance --access public --tag ${NEEDS_VERSIONING_OUTPUTS_TAG} ${{ needs.versioning.outputs.DRY_RUN == 'true' && '--dry-run' || '' }}
env:
- NODE_AUTH_TOKEN: ${{ secrets.NPM_RELEASE_TOKEN }}
+ NEEDS_VERSIONING_OUTPUTS_PREFIXED_VERSION: ${{ needs.versioning.outputs.PREFIXED_VERSION }}
+ NEEDS_VERSIONING_OUTPUTS_TAG: ${{ needs.versioning.outputs.TAG }}
+
+ - id: artifact_version
+ name: Output artifact version
+ run: echo "ARTIFACT_VERSION=${ARTIFACT_VERSION}" >> "$GITHUB_OUTPUT"
publish_android:
- needs: build_element_call
+ needs: [build_element_call, versioning]
if: always()
name: Publish Android AAR
runs-on: ubuntu-latest
+ outputs:
+ ARTIFACT_VERSION: ${{ steps.artifact_version.outputs.ARTIFACT_VERSION }}
permissions:
contents: read
steps:
- name: Checkout
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
+ uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
+ with:
+ persist-credentials: false
- name: 📥 Download built element-call artifact
- uses: actions/download-artifact@95815c38cf2ff2164869cbab79da8d1f422bc89e # v4
+ uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
run-id: ${{ github.event.workflow_run.id || github.run_id }}
@@ -116,16 +172,27 @@ jobs:
path: embedded/android/lib/src/main/assets/element-call
- name: ☕️ Setup Java
- uses: actions/setup-java@3a4f6e1af504cf6a31855fa899c6aa5355ba6c12 # v4
+ uses: actions/setup-java@c1e323688fd81a25caa38c78aa6df2d33d3e20d9 # v4
with:
distribution: "temurin"
java-version: "17"
- name: Get artifact version
- run: echo "ARTIFACT_VERSION=${VERSION:1}" >> "$GITHUB_ENV"
+ # Anything that is not a final release will be tagged as a snapshot
+ run: |
+ if [[ "${NEEDS_VERSIONING_OUTPUTS_TAG}" == "latest" ]]; then
+ echo "ARTIFACT_VERSION=${NEEDS_VERSIONING_OUTPUTS_UNPREFIXED_VERSION}" >> "$GITHUB_ENV"
+ elif [[ "${NEEDS_VERSIONING_OUTPUTS_TAG}" == "rc" ]]; then
+ echo "ARTIFACT_VERSION=${NEEDS_VERSIONING_OUTPUTS_UNPREFIXED_VERSION}" >> "$GITHUB_ENV"
+ else
+ echo "ARTIFACT_VERSION=${NEEDS_VERSIONING_OUTPUTS_UNPREFIXED_VERSION}-SNAPSHOT" >> "$GITHUB_ENV"
+ fi
+ env:
+ NEEDS_VERSIONING_OUTPUTS_TAG: ${{ needs.versioning.outputs.TAG }}
+ NEEDS_VERSIONING_OUTPUTS_UNPREFIXED_VERSION: ${{ needs.versioning.outputs.UNPREFIXED_VERSION }}
- name: Set version string
- run: sed -i "s/0.0.0/${{ env.ARTIFACT_VERSION }}/g" embedded/android/lib/src/main/kotlin/io/element/android/call/embedded/Version.kt
+ run: sed -i "s/0.0.0/${ARTIFACT_VERSION}/g" embedded/android/lib/src/main/kotlin/io/element/android/call/embedded/Version.kt
- name: Publish AAR
working-directory: embedded/android
@@ -135,23 +202,30 @@ jobs:
ORG_GRADLE_PROJECT_mavenCentralPassword: ${{ secrets.MAVEN_RELEASE_PASSWORD }}
ORG_GRADLE_PROJECT_signingInMemoryKey: ${{ secrets.GPG_SIGNING_KEY }}
ORG_GRADLE_PROJECT_signingInMemoryKeyPassword: ${{ secrets.GPG_SIGNING_KEY_PASSWORD }}
- run: ./gradlew publishAndReleaseToMavenCentral --no-daemon ${{ env.DRY_RUN == 'true' && '--dry-run' || '' }}
+ run: ./gradlew publishToMavenCentral --no-daemon ${{ needs.versioning.outputs.DRY_RUN == 'true' && '--dry-run' || '' }}
+
+ - id: artifact_version
+ name: Output artifact version
+ run: echo "ARTIFACT_VERSION=${ARTIFACT_VERSION}" >> "$GITHUB_OUTPUT"
publish_ios:
- needs: build_element_call
+ needs: [build_element_call, versioning]
if: always()
name: Publish SwiftPM Library
runs-on: ubuntu-latest
+ outputs:
+ ARTIFACT_VERSION: ${{ steps.artifact_version.outputs.ARTIFACT_VERSION }}
permissions:
contents: read
steps:
- name: Checkout
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
+ uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
with:
path: element-call
+ persist-credentials: false
- name: 📥 Download built element-call artifact
- uses: actions/download-artifact@95815c38cf2ff2164869cbab79da8d1f422bc89e # v4
+ uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
run-id: ${{ github.event.workflow_run.id || github.run_id }}
@@ -159,20 +233,22 @@ jobs:
path: element-call/embedded/ios/Sources/dist
- name: Checkout element-call-swift
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
+ uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
with:
repository: element-hq/element-call-swift
path: element-call-swift
- token: ${{ secrets.SWIFT_RELEASE_TOKEN }}
+ persist-credentials: false
- name: Copy files
run: rsync -a --delete --exclude .git element-call/embedded/ios/ element-call-swift
- name: Get artifact version
- run: echo "ARTIFACT_VERSION=${VERSION:1}" >> "$GITHUB_ENV"
+ run: echo "ARTIFACT_VERSION=${NEEDS_VERSIONING_OUTPUTS_UNPREFIXED_VERSION}" >> "$GITHUB_ENV"
+ env:
+ NEEDS_VERSIONING_OUTPUTS_UNPREFIXED_VERSION: ${{ needs.versioning.outputs.UNPREFIXED_VERSION }}
- name: Set version string
- run: sed -i "s/0.0.0/${{ env.ARTIFACT_VERSION }}/g" element-call-swift/Sources/EmbeddedElementCall/EmbeddedElementCall.swift
+ run: sed -i "s/0.0.0/${ARTIFACT_VERSION}/g" element-call-swift/Sources/EmbeddedElementCall/EmbeddedElementCall.swift
- name: Test build
working-directory: element-call-swift
@@ -184,28 +260,44 @@ jobs:
git config --global user.email "ci@element.io"
git config --global user.name "Element CI"
git add -A
- git commit -am "Release ${{ env.VERSION }}"
- git tag -a ${{ env.ARTIFACT_VERSION }} -m "${{ github.event.release.html_url }}"
+ git commit -am "Release ${NEEDS_VERSIONING_OUTPUTS_PREFIXED_VERSION}"
+ git tag -a ${ARTIFACT_VERSION} -m "${GITHUB_EVENT_RELEASE_HTML_URL}"
+ env:
+ NEEDS_VERSIONING_OUTPUTS_PREFIXED_VERSION: ${{ needs.versioning.outputs.PREFIXED_VERSION }}
+ GITHUB_EVENT_RELEASE_HTML_URL: ${{ github.event.release.html_url }}
- name: Push
+ if: ${{ needs.versioning.outputs.DRY_RUN == 'false' }}
working-directory: element-call-swift
run: |
- git push --tags ${{ env.DRY_RUN == 'true' && '--dry-run' || '' }}
+ git push "https://x-access-token:${SWIFT_RELEASE_TOKEN}@github.com/element-hq/element-call-swift.git" --tags
+ env:
+ SWIFT_RELEASE_TOKEN: ${{ secrets.SWIFT_RELEASE_TOKEN }}
+
+ - id: artifact_version
+ name: Output artifact version
+ run: echo "ARTIFACT_VERSION=${ARTIFACT_VERSION}" >> "$GITHUB_OUTPUT"
release_notes:
- needs: [publish_npm, publish_android, publish_ios]
+ needs: [versioning, publish_npm, publish_android, publish_ios]
if: always()
name: Update release notes
runs-on: ubuntu-latest
permissions:
contents: write # to update release notes
steps:
- - name: Get artifact version
- run: echo "ARTIFACT_VERSION=${VERSION:1}" >> "$GITHUB_ENV"
-
+ - name: Log versions
+ run: |
+ echo "NPM: ${NEEDS_PUBLISH_NPM_OUTPUTS_ARTIFACT_VERSION}"
+ echo "Android: ${NEEDS_PUBLISH_ANDROID_OUTPUTS_ARTIFACT_VERSION}"
+ echo "iOS: ${NEEDS_PUBLISH_IOS_OUTPUTS_ARTIFACT_VERSION}"
+ env:
+ NEEDS_PUBLISH_NPM_OUTPUTS_ARTIFACT_VERSION: ${{ needs.publish_npm.outputs.ARTIFACT_VERSION }}
+ NEEDS_PUBLISH_ANDROID_OUTPUTS_ARTIFACT_VERSION: ${{ needs.publish_android.outputs.ARTIFACT_VERSION }}
+ NEEDS_PUBLISH_IOS_OUTPUTS_ARTIFACT_VERSION: ${{ needs.publish_ios.outputs.ARTIFACT_VERSION }}
- name: Add release notes
- if: ${{ env.DRY_RUN == 'false' }}
- uses: softprops/action-gh-release@c95fe1489396fe8a9eb87c0abf8aa5b2ef267fda # v2
+ if: ${{ needs.versioning.outputs.DRY_RUN == 'false' }}
+ uses: softprops/action-gh-release@3bb12739c298aeb8a4eeaf626c5b8d85266b0e65 # v2
with:
append_body: true
body: |
@@ -218,19 +310,19 @@ jobs:
### NPM
```
- npm install @element-hq/element-call-embedded@${{ env.ARTIFACT_VERSION }}
+ npm install @element-hq/element-call-embedded@${{ needs.publish_npm.outputs.ARTIFACT_VERSION }}
```
### Android AAR
```
dependencies {
- implementation 'io.element.android:element-call-embedded:${{ env.ARTIFACT_VERSION }}'
+ implementation 'io.element.android:element-call-embedded:${{ needs.publish_android.outputs.ARTIFACT_VERSION }}'
}
```
### SwiftPM
```
- .package(url: "https://github.com/element-hq/element-call-swift.git", from: "${{ env.ARTIFACT_VERSION }}")
+ .package(url: "https://github.com/element-hq/element-call-swift.git", from: "${{ needs.publish_ios.outputs.ARTIFACT_VERSION }}")
```
diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml
index 8037ab2e0..58e849759 100644
--- a/.github/workflows/publish.yaml
+++ b/.github/workflows/publish.yaml
@@ -31,18 +31,18 @@ jobs:
- name: Determine filename
run: echo "FILENAME_PREFIX=element-call-${VERSION:1}" >> "$GITHUB_ENV"
- name: 📥 Download built element-call artifact
- uses: actions/download-artifact@95815c38cf2ff2164869cbab79da8d1f422bc89e # v4
+ uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
run-id: ${{ github.event.workflow_run.id || github.run_id }}
name: build-output-full
path: ${{ env.FILENAME_PREFIX }}
- name: Create Tarball
- run: tar --numeric-owner --transform "s/dist/${{ env.FILENAME_PREFIX }}/" -cvzf ${{ env.FILENAME_PREFIX }}.tar.gz ${{ env.FILENAME_PREFIX }}
+ run: tar --numeric-owner --transform "s/dist/${FILENAME_PREFIX}/" -cvzf ${FILENAME_PREFIX}.tar.gz ${FILENAME_PREFIX}
- name: Create Checksum
- run: find ${{ env.FILENAME_PREFIX }} -type f -print0 | sort -z | xargs -0 sha256sum | tee ${{ env.FILENAME_PREFIX }}.sha256
+ run: find ${FILENAME_PREFIX} -type f -print0 | sort -z | xargs -0 sha256sum | tee ${FILENAME_PREFIX}.sha256
- name: Upload
- uses: softprops/action-gh-release@c95fe1489396fe8a9eb87c0abf8aa5b2ef267fda # v2
+ uses: softprops/action-gh-release@3bb12739c298aeb8a4eeaf626c5b8d85266b0e65 # v2
with:
files: |
${{ env.FILENAME_PREFIX }}.tar.gz
@@ -55,21 +55,23 @@ jobs:
permissions:
contents: write
packages: write
+ id-token: write
uses: ./.github/workflows/build-and-publish-docker.yaml
+ secrets: inherit
with:
artifact_run_id: ${{ github.event.workflow_run.id || github.run_id }}
docker_tags: |
type=sha,format=short,event=branch
- type=semver,pattern=v{{version}}
+ type=raw,value=${{ github.event.release.tag_name }}
+ type=raw,value=latest
+ # Like before, using ${{ env.VERSION }} above doesn't work
add_docker_release_note:
needs: publish_docker
name: Add docker release note
runs-on: ubuntu-latest
steps:
- - name: Get artifact version
- run: echo "ARTIFACT_VERSION=${VERSION:1}" >> "$GITHUB_ENV"
- name: Add release note
- uses: softprops/action-gh-release@c95fe1489396fe8a9eb87c0abf8aa5b2ef267fda # v2
+ uses: softprops/action-gh-release@3bb12739c298aeb8a4eeaf626c5b8d85266b0e65 # v2
with:
append_body: true
body: |
@@ -79,5 +81,5 @@ jobs:
The image provides a full build of Element Call that can be used both in standalone and as a widget (on a remote URL).
```
- docker pull ghcr.io/element-hq/element-call:${{ env.ARTIFACT_VERSION }}
+ docker pull ghcr.io/element-hq/element-call:${{ env.VERSION }}
```
diff --git a/.github/workflows/sync-labels.yml b/.github/workflows/sync-labels.yml
new file mode 100644
index 000000000..ec3639365
--- /dev/null
+++ b/.github/workflows/sync-labels.yml
@@ -0,0 +1,23 @@
+name: Sync labels
+on:
+ workflow_dispatch: {}
+
+ push:
+ branches:
+ - livekit
+ paths:
+ - .github/labels.yml
+ - .github/workflows/sync-labels.yml
+
+permissions: {} # We use ELEMENT_BOT_TOKEN instead
+
+jobs:
+ sync-labels:
+ uses: element-hq/element-meta/.github/workflows/sync-labels.yml@7f2f93fb9b52ece7a0998f60e64862aa203c1746
+ with:
+ LABELS: |
+ .github/labels.yml
+ DELETE: true
+ WET: true
+ secrets:
+ ELEMENT_BOT_TOKEN: ${{ secrets.ELEMENT_BOT_TOKEN }}
diff --git a/.github/workflows/test-netlify.yaml b/.github/workflows/test-netlify.yaml
new file mode 100644
index 000000000..bccde4450
--- /dev/null
+++ b/.github/workflows/test-netlify.yaml
@@ -0,0 +1,48 @@
+# Triggers after the playwright tests have finished,
+# taking the artifact and uploading it to Netlify for easier viewing
+name: Upload End to End Test report to Netlify
+on:
+ # Privilege escalation necessary to publish to Netlify
+ # 🚨 We must not execute any checked out code here.
+ workflow_run: # zizmor: ignore[dangerous-triggers]
+ workflows: ["Test"]
+ types:
+ - completed
+
+concurrency:
+ group: ${{ github.workflow }}-${{ github.event.workflow_run.head_branch || github.run_id }}
+ cancel-in-progress: ${{ github.event.workflow_run.event == 'pull_request' }}
+
+permissions: {}
+
+jobs:
+ report:
+ if: github.event.workflow_run.conclusion != 'cancelled'
+ name: Report results
+ runs-on: ubuntu-24.04
+ environment: Netlify
+ permissions:
+ statuses: write
+ deployments: write
+ actions: read
+ steps:
+ - name: Download HTML report
+ uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8
+ with:
+ github-token: ${{ secrets.GITHUB_TOKEN }}
+ run-id: ${{ github.event.workflow_run.id }}
+ name: html-report
+ path: playwright-report
+
+ - name: 📤 Deploy to Netlify
+ uses: matrix-org/netlify-pr-preview@9805cd123fc9a7e421e35340a05e1ebc5dee46b5 # v3
+ with:
+ path: playwright-report
+ owner: ${{ github.event.workflow_run.head_repository.owner.login }}
+ branch: ${{ github.event.workflow_run.head_branch }}
+ revision: ${{ github.event.workflow_run.head_sha }}
+ token: ${{ secrets.NETLIFY_AUTH_TOKEN }}
+ site_id: ${{ secrets.NETLIFY_SITE_ID }}
+ desc: Playwright Report
+ deployment_env: EndToEndTests
+ prefix: "e2e-"
diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml
index 85215e689..bfa873c78 100644
--- a/.github/workflows/test.yaml
+++ b/.github/workflows/test.yaml
@@ -2,27 +2,34 @@ name: Test
on:
pull_request: {}
push:
- branches: [livekit, full-mesh]
+ branches: [livekit]
jobs:
vitest:
name: Run unit tests
runs-on: ubuntu-latest
+ container:
+ # Make sure to grab the latest version of the Playwright image
+ # https://playwright.dev/docs/docker#pull-the-image
+ image: mcr.microsoft.com/playwright:v1.61.1-noble
steps:
- name: Checkout code
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
+ uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
+ with:
+ persist-credentials: false
- name: Enable Corepack
run: corepack enable
- - name: Yarn cache
- uses: actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e # v4
+ - name: pnpm cache
+ uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
with:
- cache: "yarn"
+ cache: "pnpm"
node-version-file: ".node-version"
- name: Install dependencies
- run: "yarn install --immutable"
+ # ignore-pnpmfile should never be commited. Make CI crash if it happened (`pnpmfileChecksum` is present)
+ run: "pnpm install --frozen-lockfile --ignore-pnpmfile"
- name: Vitest
- run: "yarn run test:coverage"
+ run: "pnpm run test:coverage"
- name: Upload to codecov
- uses: codecov/codecov-action@0565863a31f2c772f9f0395002a31e3f06189574 # v5
+ uses: codecov/codecov-action@fb8b3582c8e4def4969c97caa2f19720cb33a72f # v7
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
with:
@@ -30,31 +37,36 @@ jobs:
fail_ci_if_error: true
playwright:
name: Run end-to-end tests
- timeout-minutes: 10
+ timeout-minutes: 60
runs-on: ubuntu-latest
steps:
- - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
+ - uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
+ with:
+ persist-credentials: false
- name: Enable Corepack
run: corepack enable
- - uses: actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e # v4
+ - uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
with:
- cache: "yarn"
+ cache: "pnpm"
node-version-file: ".node-version"
- name: Install dependencies
- run: yarn install --immutable
+ # ignore-pnpmfile should never be commited. Make CI crash if it happened (`pnpmfileChecksum` is present)
+ run: pnpm install --frozen-lockfile --ignore-pnpmfile
- name: Install Playwright Browsers
- run: yarn playwright install --with-deps
+ run: pnpm exec playwright install --with-deps
- name: Run backend components
run: |
- docker compose -f playwright-backend-docker-compose.yml up -d
+ docker compose -f docker-compose-dev.yml -f docker-compose-playwright.yml pull
+ docker compose -f docker-compose-dev.yml -f docker-compose-playwright.yml up -d
docker ps
- - name: Copy config file
- run: cp config/config.devenv.json public/config.json
- name: Run Playwright tests
- run: yarn playwright test
- - uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
+ env:
+ USE_DOCKER: 1
+ run: pnpm exec playwright test
+ - uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
if: ${{ !cancelled() }}
with:
- name: playwright-report
- path: playwright-report/
- retention-days: 3
+ name: html-report
+ path: playwright-report
+ if-no-files-found: error
+ retention-days: 4
diff --git a/.github/workflows/translations-download.yaml b/.github/workflows/translations-download.yaml
index ae1e92d0d..f61a44c59 100644
--- a/.github/workflows/translations-download.yaml
+++ b/.github/workflows/translations-download.yaml
@@ -13,18 +13,21 @@ jobs:
steps:
- name: Checkout the code
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
+ uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
+ with:
+ persist-credentials: false
- name: Enable Corepack
run: corepack enable
- - uses: actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e # v4
+ - uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
with:
- cache: "yarn"
+ cache: "pnpm"
node-version-file: ".node-version"
- name: Install Deps
- run: "yarn install --immutable"
+ # ignore-pnpmfile should never be commited. Make CI crash if it happened (`pnpmfileChecksum` is present)
+ run: "pnpm install --frozen-lockfile --ignore-pnpmfile"
- name: Prune i18n
run: "rm -R locales"
@@ -37,12 +40,17 @@ jobs:
- name: Fix the owner of the downloaded files
run: "sudo chown runner:docker -R locales"
- - name: Prettier
- run: yarn prettier:format
+ # Localazy doesn't write file contents in the same order that i18next-cli's
+ # extractor uses. We re-run the extractor after downloading to fix the order.
+ - name: i18n
+ run: pnpm i18n
+
+ - name: Formatting
+ run: pnpm format
- name: Create Pull Request
id: cpr
- uses: peter-evans/create-pull-request@271a8d0340265f705b14b6d32b9829c1cb33d45e # v7.0.8
+ uses: peter-evans/create-pull-request@22a9089034f40e5a961c8808d113e2c98fb63676 # v7.0.11
with:
token: ${{ secrets.ELEMENT_BOT_TOKEN }}
branch: actions/localazy-download
@@ -50,7 +58,7 @@ jobs:
title: Localazy Download
commit-message: Translations updates
labels: |
- T-Task
+ PR-Task
- name: Enable automerge
run: gh pr merge --merge --auto "$PR_NUMBER"
diff --git a/.github/workflows/translations-upload.yaml b/.github/workflows/translations-upload.yaml
index bab7a0d27..daf968958 100644
--- a/.github/workflows/translations-upload.yaml
+++ b/.github/workflows/translations-upload.yaml
@@ -14,7 +14,9 @@ jobs:
steps:
- name: Checkout the code
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
+ uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
+ with:
+ persist-credentials: false
- name: Upload
uses: localazy/upload@27e6b5c0fddf4551596b42226b1c24124335d24a # v1
diff --git a/.github/workflows/zizmor.yml b/.github/workflows/zizmor.yml
new file mode 100644
index 000000000..caeac8286
--- /dev/null
+++ b/.github/workflows/zizmor.yml
@@ -0,0 +1,23 @@
+name: GitHub Actions Security Analysis with zizmor 🌈
+
+on:
+ push:
+ branches: ["livekit", "full-mesh"]
+ pull_request: {}
+
+permissions: {}
+
+jobs:
+ zizmor:
+ name: Run zizmor 🌈
+ runs-on: ubuntu-latest
+ permissions:
+ security-events: write # Required for upload-sarif (used by zizmor-action) to upload SARIF files.
+ steps:
+ - name: Checkout repository
+ uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
+ with:
+ persist-credentials: false
+
+ - name: Run zizmor 🌈
+ uses: zizmorcore/zizmor-action@192e21d79ab29983730a13d1382995c2307fbcaa # v0.5.7
diff --git a/.gitignore b/.gitignore
index cc594f8ae..e9225072d 100644
--- a/.gitignore
+++ b/.gitignore
@@ -8,7 +8,9 @@ dist-ssr
.idea/
public/config.json
backend/synapse_tmp/*
+backend/synapse_tmp_othersite/*
/coverage
+config.json
# Yarn
yarn-error.log
@@ -19,11 +21,20 @@ yarn-error.log
!/.yarn/releases
!/.yarn/sdks
!/.yarn/versions
+# old yarn based linking
/.links.yaml
/.links.disabled.yaml
+/.links.temp-disabled.yaml
+# pnpm based linking
+/.links.cjs
+/.links.disabled.cjs
+/.links.temp-disabled.cjs
# Playwright
/test-results/
/playwright-report/
/blob-report/
-/playwright/.cache/
\ No newline at end of file
+/playwright/.cache/
+
+*storybook.log
+storybook-static
diff --git a/.node-version b/.node-version
index 2bd5a0a98..a45fd52cc 100644
--- a/.node-version
+++ b/.node-version
@@ -1 +1 @@
-22
+24
diff --git a/.oxfmtrc.json b/.oxfmtrc.json
new file mode 100644
index 000000000..20bac1bf8
--- /dev/null
+++ b/.oxfmtrc.json
@@ -0,0 +1,6 @@
+{
+ "$schema": "./node_modules/oxfmt/configuration_schema.json",
+ "printWidth": 80,
+ "sortPackageJson": false,
+ "ignorePatterns": ["pnpm-lock.yaml", "node_modules", "dist"]
+}
diff --git a/.oxlintrc.json b/.oxlintrc.json
new file mode 100644
index 000000000..d06f2a473
--- /dev/null
+++ b/.oxlintrc.json
@@ -0,0 +1,154 @@
+{
+ "$schema": "./node_modules/oxlint/configuration_schema.json",
+ "plugins": [
+ "eslint",
+ "import",
+ "jsdoc",
+ "jsx-a11y",
+ "promise",
+ "react",
+ "typescript",
+ "unicorn",
+ "vitest"
+ ],
+ "jsPlugins": [
+ "eslint-plugin-storybook",
+ "eslint-plugin-element-call"
+ // TODO: Re-enable once oxlint supports lint rules that rely on TypeScript type-awareness.
+ // "eslint-plugin-rxjs"
+ ],
+ "categories": {
+ "correctness": "error",
+ "perf": "error"
+ },
+ "options": {
+ "denyWarnings": true,
+ "typeAware": true
+ },
+ "env": {
+ "builtin": true
+ },
+ "rules": {
+ "element-call/copyright-header": [
+ "error",
+ "/*\nCopyright %%CURRENT_YEAR%% Element Creations Ltd.\n\nSPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial\nPlease see LICENSE in the repository root for full details.\n*/\n\n"
+ ],
+ "element-call/no-observablescope-leak": "error",
+ "element-call/no-top-level-logger-get-child": "error",
+ "jsdoc/empty-tags": "error",
+ "jsdoc/check-property-names": "error",
+ "jsdoc/require-param-description": "warn",
+ "react/display-name": "error",
+ // TODO: Re-enable once oxlint supports lint rules that rely on TypeScript type-awareness.
+ // "rxjs/no-exposed-subjects": "error",
+ // "rxjs/finnish": [
+ // "error",
+ // {
+ // "names": {
+ // "^this$": false
+ // }
+ // }
+ // ],
+ "no-restricted-imports": [
+ "error",
+ {
+ "patterns": [
+ {
+ "group": [
+ "matrix-widget-api/src",
+ "matrix-widget-api/src/",
+ "matrix-widget-api/src/**",
+ "matrix-widget-api/lib",
+ "matrix-widget-api/lib/",
+ "matrix-widget-api/lib/**"
+ ],
+ "message": "Please use matrix-widget-api instead"
+ },
+ {
+ "group": [
+ "matrix-js-sdk/src",
+ "matrix-js-sdk/src/",
+ "matrix-js-sdk/src/**",
+ "matrix-js-sdk/lib",
+ "matrix-js-sdk/lib/",
+ "matrix-js-sdk/lib/index"
+ ],
+ "message": "Please use matrix-js-sdk instead"
+ }
+ ]
+ }
+ ],
+ "typescript/no-floating-promises": "error",
+ "typescript/no-misused-promises": "error",
+ "typescript/promise-function-async": "error",
+ "typescript/require-await": "error",
+ "typescript/await-thenable": "error",
+ // To help ensure that we get proper vite/rollup lazy loading (e.g. for matrix-js-sdk).
+ "typescript/consistent-type-imports": [
+ "error",
+ {
+ "fixStyle": "inline-type-imports"
+ }
+ ],
+ // TODO: These had to be disabled in the eslint -> oxlint migration. Would be nice to
+ // enable them in future or at least document why we're disabling them.
+ "eslint/no-await-in-loop": "off",
+ "eslint/no-unused-vars": ["error", { "args": "none" }],
+ "import/default": "off",
+ "jsdoc/check-tag-names": "off",
+ "jsx-a11y/prefer-tag-over-role": "off",
+ "promise/no-callback-in-promise": "off",
+ "react/jsx-key": "off",
+ "react/jsx-no-constructed-context-values": "off",
+ "react/no-array-index-key": "off",
+ "react/no-children-prop": "off",
+ "react/no-object-type-as-default-prop": "off",
+ "typescript/no-misused-spread": "off",
+ "typescript/no-useless-default-assignment": "off",
+ "typescript/restrict-template-expressions": "off",
+ "typescript/unbound-method": "off",
+ "vitest/expect-expect": "off",
+ "vitest/no-conditional-expect": "off",
+ "vitest/no-disabled-tests": "off",
+ "vitest/require-mock-type-parameters": "off",
+ "vitest/require-to-throw-message": "off"
+ },
+ "overrides": [
+ {
+ "files": ["src/*/**"],
+ "rules": {
+ // In application code we should use the js-sdk logger, never console directly.
+ "no-console": "error"
+ }
+ },
+ {
+ "files": [
+ "**/*.test.ts",
+ "**/*.test.tsx",
+ "**/test.ts",
+ "**/test.tsx",
+ "**/test-**"
+ ],
+ "rules": {
+ // Tests often initialize an ObservableScope in an outer scope in
+ // beforeEach, which is not actually a problem
+ "element-call/no-observablescope-leak": "off",
+ "jsdoc/empty-tags": "off",
+ "jsdoc/check-property-names": "off",
+ "jsdoc/require-param-description": "off",
+ "jsx-a11y/media-has-caption": "off"
+ // TODO: Enable once oxlint supports them.
+ // "jsdoc/check-values": "off",
+ // "jsdoc/check-param-names": "off",
+ // "jsdoc/no-types": "off",
+ }
+ },
+ {
+ "files": ["playwright/**"],
+ "rules": {
+ // Playwright as a `use` function that has nothing to do with React hooks.
+ "react-hooks/rules-of-hooks": "off"
+ }
+ }
+ ]
+}
diff --git a/.prettierignore b/.prettierignore
deleted file mode 100644
index f06235c46..000000000
--- a/.prettierignore
+++ /dev/null
@@ -1,2 +0,0 @@
-node_modules
-dist
diff --git a/.prettierrc.json b/.prettierrc.json
deleted file mode 100644
index 0967ef424..000000000
--- a/.prettierrc.json
+++ /dev/null
@@ -1 +0,0 @@
-{}
diff --git a/.storybook/main.ts b/.storybook/main.ts
new file mode 100644
index 000000000..e227ef765
--- /dev/null
+++ b/.storybook/main.ts
@@ -0,0 +1,36 @@
+/*
+Copyright 2026 Element Creations Ltd.
+
+SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
+Please see LICENSE in the repository root for full details.
+*/
+
+import type { StorybookConfig } from "@storybook/react-vite";
+
+const config: StorybookConfig = {
+ stories: ["../src/**/*.mdx", "../src/**/*.stories.@(js|jsx|mjs|ts|tsx)"],
+ addons: ["@storybook/addon-docs", "@storybook/addon-vitest"],
+ framework: "@storybook/react-vite",
+ // THIS IS IMPORTANT
+ // vitest runs without Vite's normal dependency optimization, so we need to manually include the polyfills for the stories to work.
+ // otherwise we will get: new dependencies optimized: ...
+ // and
+ // ```
+ // [vitest] Vite unexpectedly reloaded a test. This may cause tests to fail, lead to flaky behaviour or duplicated test runs.
+ // For a stable experience, please add mentioned dependencies to your config's `optimizeDeps.include` field manually.
+ // ```
+ // which breaks the storybook ci on the first and only run.
+ viteFinal(config) {
+ config.optimizeDeps = {
+ ...config.optimizeDeps,
+ include: [
+ ...(config.optimizeDeps?.include ?? []),
+ "vite-plugin-node-polyfills/shims/buffer",
+ "vite-plugin-node-polyfills/shims/global",
+ "vite-plugin-node-polyfills/shims/process",
+ ],
+ };
+ return config;
+ },
+};
+export default config;
diff --git a/.storybook/manager.ts b/.storybook/manager.ts
new file mode 100644
index 000000000..1177be2fd
--- /dev/null
+++ b/.storybook/manager.ts
@@ -0,0 +1,31 @@
+/*
+Copyright 2026 Element Creations Ltd.
+
+SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
+Please see LICENSE in the repository root for full details.
+*/
+
+import { create } from "storybook/theming";
+import { addons } from "storybook/manager-api";
+
+addons.setConfig({
+ theme: create({
+ base: "light",
+ colorPrimary: "#1b1d22",
+ colorSecondary: "#0467dd",
+
+ // Typography
+ fontBase: '"Inter", sans-serif',
+ fontCode: '"Inconsolata", monospace',
+
+ // Text colors
+ textColor: "#1b1d22",
+ appBg: "#ffffff",
+ barBg: "#ffffff",
+
+ brandTitle: "Element Call",
+ brandUrl: "https://element.io/",
+ brandImage: "/src/icons/Logo.svg",
+ brandTarget: "_self",
+ }),
+});
diff --git a/.storybook/preview.tsx b/.storybook/preview.tsx
new file mode 100644
index 000000000..757c1f8a7
--- /dev/null
+++ b/.storybook/preview.tsx
@@ -0,0 +1,56 @@
+/*
+Copyright 2026 Element Creations Ltd.
+
+SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
+Please see LICENSE in the repository root for full details.
+*/
+
+import type { Preview } from "@storybook/react-vite";
+import { TooltipProvider } from "@vector-im/compound-web";
+import i18n from "i18next";
+import { logger } from "matrix-js-sdk/lib/logger";
+
+import EN from "../locales/en/app.json";
+import { initReactI18next } from "react-i18next";
+import "../src/index.css";
+
+// Bare-minimum i18n config
+i18n
+ .use(initReactI18next)
+ .init({
+ lng: "en",
+ fallbackLng: "en",
+ supportedLngs: ["en"],
+ // We embed the translations, so that it never needs to fetch
+ resources: {
+ en: {
+ translation: EN,
+ },
+ },
+ interpolation: {
+ escapeValue: false, // React has built-in XSS protections
+ },
+ })
+ .catch((e) => logger.warn("Failed to init i18n for stories", e));
+
+const preview: Preview = {
+ parameters: {
+ layout: "centered",
+ controls: {
+ matchers: {
+ color: /(background|color)$/i,
+ date: /Date$/i,
+ },
+ },
+ },
+ tags: ["autodocs"],
+ decorators: [
+ (Story) => (
+
+
+
+ ),
+ ],
+};
+
+export default preview;
diff --git a/.yarn/plugins/linker.cjs b/.yarn/plugins/linker.cjs
deleted file mode 100644
index cf7181f9a..000000000
--- a/.yarn/plugins/linker.cjs
+++ /dev/null
@@ -1,91 +0,0 @@
-/*
-Copyright 2025 New Vector Ltd.
-
-SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
-Please see LICENSE in the repository root for full details.
-*/
-
-module.exports = {
- name: "linker",
- factory: (require) => ({
- hooks: {
- // Yarn's plugin system is very light on documentation. The best we have
- // for this hook is simply the type definition in
- // https://github.com/yarnpkg/berry/blob/master/packages/yarnpkg-core/sources/Plugin.ts
- registerPackageExtensions: async (config, registerPackageExtension) => {
- const { structUtils } = require("@yarnpkg/core");
- const { parseSyml } = require("@yarnpkg/parsers");
- const path = require("path");
- const fs = require("fs");
- const process = require("process");
-
- // Create a descriptor that we can use to target our direct dependencies
- const projectPath = config.projectCwd
- .replace(/\\/g, "/")
- .replace("/C:/", "C:/");
- const manifestPath = path.join(projectPath, "package.json");
- const manifest = JSON.parse(fs.readFileSync(manifestPath, "utf8"));
- const selfDescriptor = structUtils.parseDescriptor(
- `${manifest.name}@*`,
- true,
- );
-
- // Load the list of linked packages
- const linksPath = path.join(projectPath, ".links.yaml");
- let linksFile;
- try {
- linksFile = fs.readFileSync(linksPath, "utf8");
- } catch (e) {
- return; // File doesn't exist, there's nothing to link
- }
- let links;
- try {
- links = parseSyml(linksFile);
- } catch (e) {
- console.error(".links.yaml has invalid syntax", e);
- process.exit(1);
- }
-
- // Resolve paths and turn them into a Yarn package extension
- const overrides = Object.fromEntries(
- Object.entries(links).map(([name, link]) => [
- name,
- `portal:${path.resolve(config.projectCwd, link)}`,
- ]),
- );
- const overrideIdentHashes = new Set();
- for (const name of Object.keys(overrides))
- overrideIdentHashes.add(
- structUtils.parseDescriptor(`${name}@*`, true).identHash,
- );
-
- // Extend our own package's dependencies with these local overrides
- registerPackageExtension(selfDescriptor, { dependencies: overrides });
-
- // Filter out the original dependencies from the package spec so Yarn
- // actually respects the overrides
- const filterDependencies = (original) => {
- const pkg = structUtils.copyPackage(original);
- pkg.dependencies = new Map(
- Array.from(pkg.dependencies.entries()).filter(
- ([, value]) => !overrideIdentHashes.has(value.identHash),
- ),
- );
- return pkg;
- };
-
- // Patch Yarn's own normalizePackage method to use the above filter
- const originalNormalizePackage = config.normalizePackage;
- config.normalizePackage = function (pkg, extensions) {
- return originalNormalizePackage.call(
- this,
- pkg.identHash === selfDescriptor.identHash
- ? filterDependencies(pkg)
- : pkg,
- extensions,
- );
- };
- },
- },
- }),
-};
diff --git a/.yarnrc.yml b/.yarnrc.yml
deleted file mode 100644
index 538de0e70..000000000
--- a/.yarnrc.yml
+++ /dev/null
@@ -1,3 +0,0 @@
-nodeLinker: node-modules
-plugins:
- - .yarn/plugins/linker.cjs
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index 0a4a6ac69..9b52f09f6 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -1,3 +1,71 @@
# Contributing code to Element
Element follows the same pattern as the [matrix-js-sdk](https://github.com/matrix-org/matrix-js-sdk/blob/develop/CONTRIBUTING.md).
+
+# Contributing to Element Call
+
+Element Call is a native Matrix video conferencing application built on
+[MatrixRTC (MSC4143)](https://github.com/matrix-org/matrix-spec-proposals/pull/4143)
+and [LiveKit](https://livekit.io/). It runs in multiple deployment contexts — as a
+standalone web app and as a widget embedded in Element Web, Element X iOS, and
+Element X Android. It is also the primary R&D foundation for MatrixRTC, which means
+its architecture, maintainability, and flexibility are held to a high standard.
+
+We welcome contributions from the community. This document explains how to
+contribute effectively so that both you and the maintainers get the best outcome.
+
+## Issue First Policy
+
+> [!IMPORTANT]
+> Before writing a single line of code for a new feature or UI change, you **must**
+> open an issue and have the approach agreed with the maintainers.
+>
+> **We will not review or merge feature or UI pull requests that arrive without a
+> corresponding, pre-approved issue.**
+
+This is not gatekeeping — it's how we prevent wasted effort on both sides. Element
+Call must work correctly across multiple deployment contexts and meet specific product
+and design requirements. It is also a fast-moving codebase that underpins ongoing
+MatrixRTC development. A PR that looks reasonable in isolation can easily conflict
+with in-progress work, planned architecture changes, or design decisions that haven't
+been publicly documented yet.
+
+The issue is where we resolve all of that **before** anyone writes code.
+
+**Bug fixes** are no exception — most confirmed bugs should already have an issue anyways, existing issues that are marked as bugs have an implicit maintainer approval. If the solution for the bug is controversial it is highly recommended to discuss the approach in the issue before opening a PR.
+
+## Contribution Workflow
+
+1. **Open an issue** using the [Enhancement request](https://github.com/element-hq/element-call/issues/new?template=enhancement.yml) template.
+2. **Wait for feedback.** A maintainer will comment on the issue **within two weeks**. The use case and approach will get dicussed.
+ This may involve questions, suggestions, or a request to adjust scope.
+ This also allows to bring design and product into the loop before code gets created.
+3. **Get a green light.** Wait for explicit approval from a maintainer before starting
+ implementation.
+4. **Implement.** Write the code against the agreed approach.
+5. **Open a PR.** Link to the issue in your PR description and satisfy the checklist
+ in the PR template.
+
+## Code Quality
+
+Element Call moves fast and the codebase must stay clean and maintainable.
+
+- **Take responsibility for AI-generated code.** AI tools can be a useful aid, but we expect all the generated code to be understood and reasoned about by the contributor. Questions by the maintainers should be answered without just forwarding them to AI. The maintainers also have access to AI tools. If your contribution is just transporting messages between LLM <-> maintaines all our time is better used if the maintainers decide to interact with AI for this specific problem by themselves.
+- **Think across deployment contexts.** Changes must work correctly in both standalone
+ and widget modes. Consider how your change interacts with Element Web, Element X
+ iOS, and Element X Android.
+- **Write tests.** New functionality should be covered by tests. Where it is feasible,
+ existing uncovered code touched by your PR should also gain tests.
+
+## Contributor License Agreement
+
+All contributors must sign the
+[Element Contributor License Agreement](https://cla-assistant.io/element-hq/element-call)
+before their contribution can be merged. The CLA assistant bot will prompt you
+automatically when you open a PR.
+
+## Getting Help
+
+The best place to ask questions about Element Call development is the MatrixRTC room:
+
+**[#matrixRtc:matrix.org](https://matrix.to/#/#matrixrtc:matrix.org)**
diff --git a/Dockerfile b/Dockerfile
index c919d0c94..bf34c6c3c 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -6,7 +6,7 @@ COPY ./dist /dist
WORKDIR /dist/assets
RUN gzip -k ../index.html *.js *.map *.css *.wasm *-app-*.json
-FROM nginxinc/nginx-unprivileged:alpine
+FROM nginxinc/nginx-unprivileged:alpine-slim
COPY --from=builder ./dist /app
diff --git a/README.md b/README.md
index 31684a211..546e491a1 100644
--- a/README.md
+++ b/README.md
@@ -3,6 +3,7 @@
[](https://matrix.to/#/#webrtc:matrix.org)
[](https://localazy.com/p/element-call)
[](LICENSE-AGPL-3.0)
+[](https://app.codecov.io/gh/element-hq/element-call)
[🎬 Live Demo 🎬](https://call.element.io)
@@ -45,30 +46,35 @@ organize the flow of the meeting.
✅ **Emoji Reactions** – Users can react with emojis 👍️ 🎉 👏 🤘, adding
engagement and interactivity to the conversation.
-## 🚀 Deployment Options
+## 🚀 Deployment & Packaging Options
-Element Call can be packaged in two ways:
+Element Call is developed using the
+[Matrix js-sdk](https://github.com/matrix-org/matrix-js-sdk) with Matroska mode.
+This allows the app to run either as a Standalone App directly connected to a
+homeserver with login interfaces or it can be used as a widget within a Matrix
+client.
-**Full Package** – Supports both **Standalone** and **Widget** mode. Hosted as
-a static web page and accessed via a URL when used as a widget.
+### 🖥️ Standalone Mode
-**Embedded Package** – Designed for **Widget mode** only. Bundled with a
-messenger app for seamless integration. This is the recommended method for
-embedding Element Call into a messenger app.
+
+
+
-See the [here](./docs/embedded-standalone.md) for more information on the packages.
-
-### Standalone mode
-
-
-
-In Standalone mode Element Call operates as an independent, full-featured video
-conferencing web application, allowing users to join or host calls without
+In Standalone mode, Element Call operates as an independent, full-featured video
+conferencing web application, enabling users to join or host calls without
requiring a separate Matrix client.
-### Widget mode embedded in Messenger Apps
+### 📲 In-App Calling (Widget Mode in Messenger Apps)
-
+When used as a widget 🧩, Element Call is solely responsible for the core calling
+functionality (MatrixRTC). Authentication, event handling, and room state
+updates (via the Client-Server API) are handled by the hosting client.
+Communication between Element Call and the client is managed through the widget
+API.
+
+
+
+
Element Call can be embedded as a widget inside apps like
[**Element Web**](https://github.com/element-hq/element-web) or **Element X
@@ -80,24 +86,50 @@ and voice calls within Matrix rooms.
> [!IMPORTANT]
> Embedded packaging is recommended for Element Call in widget mode!
+### 📦 Element Call Packaging
+
+Element Call offers two packaging options: one for standalone or widget
+deployment, and another for seamless widget-based integration into messenger
+apps. Below is an overview of each option.
+
+**Full Package** – Supports both **Standalone** and **Widget** mode. It is
+hosted as a static web page and can be accessed via a URL when used as a widget.
+
+
+
+
+
+**Embedded Package** – Designed specifically for **Widget mode** only. It is
+bundled with a messenger app for seamless integration and this is the
+recommended method for embedding Element Call.
+
+
+
+
+
+For more details on the packages, see the
+[Embedded vs. Standalone Guide](./docs/embedded_standalone.md).
+
## 🛠️ Self-Hosting
For operating and deploying Element Call on your own server, refer to the
-[**Self-Hosting Guide**](./docs/self-hosting.md).
+[**Self-Hosting Guide**](./docs/self_hosting.md).
## 🧭 MatrixRTC Backend Discovery and Selection
For proper Element Call operation each site deployment needs a MatrixRTC backend
-setup as outlined in the [Self-Hosting](#self-hosting). A typical federated site
-deployment for three different sites A, B and C is depicted below.
+setup as outlined in the [Self-Hosting Guide](./docs/self_hosting.md). A typical
+federated site deployment for three different sites A, B and C is depicted below.
-
+
+
+
### Backend Discovery
-MatrixRTC backend (according to
-[MSC4143](https://github.com/matrix-org/matrix-spec-proposals/pull/4143))
-is announced by the Matrix site's `.well-known/matrix/client` file and discovered
+The MatrixRTC backend (according to
+[MSC4143](https://github.com/matrix-org/matrix-spec-proposals/pull/4143)) is
+announced by the Matrix site's `.well-known/matrix/client` file and discovered
via the `org.matrix.msc4143.rtc_foci` key, e.g.:
```json
@@ -112,26 +144,29 @@ via the `org.matrix.msc4143.rtc_foci` key, e.g.:
where the format for MatrixRTC using LiveKit backend is defined in
[MSC4195](https://github.com/hughns/matrix-spec-proposals/blob/hughns/matrixrtc-livekit/proposals/4195-matrixrtc-livekit.md).
In the example above Matrix clients do discover a focus of type `livekit` which
-points them to a Matrix LiveKit JWT Auth Service via `livekit_service_url`.
+points them to a [MatrixRTC Authorization Service](https://github.com/element-hq/lk-jwt-service)
+via `livekit_service_url`.
### Backend Selection
- Each call participant proposes their discovered MatrixRTC backend from
`org.matrix.msc4143.rtc_foci` in their `org.matrix.msc3401.call.member` state event.
-- For **LiveKit** MatrixRTC backend
+- For the **LiveKit** MatrixRTC backend
([MSC4195](https://github.com/hughns/matrix-spec-proposals/blob/hughns/matrixrtc-livekit/proposals/4195-matrixrtc-livekit.md)),
- the **first participant who joined the call** defines via the `foci_preferred`
- key in their `org.matrix.msc3401.call.member` which actual MatrixRTC backend
- will be used for this call.
-- During the actual call join flow, the **LiveKit JWT Auth Service** provides
- the client with the **LiveKit SFU WebSocket URL** and an **access JWT token**
- in order to exchange media via WebRTC.
+ the **first participant who joined the call** defines which backend will be used for this call via
+ the `foci_preferred` key in their `org.matrix.msc3401.call.member` state event.
+- During the actual call join flow, the **[MatrixRTC Authorization Service](https://github.com/element-hq/lk-jwt-service)**
+ provides the client with the **LiveKit SFU WebSocket URL** and an
+ **access JWT token** in order to exchange media via WebRTC.
The example below illustrates how backend selection works across **Matrix
federation**, using the setup from sites A, B, and C. It demonstrates backend
selection for **Matrix rooms 123 and 456**, which include users from different
-homeservers.
-
+homeservers.
+
+
+
+
## 🌍 Translation
@@ -142,6 +177,13 @@ discuss and coordinate translation efforts.
## 🛠️ Development
+### Dependencies
+
+- Node.js (e.g. via [nvm](https://github.com/nvm-sh/nvm))
+- [Corepack](https://github.com/nodejs/corepack) (not bundled with Node.js anymore starting from 25.0.0)
+- Docker client and runtime + Docker Compose (for the backend)
+ - On macOS you can install everything with `brew install colima docker docker-compose`
+
### Frontend
To get started clone and set up this project:
@@ -150,7 +192,7 @@ To get started clone and set up this project:
git clone https://github.com/element-hq/element-call.git
cd element-call
corepack enable
-yarn
+pnpm install
```
To use it, create a local config by, e.g.,
@@ -158,64 +200,88 @@ To use it, create a local config by, e.g.,
The `config.devenv.json` config should work with the backend development
environment as outlined in the next section out of box.
-> [!NOTE]
-> Be aware, that this `config.devenv.json` is exposing a deprecated fallback
-> LiveKit config key. If the homeserver advertises SFU backend via
-> `.well-known/matrix/client` this has precedence.
-
You're now ready to launch the development server:
```sh
-yarn dev
+pnpm dev
```
See also:
-- [Developing with linked packages](./linking.md)
+- [Developing with linked packages](./docs/linking.md)
### Backend
-A docker compose file `dev-backend-docker-compose.yml` is provided to start the
-whole stack of components which is required for a local development environment:
+A docker compose file `docker-compose-dev.yml` is provided to start the
+whole stack of components which is required for a local development environment
+including federation:
-- Minimum Synapse Setup (servername: `synapse.localhost`)
-- LiveKit JWT Service (Note requires Federation API and hence a TLS reverse proxy)
-- Minimum TLS reverse proxy (servername: `synapse.localhost`) Note certificates
- are valid for at least 10 years from now
-- Minimum LiveKit SFU Setup using dev defaults for config
-- Redis db for completeness
+- Minimum Synapse Setup (servernames: `synapse.m.localhost`, `synapse.othersite.m.localhost`)
+- MatrixRTC Authorization Service (Note: requires Federation API and hence a TLS reverse proxy)
+- Minimum LiveKit SFU setup using dev defaults for config
+- Minimum `localhost` Certificate Authority (CA) for Transport Layer Security (TLS)
+ - Hostnames: `m.localhost`, `*.m.localhost`, `*.othersite.m.localhost`
+ - Add [./backend/dev_tls_local-ca.crt](./backend/dev_tls_local-ca.crt) to your web browser's trusted
+ certificates
+- Minimum TLS reverse proxy for
+ - Synapse homeserver: `synapse.m.localhost` and `synapse.othersite.m.localhost`
+ - MatrixRTC backend: `matrix-rtc.m.localhost` and `matrix-rtc.othersite.m.localhost`
+ - Local Element Call development `call.m.localhost` via `pnpm dev --host `
+ - Element Web `app.m.localhost` and `app.othersite.m.localhost`
+ - Note certificates will expire on Thr, 20 September 2035 14:27:35 CEST
These use a test 'secret' published in this repository, so this must be used
only for local development and **_never be exposed to the public Internet._**
-Run backend components:
+Make sure your Docker runtime is running (e.g. via `colima start`) and then start
+the backend components:
```sh
-yarn backend
-# or for podman-compose
-# podman-compose -f dev-backend-docker-compose.yml up
+pnpm backend
+# or for podman-compose:
+# podman-compose -f docker-compose-dev.yml up
+```
+
+> [!NOTE]
+> To ensure your local development frontend functions properly, you’ll need to
+> add certificate exceptions in your browser for `https://localhost:3000`,
+> `https://matrix-rtc.m.localhost/livekit/jwt/healthz` and
+> `https://synapse.m.localhost/.well-known/matrix/client`. This can be either
+> done by adding the minimum localhost CA
+> ([./backend/dev_tls_local-ca.crt](./backend/dev_tls_local-ca.crt)) to your web
+> browser's trusted certificates or by simply copying and pasting each URL into
+> your browser’s address bar and follow the prompts to add the exception.
+
+### Updating snapshots
+
+To update snapshots used in tests, use Vitest's `-u` flag, e.g.:
+
+```sh
+pnpm test DeveloperSettingsTab -u
```
### Playwright tests
-Our Playwright tests run automatically as part of our CI along with our other tests,
-on every pull request.
+Our Playwright tests run automatically as part of our CI along with our other
+tests, on every pull request.
-You may need to follow instructions to set up your development environment for running
-Playwright by following and
+You may need to follow instructions to set up your development environment for
+running Playwright by following
+ and
.
-However the Playwright tests are run, an element-call instance must be running on
-https://localhost:3000 (this is configured in `playwright.config.ts`) - this is what will
-be tested.
+However the Playwright tests are run, an element-call instance must be running
+on https://localhost:3000 (this is configured in `playwright.config.ts`) - this
+is what will be tested.
The local backend environment should be running for the test to work:
-`yarn backend`
+`pnpm backend`
-There are a few different ways to run the tests yourself. The simplest is to run:
+There are a few different ways to run the tests yourself. The simplest is to
+run:
```shell
-yarn run test:playwright
+pnpm run test:playwright
```
This will run the Playwright tests once, non-interactively.
@@ -223,7 +289,7 @@ This will run the Playwright tests once, non-interactively.
There is a more user-friendly way to run the tests in interactive mode:
```shell
-yarn run test:playwright:open
+pnpm run test:playwright:open
```
The easiest way to develop new test is to use the codegen feature of Playwright:
@@ -237,8 +303,8 @@ to test visibility, text content and clicking.
##### Investigate a failed test from the CI
-In the failed action page, click on the failed job, then scroll down to the `upload-artifact` step.
-You will find a link to download the zip report, as per:
+In the failed action page, click on the failed job, then scroll down to the
+`upload-artifact` step. You will find a link to download the zip report, as per:
```
Artifact playwright-report has been successfully uploaded! Final size is 1360358 bytes. Artifact ID is 2746265841
@@ -252,7 +318,8 @@ npx playwright show-report ~/Downloads/playwright-report/
```
Under the failed test there is a small icon looking like "3 columns" (next to
-the test name file name), click on it to see the live screenshots/console output.
+the test name file name), click on it to see the live screenshots/console
+output.
### Test Coverage
@@ -264,7 +331,7 @@ To add a new translation key you can do these steps:
1. Add the new key entry to the code where the new key is used:
`t("some_new_key")`
-1. Run `yarn i18n` to extract the new key and update the translation files. This
+1. Run `pnpm i18n` to extract the new key and update the translation files. This
will add a skeleton entry to the `locales/en/app.json` file:
```jsonc
@@ -292,6 +359,16 @@ Usage and other technical details about the project can be found here:
[**Docs**](./docs/README.md)
+## GitHub Labels
+
+GitHub labels in this repository are maintained in the [`labels.yml`](.github/labels.yml) file and
+automatically synced to GitHub using the [`sync-labels` workflow](.github/workflows/sync-labels.yml).
+We do this so that we can reuse the labels between repositories.
+
+> [!WARNING]
+> Do not manually edit labels in the GitHub UI. Any manual changes will be overridden by the
+> workflow on its next invocation.
+
## 📝 Copyright & License
Copyright 2021-2025 New Vector Ltd
diff --git a/WIDGET_TEST.md b/WIDGET_TEST.md
index 53e26a29d..fbad026a4 100644
--- a/WIDGET_TEST.md
+++ b/WIDGET_TEST.md
@@ -1,6 +1,6 @@
# Testing Element-Call in widget mode
-When running `yarn backend` the latest element-web develop will be deployed and served on `http://localhost:8081`.
+When running `pnpm backend` the latest element-web develop will be deployed and served on `http://localhost:8081`.
In a development environment, you might prefer to just use the `element-web` repo directly, but this setup is useful for CI/CD testing.
## Setup
@@ -18,7 +18,7 @@ that uses
It is part of the existing backend setup. To start the backend, run:
```sh
-yarn backend
+pnpm backend
```
Then open `http://localhost:8081` in your browser.
diff --git a/babel.config.cjs b/babel.config.cjs
deleted file mode 100644
index 1a472c427..000000000
--- a/babel.config.cjs
+++ /dev/null
@@ -1,20 +0,0 @@
-module.exports = {
- presets: [
- [
- "@babel/preset-env",
- {
- targets: {
- node: "current",
- },
- },
- ],
- [
- "@babel/preset-react",
- {
- runtime: "automatic",
- },
- ],
- "@babel/preset-typescript",
- ],
- plugins: ["babel-plugin-transform-vite-meta-env"],
-};
diff --git a/backend/dev_homeserver-othersite.yaml b/backend/dev_homeserver-othersite.yaml
new file mode 100644
index 000000000..7eb8f294a
--- /dev/null
+++ b/backend/dev_homeserver-othersite.yaml
@@ -0,0 +1,69 @@
+server_name: "synapse.othersite.m.localhost"
+public_baseurl: https://synapse.othersite.m.localhost/
+
+pid_file: /data/homeserver.pid
+
+listeners:
+ - port: 18008
+ tls: false
+ type: http
+ x_forwarded: true
+ resources:
+ - names: [client, federation, openid]
+ compress: false
+
+database:
+ name: sqlite3
+ args:
+ database: /data/homeserver.db
+
+media_store_path: /data/media_store
+signing_key_path: "/data/SERVERNAME.signing.key"
+
+# Due to custom TLS certificate with domains
+# - m.localhost, localhost
+# - *.m.localhost
+# - *.othersite.m.localhost
+# we disable certificate verification to allow for federation
+# WARNING: DO NOT USE IN PRODUCTION!!!
+federation_verify_certificates: false
+ip_range_blacklist: []
+trusted_key_servers:
+ - server_name: "synapse.m.localhost"
+ accept_keys_insecurely: true
+
+experimental_features:
+ # MSC3266: Room summary API. Used for knocking over federation
+ msc3266_enabled: true
+ # MSC4222 needed for syncv2 state_after. This allow clients to
+ # correctly track the state of the room.
+ msc4222_enabled: true
+ # sticky events for MatrixRTC user state
+ msc4354_enabled: true
+
+# The maximum allowed duration by which sent events can be delayed, as
+# per MSC4140. Must be a positive value if set. Defaults to no
+# duration (null), which disallows sending delayed events.
+max_event_delay_duration: 24h
+
+# Required for Element Call in Single Page Mode due to on-the-fly user registration
+enable_registration: true
+enable_registration_without_verification: true
+
+# Shared secret for admin user registration via API (for testing only!)
+registration_shared_secret: "test_shared_secret_for_local_dev_only"
+
+report_stats: false
+serve_server_wellknown: true
+
+# Ratelimiting settings for client actions (registration, login, messaging).
+#
+# Each ratelimiting configuration is made of two parameters:
+# - per_second: number of requests a client can send per second.
+# - burst_count: number of requests a client can send before being throttled.
+
+rc_message:
+ # This needs to match at least the heart-beat frequency plus a bit of headroom
+ # Currently the heart-beat is every 5 seconds which translates into a rate of 0.2s
+ per_second: 0.5
+ burst_count: 30
diff --git a/backend/dev_homeserver.yaml b/backend/dev_homeserver.yaml
index 5697c32e2..0aea2ece2 100644
--- a/backend/dev_homeserver.yaml
+++ b/backend/dev_homeserver.yaml
@@ -1,5 +1,5 @@
-server_name: "synapse.localhost"
-public_baseurl: http://synapse.localhost:8008/
+server_name: "synapse.m.localhost"
+public_baseurl: https://synapse.m.localhost/
pid_file: /data/homeserver.pid
@@ -19,8 +19,18 @@ database:
media_store_path: /data/media_store
signing_key_path: "/data/SERVERNAME.signing.key"
+
+# Due to custom TLS certificate with domains
+# - m.localhost, localhost
+# - *.m.localhost
+# - *.othersite.m.localhost
+# we disable certificate verification to allow for federation.
+# WARNING: DO NOT USE IN PRODUCTION!!!
+federation_verify_certificates: false
+ip_range_blacklist: []
trusted_key_servers:
- - server_name: "matrix.org"
+ - server_name: "synapse.othersite.m.localhost"
+ accept_keys_insecurely: true
experimental_features:
# MSC3266: Room summary API. Used for knocking over federation
@@ -28,12 +38,24 @@ experimental_features:
# MSC4222 needed for syncv2 state_after. This allow clients to
# correctly track the state of the room.
msc4222_enabled: true
+ # sticky events for MatrixRTC user state
+ msc4354_enabled: true
# The maximum allowed duration by which sent events can be delayed, as
# per MSC4140. Must be a positive value if set. Defaults to no
# duration (null), which disallows sending delayed events.
max_event_delay_duration: 24h
+# Required for Element Call in Single Page Mode due to on-the-fly user registration
+enable_registration: true
+enable_registration_without_verification: true
+
+# Shared secret for admin user registration via API (for testing only!)
+registration_shared_secret: "test_shared_secret_for_local_dev_only"
+
+report_stats: false
+serve_server_wellknown: true
+
# Ratelimiting settings for client actions (registration, login, messaging).
#
# Each ratelimiting configuration is made of two parameters:
@@ -45,10 +67,3 @@ rc_message:
# Currently the heart-beat is every 5 seconds which translates into a rate of 0.2s
per_second: 0.5
burst_count: 30
-
-# Required for Element Call in Single Page Mode due to on-the-fly user registration
-enable_registration: true
-enable_registration_without_verification: true
-
-report_stats: false
-serve_server_wellknown: true
diff --git a/backend/dev_livekit-othersite.yaml b/backend/dev_livekit-othersite.yaml
new file mode 100644
index 000000000..53fc9ce94
--- /dev/null
+++ b/backend/dev_livekit-othersite.yaml
@@ -0,0 +1,24 @@
+port: 17880
+bind_addresses:
+ - "0.0.0.0"
+rtc:
+ tcp_port: 17881
+ port_range_start: 50300
+ port_range_end: 50400
+ use_external_ip: false
+turn:
+ enabled: false
+ domain: localhost
+ cert_file: ""
+ key_file: ""
+ tls_port: 5349
+ udp_port: 443
+ external_tls: true
+keys:
+ devkey: secret
+room:
+ auto_create: false
+webhook:
+ api_key: devkey
+ urls:
+ - https://matrix-rtc.othersite.m.localhost/livekit/jwt/sfu_webhook
diff --git a/backend/dev_livekit.yaml b/backend/dev_livekit.yaml
index 0e0c5c7bf..6cef4241a 100644
--- a/backend/dev_livekit.yaml
+++ b/backend/dev_livekit.yaml
@@ -6,11 +6,6 @@ rtc:
port_range_start: 50100
port_range_end: 50200
use_external_ip: false
-#redis:
-# address: redis:6379
-# username: ""
-# password: ""
-# db: 0
turn:
enabled: false
domain: localhost
@@ -21,3 +16,9 @@ turn:
external_tls: true
keys:
devkey: secret
+room:
+ auto_create: false
+webhook:
+ api_key: devkey
+ urls:
+ - https://matrix-rtc.m.localhost/livekit/jwt/sfu_webhook
diff --git a/backend/dev_nginx.conf b/backend/dev_nginx.conf
new file mode 100644
index 000000000..6ec0d7010
--- /dev/null
+++ b/backend/dev_nginx.conf
@@ -0,0 +1,301 @@
+# Synapse reverse proxy including .well-known/matrix/client
+# domain synapse.m.localhost
+server {
+ listen 80;
+ listen [::]:80;
+ listen 443 ssl;
+ listen 8448 ssl;
+ listen [::]:443 ssl;
+ listen [::]:8448 ssl;
+ server_name synapse.m.localhost;
+ ssl_certificate /root/ssl/cert.pem;
+ ssl_certificate_key /root/ssl/key.pem;
+
+ # well-known config adding rtc_foci backend
+ # Note well-known is currently not effective due to:
+ # https://spec.matrix.org/v1.12/client-server-api/#well-known-uri the spec
+ # says it must be at https://$server_name/... (implied port 443) Hence, we
+ # currently rely for local development environment on deprecated config.json
+ # setting for livekit_service_url
+ location /.well-known/matrix/client {
+ add_header Access-Control-Allow-Origin *;
+ return 200 '{"m.homeserver": {"base_url": "https://synapse.m.localhost"}, "org.matrix.msc4143.rtc_foci": [{"type": "livekit", "livekit_service_url": "https://matrix-rtc.m.localhost/livekit/jwt"}]}';
+ default_type application/json;
+ }
+
+ # Reverse proxy for Matrix Synapse Homeserver
+ # This is also required for development environment.
+ # Reason: the lk-jwt-service uses the federation API for the openid token
+ # verification, which requires TLS
+ location ~ ^(/_matrix|/_synapse/client) {
+ proxy_pass "http://homeserver:8008";
+ proxy_http_version 1.1;
+ proxy_set_header X-Forwarded-For $remote_addr;
+ proxy_set_header X-Forwarded-Proto $scheme;
+ proxy_set_header Host $host;
+ }
+ location ~ ^(/_matrix|/_synapse/admin) {
+ proxy_pass "http://homeserver:8008";
+ proxy_http_version 1.1;
+ proxy_set_header X-Forwarded-For $remote_addr;
+ proxy_set_header X-Forwarded-Proto $scheme;
+ proxy_set_header Host $host;
+ }
+
+}
+
+# Synapse reverse proxy including .well-known/matrix/client
+# domain synapse.othersite.m.localhost
+server {
+ listen 80;
+ listen [::]:80;
+ listen 443 ssl;
+ listen 8448 ssl;
+ listen [::]:443 ssl;
+ listen [::]:8448 ssl;
+ server_name synapse.othersite.m.localhost;
+ ssl_certificate /root/ssl/cert.pem;
+ ssl_certificate_key /root/ssl/key.pem;
+
+ # well-known config adding rtc_foci backend
+ # Note well-known is currently not effective due to:
+ # https://spec.matrix.org/v1.12/client-server-api/#well-known-uri the spec
+ # says it must be at https://$server_name/... (implied port 443) Hence, we
+ # currently rely for local development environment on deprecated config.json
+ # setting for livekit_service_url
+ location /.well-known/matrix/client {
+ add_header Access-Control-Allow-Origin *;
+ return 200 '{"m.homeserver": {"base_url": "https://synapse.othersite.m.localhost"}, "org.matrix.msc4143.rtc_foci": [{"type": "livekit", "livekit_service_url": "https://matrix-rtc.othersite.m.localhost/livekit/jwt"}]}';
+ default_type application/json;
+ }
+
+ # Reverse proxy for Matrix Synapse Homeserver
+ # This is also required for development environment.
+ # Reason: the lk-jwt-service uses the federation API for the openid token
+ # verification, which requires TLS
+ location ~ ^(/_matrix|/_synapse/client) {
+ proxy_pass "http://homeserver-1:18008";
+ proxy_http_version 1.1;
+ proxy_set_header X-Forwarded-For $remote_addr;
+ proxy_set_header X-Forwarded-Proto $scheme;
+ proxy_set_header Host $host;
+ }
+
+ location ~ ^(/_matrix|/_synapse/admin) {
+ proxy_pass "http://homeserver-1:18008";
+ proxy_http_version 1.1;
+ proxy_set_header X-Forwarded-For $remote_addr;
+ proxy_set_header X-Forwarded-Proto $scheme;
+ proxy_set_header Host $host;
+ }
+
+}
+
+# MatrixRTC reverse proxy
+# domain matrix-rtc.m.localhost
+# - MatrixRTC Authorization Service
+# - LiveKit SFU websocket signaling connection
+upstream jwt-auth-services {
+ server auth-server:6080;
+ server host.docker.internal:6080;
+}
+
+server {
+ listen 443 ssl;
+ listen [::]:443 ssl;
+ server_name matrix-rtc.m.localhost;
+ ssl_certificate /root/ssl/cert.pem;
+ ssl_certificate_key /root/ssl/key.pem;
+
+ http2 on;
+
+
+ location ^~ /livekit/jwt/ {
+
+ proxy_set_header Host $host;
+ proxy_set_header X-Real-IP $remote_addr;
+ proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
+ proxy_set_header X-Forwarded-Proto $scheme;
+
+ # JWT Service running at port 6080
+ proxy_pass http://jwt-auth-services/;
+
+ }
+
+ location ^~ /livekit/sfu/ {
+ proxy_set_header Host $host;
+ proxy_set_header X-Real-IP $remote_addr;
+ proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
+ proxy_set_header X-Forwarded-Proto $scheme;
+
+ proxy_send_timeout 120;
+ proxy_read_timeout 120;
+ proxy_buffering off;
+
+ proxy_set_header Accept-Encoding gzip;
+ proxy_set_header Upgrade $http_upgrade;
+ proxy_set_header Connection "upgrade";
+
+ # LiveKit SFU websocket connection running at port 7880
+ proxy_pass http://livekit-sfu:7880/;
+ }
+
+}
+
+# MatrixRTC reverse proxy
+# domain matrix-rtc.othersite.m.localhost
+# - MatrixRTC Authorization Service
+# - LiveKit SFU websocket signaling connection
+server {
+ listen 443 ssl;
+ listen [::]:443 ssl;
+ server_name matrix-rtc.othersite.m.localhost;
+ ssl_certificate /root/ssl/cert.pem;
+ ssl_certificate_key /root/ssl/key.pem;
+
+ http2 on;
+
+
+ location ^~ /livekit/jwt/ {
+
+ proxy_set_header Host $host;
+ proxy_set_header X-Real-IP $remote_addr;
+ proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
+ proxy_set_header X-Forwarded-Proto $scheme;
+
+ # JWT Service running at port 16080
+ proxy_pass http://auth-service-1:16080/;
+
+ }
+
+ location ^~ /livekit/sfu/ {
+ proxy_set_header Host $host;
+ proxy_set_header X-Real-IP $remote_addr;
+ proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
+ proxy_set_header X-Forwarded-Proto $scheme;
+
+ proxy_send_timeout 120;
+ proxy_read_timeout 120;
+ proxy_buffering off;
+
+ proxy_set_header Accept-Encoding gzip;
+ proxy_set_header Upgrade $http_upgrade;
+ proxy_set_header Connection "upgrade";
+
+ # LiveKit SFU websocket connection running at port 17880
+ proxy_pass http://livekit-sfu-1:17880/;
+ }
+
+}
+
+# Convenience reverse proxy for the call.m.localhost domain to element call
+# running on the host either via
+# - pnpm dev --host or
+# - falling back to http (the element call docker container)
+server {
+ listen 80;
+ listen [::]:80;
+ server_name call.m.localhost;
+
+ return 301 https://$host$request_uri;
+}
+
+server {
+ listen 443 ssl;
+ listen [::]:443 ssl;
+ server_name call.m.localhost;
+ ssl_certificate /root/ssl/cert.pem;
+ ssl_certificate_key /root/ssl/key.pem;
+
+ # 1. Attempt HTTPS first
+ location ^~ / {
+
+ proxy_set_header Host $host;
+ proxy_set_header X-Real-IP $remote_addr;
+ proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
+ proxy_set_header X-Forwarded-Proto $scheme;
+
+ proxy_pass https://host.docker.internal:3000;
+ proxy_ssl_verify off;
+
+ # 2. Redirect specific errors (e.g., 502 Bad Gateway or 504 Timeout)
+ # to the named fallback location
+ error_page 502 503 504 = @http_fallback;
+
+ }
+
+ # 3. Fallback location using HTTP
+ location @http_fallback {
+
+ proxy_set_header Host $host;
+ proxy_set_header X-Real-IP $remote_addr;
+ proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
+ proxy_set_header X-Forwarded-Proto $scheme;
+
+ proxy_pass http://host.docker.internal:8080;
+
+ }
+
+}
+
+# Convenience reverse proxy app.m.localhost for element web
+server {
+ listen 80;
+ listen [::]:80;
+ server_name app.m.localhost;
+
+ return 301 https://$host$request_uri;
+}
+
+server {
+ listen 443 ssl;
+ listen [::]:443 ssl;
+ server_name app.m.localhost;
+ ssl_certificate /root/ssl/cert.pem;
+ ssl_certificate_key /root/ssl/key.pem;
+
+
+ location ^~ / {
+
+ proxy_set_header Host $host;
+ proxy_set_header X-Real-IP $remote_addr;
+ proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
+ proxy_set_header X-Forwarded-Proto $scheme;
+
+ proxy_pass http://element-web:8081;
+ proxy_ssl_verify off;
+
+ }
+
+}
+
+# Convenience reverse proxy app.othersite.m.localhost for element web
+server {
+ listen 80;
+ listen [::]:80;
+ server_name app.othersite.m.localhost;
+
+ return 301 https://$host$request_uri;
+}
+
+server {
+ listen 443 ssl;
+ listen [::]:443 ssl;
+ server_name app.othersite.m.localhost;
+ ssl_certificate /root/ssl/cert.pem;
+ ssl_certificate_key /root/ssl/key.pem;
+
+
+ location ^~ / {
+
+ proxy_set_header Host $host;
+ proxy_set_header X-Real-IP $remote_addr;
+ proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
+ proxy_set_header X-Forwarded-Proto $scheme;
+
+ proxy_pass http://element-web-1:18081;
+ proxy_ssl_verify off;
+
+ }
+
+}
diff --git a/backend/dev_tls_local-ca.crt b/backend/dev_tls_local-ca.crt
new file mode 100644
index 000000000..859381b17
--- /dev/null
+++ b/backend/dev_tls_local-ca.crt
@@ -0,0 +1,19 @@
+-----BEGIN CERTIFICATE-----
+MIIDGjCCAgKgAwIBAgIUOlA2wgQUGZkKqNDvvifFWEsJfvYwDQYJKoZIhvcNAQEL
+BQAwHjEcMBoGA1UEAwwTRWxlbWVudCBDYWxsIERldiBDQTAeFw0yNjA1MTgwOTM0
+MzFaFw0yODA3MjYwOTM0MzFaMB4xHDAaBgNVBAMME0VsZW1lbnQgQ2FsbCBEZXYg
+Q0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCcImv3pStfIUo7PbOO
+XRVUXuDlApBOrg2dCnvZQ1Jfaf4MftGHj/pURkF4eoBuyH4k4+NLzWD0VcU1cM74
+RnxowJt4AceCGe5RK/rqal5fapXc2vYMM8P6xaQR86gkxohpufsLgTnSweh74yqN
+B5WHUnCX00/X0bh1ho2BMUvGM9+dI4MdgKdaQDgWK4zg9hwp2Z6Yq7SkJ/D8+sGW
+WGpn3osDakL8HTBqop+YVJgF40db50yFurfcfQ0gjVtT4JW8ejO9j8PS/S2oQ/s5
+mA1B470XhLtT5qTjGm2bp3WpYkTi5widps8PDzBp5eNr0HrvJqcw7BGpbvBlLa+3
+7dhLAgMBAAGjUDBOMB0GA1UdDgQWBBRDfyRM4yKUqW6vu/2KUSXGb8vswDAfBgNV
+HSMEGDAWgBRDfyRM4yKUqW6vu/2KUSXGb8vswDAMBgNVHRMEBTADAQH/MA0GCSqG
+SIb3DQEBCwUAA4IBAQBoAhD4W4Yi/VJ2pTKrzhstn1UF1rgQnRddnn97v5BaEV/X
+uuBXbSO+/ewjQUupRjePZFp9FFe9co1OiduKcDExlvPU1eIqkWAwDWjMDpI+Lw5q
+KI5yHzplmMrT/7jn9Tepl9atrIcfDeFkP1dGtdRPyU6ARJEEWJSKeH9ftmImAsbM
+ykXAqSyRl8+bPx1ISG4cNihOxFd38VPDHIW53umaRBgRcN4GcvloKBGrVtRFNM//
+H+md8HmNQMP+e7FamETxs28DxjsdpygxjiFNY/T2eD67dH50ZxC3qCxEG6TJsoAg
+TYJafnqEcGDfiWQyNZRBypuaRsRmmTR27hCPVgi8
+-----END CERTIFICATE-----
diff --git a/backend/dev_tls_local-ca.key b/backend/dev_tls_local-ca.key
new file mode 100644
index 000000000..abbfb9a81
--- /dev/null
+++ b/backend/dev_tls_local-ca.key
@@ -0,0 +1,28 @@
+-----BEGIN PRIVATE KEY-----
+MIIEvQIBADANBgkqhkiG9w0BAQEFAASCBKcwggSjAgEAAoIBAQCcImv3pStfIUo7
+PbOOXRVUXuDlApBOrg2dCnvZQ1Jfaf4MftGHj/pURkF4eoBuyH4k4+NLzWD0VcU1
+cM74RnxowJt4AceCGe5RK/rqal5fapXc2vYMM8P6xaQR86gkxohpufsLgTnSweh7
+4yqNB5WHUnCX00/X0bh1ho2BMUvGM9+dI4MdgKdaQDgWK4zg9hwp2Z6Yq7SkJ/D8
++sGWWGpn3osDakL8HTBqop+YVJgF40db50yFurfcfQ0gjVtT4JW8ejO9j8PS/S2o
+Q/s5mA1B470XhLtT5qTjGm2bp3WpYkTi5widps8PDzBp5eNr0HrvJqcw7BGpbvBl
+La+37dhLAgMBAAECggEAEsS4gc5jBk50I+bo3KYn2DqHgj/qpOqbTFNkS9uh3UJa
+fZoJCeiuyM6hNCBVq/uB3mFeg1Au5XAiAqiK2KFwdw8gIS7lkqgXU76brO4YZhPj
+6+aOSS03079KV7YYckNDRqJKoTlpgAI7Nhk6ljVhLiEk07tdD65wJACGpg8M8sg9
+dyAz+ANs9gs65iF5LYjH61O/AFlLqCRQh5/z0mjGX6G9uN27nxeUY4+n4QMAcd9D
+Gcygxjt+4nlQayNAlKMwVfps9bWNtI3Ye9knY4WGkrv5cJbW3bgjV6qrvQsbukbq
+xEYzcIlUiWGO9Tv7MN6rk5uQOyoKT/KUnfRmdVd3YQKBgQDMhWm6Q+WuI7Pyn57R
+tmY4rs+fSqTmv6xAOcozKJxffGaEwSUuNA15NvR/7iedcNqmH3XT9j90ZNVHe090
+ocm1HDUvzC9G5GRrdO6JTTksRaIMZEhosWxqH3DIuBJPLGbF/4obGE7//PJtmDEp
+QVL9Aa0WrcwAWhRzUdvCE+taMwKBgQDDbyZIvtlEr1w2V0bjXO536rRksBapc2ZJ
+XRKtrXivuVtiZYNDB0I7CCJ52cka61n3kyZz2mhQmLq4cAZXyKYWE2i643O+kc3S
+lpZEFSfDZ+3YlhxMxG9oEcgUSwVdbPlAhd/UR8V6n8o2Fm+gug9h6E2zY4fgHLJF
+8hOWoD4hiQKBgA7YXD1F8mT6eHRS+78zIyZYIf/o9iE9pm4fA7tE5lzT9ckLD/zT
+kGrM/2BN1BhMecJ3JCFXjXGQZB7FJ5ZKrA52VrH6ezAFIfjeyvWyYkUBZOrLWKoo
+vrrRP2mCWuneSjNzAf5HfGx+WsZztpXNBQ4SUhMEWHtqDnP0bCQhOAMbAoGAPfLv
+qcOFT3ZevoLv34ZHuQ9W20vOAyynUb4E+7SvOtSAmTIgZ5DXd6recs2MJ9JOlGG6
+oKKsyk9/cJNiD1V1AC5q1kLfH5tMKOK/AxnJnvFEvZDnq5Xg0pZAW95j9vdiEwfc
+qYeOm44nJPn7rHEOCzT93E1CdtHh2LYha2+kAjECgYEAh4qODleBi+2fnf2eq494
+/tAot3szu2+gjyCN00vGjtzoAuDKTYgo0cbU1ILk0Pgpp1NcIvdHz/wQnG9RLX7e
+Dfy1Q+UkyBK67SJUPvcYqBEaZ6ddyijJDunqh+U3nIBGP+IntKIKMIKiLF6wzTKz
+NRpK1HNmllp+O692ZtxoNDU=
+-----END PRIVATE KEY-----
diff --git a/backend/dev_tls_m.localhost.crt b/backend/dev_tls_m.localhost.crt
new file mode 100644
index 000000000..8a7d3db70
--- /dev/null
+++ b/backend/dev_tls_m.localhost.crt
@@ -0,0 +1,21 @@
+-----BEGIN CERTIFICATE-----
+MIIDijCCAnKgAwIBAgIUWkx2ad/F7QIj1JDaYfbLhiRV+EswDQYJKoZIhvcNAQEL
+BQAwHjEcMBoGA1UEAwwTRWxlbWVudCBDYWxsIERldiBDQTAeFw0yNjA1MTgwOTM0
+MzFaFw0yODA3MjYwOTM0MzFaMBgxFjAUBgNVBAMMDSoubS5sb2NhbGhvc3QwggEi
+MA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC0hora/UCYMtrLJc6BOjonPUPi
+bYpbNiZYnvnqI4doKbV0LBT2TfokT7tpgdPCtHKV0RknsVSL8vhlXpkRqIiWPml8
+sZaa0+5NDGCQxexS2WVBlsoNCmAaqi/HNSFop6xaxGpQ3bu0iV3oIkUihveXAl6H
+C0VYyGifQ8D5onzepW2ayhemu47YRNSo8wETY5vIi0i/iajTTaw6JvwS+8Kv5/QV
+5prdvcFlG/oBs12p0+KoRyxskyzcdBdyIarvfY+9nDZwym5GfN32xO/iqtDuDQzw
+Q09h2OsfHJCw70IpHcgXLlEQF2DsFbmbVpWSU6HcMm6B7Yw1YeE64W4PRJp3AgMB
+AAGjgcUwgcIwHwYDVR0jBBgwFoAUQ38kTOMilKlur7v9ilElxm/L7MAwCQYDVR0T
+BAIwADALBgNVHQ8EBAMCBaAwEwYDVR0lBAwwCgYIKwYBBQUHAwEwUwYDVR0RBEww
+SoIJbG9jYWxob3N0ggttLmxvY2FsaG9zdIINKi5tLmxvY2FsaG9zdIIXKi5vdGhl
+cnNpdGUubS5sb2NhbGhvc3SCCCoubmlwLmlvMB0GA1UdDgQWBBSd0sKIKmZzTnxT
+gNHHjsJNnFcYaTANBgkqhkiG9w0BAQsFAAOCAQEAeffRTrD9o9PVRIoul5r2chwP
+WF7JtvPdC5xWy9rlCfmIKRNzNRnpVw/mDF/jdhlWcENt3psN8Vb1NM3SECKve9KL
+8bDD2rJEoLBHIFQPS+XpEPqVGLHQcfBtGgs2XdILKvgXJyBHY/pgNZkQmXxYDVoc
+bH9PjJJ4V3t6+tiVWZ792739EU/pHaSz7tab+ycTiggs7mo18E5jpYILhWsDqIVs
+Kz3uczK2OR8537Ix64Z9kmKiklVAqE53odV7Qx2B+7DoOD/7KBN7SMy1KvR1ae6I
+p1ivtDKpBZWbb1ccFxp2cQ30qRHLJrt2YRwz268gx/A6rGXuW6UQPYf4ISNR4Q==
+-----END CERTIFICATE-----
diff --git a/backend/dev_tls_m.localhost.key b/backend/dev_tls_m.localhost.key
new file mode 100644
index 000000000..f19463a26
--- /dev/null
+++ b/backend/dev_tls_m.localhost.key
@@ -0,0 +1,28 @@
+-----BEGIN PRIVATE KEY-----
+MIIEvQIBADANBgkqhkiG9w0BAQEFAASCBKcwggSjAgEAAoIBAQC0hora/UCYMtrL
+Jc6BOjonPUPibYpbNiZYnvnqI4doKbV0LBT2TfokT7tpgdPCtHKV0RknsVSL8vhl
+XpkRqIiWPml8sZaa0+5NDGCQxexS2WVBlsoNCmAaqi/HNSFop6xaxGpQ3bu0iV3o
+IkUihveXAl6HC0VYyGifQ8D5onzepW2ayhemu47YRNSo8wETY5vIi0i/iajTTaw6
+JvwS+8Kv5/QV5prdvcFlG/oBs12p0+KoRyxskyzcdBdyIarvfY+9nDZwym5GfN32
+xO/iqtDuDQzwQ09h2OsfHJCw70IpHcgXLlEQF2DsFbmbVpWSU6HcMm6B7Yw1YeE6
+4W4PRJp3AgMBAAECggEAIgdIbk4VmnrfjjKCsg5JPvNH9AsE7PuQj9zrq+xljkdq
+aksS6ni5YZXb9F/iDE4aWU4waTB+iODUXLtPrCnyESwTk0sgYe/39/MQ0slUKivL
+b+keDgY6JlyVI/5KXWFZ1kQ27CZXxwiruGGZWZBKZF8wdVE1Ea65Neg+HHA6DHee
+Jck002gtgO/J1MMbB1MzdtGcsejYLrA+mO6YddQhA65xdQMljTEfyUwgTVv0pWde
+biyKegGK77vlsOyoCkMpVYORG5NMV1Kxs+htA79yuIW71tWHqVbcRMyoM+BaHzPh
+7uprs+8vYDFrO39LseczA8gURWwUsCgQ0yQ6Ix5W7QKBgQDnSK4AzjPpDEArdHuV
+VGKyzrfPtzH0VV/yTH9hvByNG6i/x8sE/r2KPi5nRMi4PAjjqmxyO1G5qwDOfzvK
+sBvwFrTRpmbnqGITVKPPivdoI9+RveN+FxhOXVA8NylAOv/dtSoakYwg3e507UsC
+RuFW3Re0Oc+0XFq4C8rQyLkIOwKBgQDH0T9gww+XbwIGCtiNpnEziU9FXBKSVwXf
+dCxYcTLPATq3BqHmP4OUA0v+sa3wPcnBkXF7q6eoB9+S6ZYQA/b2BXGU5/j9xYd4
+29cF4DlPkhTwF9S8b+h1zhlGIn96Lw/vZuj7Bc3wuwxvB17d8dpyo8bZynIe7BvF
+KSPJz+2O9QKBgFFyd8xS0VcFeGeVKpwozmUXhQWCBvZ7RkGGjOk3HHrYvbFjw2vr
+5YWUZjT5tRGkGqFJ98y2dQ5EWRFfHwg+wmfnJyAZUG3OD1OtX86Lqpqi321siHtz
+2JxoIgRCjKVQ4aAK11vp24YLgZjto5eWrG4xh9Jw9WMXjt73UCH8PaTXAoGBAIff
+TY1qlmuO3H1nWqHXkBpPQEwVs7s22ZN817q8HqSMXXSfWe/LOJmpND/YakJ2gX7S
+e6xwqOylje3EUHpLd98LDJUIuFM3wkr4klo4gkANQZeRXONV5WhV4PHD+5MF9XwB
+KmOnKsaLKoVFKckZ8EUMAOePtdI5ExkaRG+yqAMRAoGAJyUFK+V9ST1N/6wYgqor
+vywMSRE2cF2WvVIxdMvWffmpoj40bG6lAlaSWm29E2T8SVvAKsRid0wDgCQ4QTEn
+ft7yUDjqVALCJVCrOFHDY0BPStkm6njMWagr/0lGr9zUWqbBOKJhNfDJlykv8gaF
+8kWTgabrMCKmpTi7fBWbzZA=
+-----END PRIVATE KEY-----
diff --git a/backend/dev_tls_setup b/backend/dev_tls_setup
new file mode 100644
index 000000000..08a1949b4
--- /dev/null
+++ b/backend/dev_tls_setup
@@ -0,0 +1,40 @@
+#!/bin/bash
+
+# Step 1: Create a Root CA key and cert
+openssl genrsa -out dev_tls_local-ca.key 2048
+openssl req -x509 -new -nodes \
+ -days 800 \
+ -subj "/CN=Element Call Dev CA" \
+ -key dev_tls_local-ca.key \
+ -out dev_tls_local-ca.crt \
+ -sha256 -addext "basicConstraints=CA:TRUE"
+
+# Step 2: Create a private key and CSR for *.m.localhost
+openssl req -new -nodes -newkey rsa:2048 \
+ -keyout dev_tls_m.localhost.key \
+ -out dev_tls_m.localhost.csr \
+ -subj "/CN=*.m.localhost"
+
+# Step 3: Sign the CSR with your CA
+openssl x509 \
+ -req -in dev_tls_m.localhost.csr \
+ -CA dev_tls_local-ca.crt -CAkey dev_tls_local-ca.key \
+ -CAcreateserial \
+ -out dev_tls_m.localhost.crt \
+ -days 800 \
+ -sha256 \
+ -extfile <( cat < [!IMPORTANT]
+> Make sure your network router doesn't enforce DNS rebinding protection (which will
+> break nip.io). If it does, try allow-listing nip.io in your router's administration interface.
diff --git a/docs/controls.md b/docs/controls.md
index 02df61efd..7a2a1d96c 100644
--- a/docs/controls.md
+++ b/docs/controls.md
@@ -1,7 +1,34 @@
# Global JS controls
-A few aspects of Element Call's interface can be controlled through a global API on the `window`:
+A few aspects of Element Call's interface can be controlled through a global API on the `window`.
+
+## Picture-in-picture
- `controls.canEnterPip(): boolean` Determines whether it's possible to enter picture-in-picture mode.
- `controls.enablePip(): void` Puts the call interface into picture-in-picture mode. Throws if not in a call.
- `controls.disablePip(): void` Takes the call interface out of picture-in-picture mode, restoring it to its natural display mode. Throws if not in a call.
+- `controls.onPipMediaOrientationUpdate: ((orientation: "landscape"|"portrait") => void) | undefined` Callback called whenever the PiP media orientation changes.
+ The client should track this value to already initiate the pip in the right orientation.
+ It should update the orientation of the current Pip window when called.
+
+## Audio devices
+
+On mobile platforms (iOS, Android), web views do not reliably support selecting audio output devices such as the main speaker, earpiece, or headset. To address this limitation, the following functions allow the hosting application (e.g., Element Web, Element X) to manage audio devices via exposed JavaScript interfaces. These functions must be enabled using the URL parameter `controlledAudioDevices` to take effect.
+
+- `controls.setAvailableAudioDevices(devices: { id: string, name: string, forEarpiece?: boolean, isEarpiece?: boolean isSpeaker?: boolean, isExternalHeadset?: boolean }[]): void` Sets the list of available audio outputs. `forEarpiece` is used on iOS only.
+ It flags the device that should be used if the user selects earpiece mode. This should be the main stereo loudspeaker of the device.
+- `controls.onAudioDeviceSelect: ((id: string) => void) | undefined` Callback called whenever the user or application selects a new audio output.
+- `controls.setAudioDevice(id: string): void` Sets the selected audio device in Element Call's menu. This should be used if the OS decides to automatically switch to Bluetooth, for example.
+- `controls.setAudioEnabled(enabled: boolean)` Enables/disables all audio output from the application. Output is enabled by default.
+- `controls.onAudioPlaybackStarted: ((id: string) => void) | undefined`: This will be called the first time we start
+ playing audio in the webview. It can be helpful to do device setup on the native app when the webviews audio is ready.
+ In particular android is using it to setup the output channel so that the call volume can
+ be controlled by the hardware volume rocker.
+
+## Element Call button delegation
+
+Callbacks for buttons in EC that are handled by the native application
+
+- `showNativeAudioDevicePicker: (() => void) | undefined`. Callback called whenever the user presses the output button in the settings menu.
+ This button is only shown on iOS. (`/iPad|iPhone|iPod|Mac/.test(navigator.userAgent)`)
+- `onBackButtonPressed: (() => void) | undefined`. Callback when the webview detects a tab on the header's back button.
diff --git a/docs/element_call_standalone.drawio.png b/docs/element_call_standalone.drawio.png
index 1e105ef4d..ab541fbd6 100644
Binary files a/docs/element_call_standalone.drawio.png and b/docs/element_call_standalone.drawio.png differ
diff --git a/docs/element_call_widget.drawio.png b/docs/element_call_widget.drawio.png
index 72a4e1de3..61a36e422 100644
Binary files a/docs/element_call_widget.drawio.png and b/docs/element_call_widget.drawio.png differ
diff --git a/docs/embedded_package.drawio.png b/docs/embedded_package.drawio.png
new file mode 100644
index 000000000..3f4851519
Binary files /dev/null and b/docs/embedded_package.drawio.png differ
diff --git a/docs/embedded-standalone.md b/docs/embedded_standalone.md
similarity index 88%
rename from docs/embedded-standalone.md
rename to docs/embedded_standalone.md
index 440dfac0d..456ce120a 100644
--- a/docs/embedded-standalone.md
+++ b/docs/embedded_standalone.md
@@ -14,7 +14,7 @@ The table below provides a comparison of the two packages:
| **Release artifacts** | Docker Image, Tarball | Tarball, NPM for Web, Android AAR, SwiftPM for iOS |
| **Recommended for** | Standalone/guest access usage | Embedding within messenger apps |
| **Responsibility for regulatory compliance** | The administrator that is deploying the app is responsible for compliance with any applicable regulations (e.g. privacy) | The developer of the messenger app is responsible for compliance |
-| **Analytics consent** | Element Call will show a consent UI. | Element Call will not show a consent UI. The messenger app should only provide the embedded Element Call with the [analytics URL parameters](./url-params.md#embedded-only-parameters) if consent has been granted. |
+| **Analytics consent** | Element Call will show a consent UI. | Element Call will not show a consent UI. The messenger app should only provide the embedded Element Call with the [analytics URL parameters](./url_params.md#embedded-only-parameters) if consent has been granted. |
| **Analytics data** | Element Call will send data to the Posthog, Sentry and Open Telemetry targets specified by the administrator in the `config.json` | Element Call will send data to the Posthog and Sentry targets specified in the URL parameters by the messenger app |
### Using the embedded package within a messenger app
@@ -25,8 +25,8 @@ The basics are:
1. Add the appropriate platform dependency as given for a [release](https://github.com/element-hq/element-call/releases), or use the embedded tarball. e.g. `npm install @element-hq/element-call-embedded@0.9.0`
2. Include the assets from the platform dependency in the build process. e.g. copy the assets during a [Webpack](https://github.com/element-hq/element-web/blob/247cd8d56d832d006d7dfb919d1042529d712b59/webpack.config.js#L677-L682) build.
-3. Use the `index.html` entrypointof the imported assets when you are constructing the WebView or iframe. e.g. using a [relative path in a webapp](https://github.com/element-hq/element-web/blob/247cd8d56d832d006d7dfb919d1042529d712b59/src/models/Call.ts#L680), or on the the Android [WebViewAssetLoader](https://github.com/element-hq/element-x-android/blob/fe5aab6588ecdcf9354a3bfbd9e97c1b31175a8f/features/call/impl/src/main/kotlin/io/element/android/features/call/impl/utils/DefaultCallWidgetProvider.kt#L20)
-4. Set any of the [embedded-only URL parameters](./url-params.md#embedded-only-parameters) that you need.
+3. Use the `index.html` entrypoint of the imported assets when you are constructing the WebView or iframe. e.g. using a [relative path in a webapp](https://github.com/element-hq/element-web/blob/247cd8d56d832d006d7dfb919d1042529d712b59/src/models/Call.ts#L680), or on the the Android [WebViewAssetLoader](https://github.com/element-hq/element-x-android/blob/fe5aab6588ecdcf9354a3bfbd9e97c1b31175a8f/features/call/impl/src/main/kotlin/io/element/android/features/call/impl/utils/DefaultCallWidgetProvider.kt#L20)
+4. Set any of the [embedded-only URL parameters](./url_params.md#embedded-only-parameters) that you need.
## Widget vs standalone mode
@@ -35,5 +35,5 @@ Element Call is developed using the [js-sdk](https://github.com/matrix-org/matri
As a widget, the app only uses the core calling (MatrixRTC) parts. The rest (authentication, sending events, getting room state updates about calls) is done by the hosting client.
Element Call and the hosting client are connected via the widget API.
-Element Call detects that it is run as a widget if a widgetId is defined in the url parameters. If `widgetId` is present then Element Call will try to connect to the client via the widget postMessage API using the parameters provided in [Url Format and parameters
-](./url-params.md).
+Element Call detects that it is run as a widget if `widgetId` is defined in the url parameters. If `widgetId` is present then Element Call will try to connect to the client via the widget postMessage API using the parameters provided in [Url Format and parameters
+](./url_params.md).
diff --git a/docs/full_package.drawio.png b/docs/full_package.drawio.png
new file mode 100644
index 000000000..663300d26
Binary files /dev/null and b/docs/full_package.drawio.png differ
diff --git a/docs/linking.md b/docs/linking.md
index 0abbc73ec..3a18844d4 100644
--- a/docs/linking.md
+++ b/docs/linking.md
@@ -1,39 +1,65 @@
-# Developing with linked packages
+## Quickstart guide
-If you want to make changes to a package that Element Call depends on and see those changes applied in real time, you can create a link to a local copy of the package. Yarn has a command for this (`yarn link`), but it's not recommended to use it as it ends up modifying package.json with details specific to your development environment.
+Run:
-Instead, you can use our little 'linker' plugin. Create a file named `.links.yaml` in the Element Call project directory, listing the names and paths of any dependencies you want to link. For example:
-
-```yaml
-matrix-js-sdk: ../path/to/matrix-js-sdk
-"@vector-im/compound-web": /home/alice/path/to/compound-web
+```bash
+./scripts/setup-linking.sh
```
-Then run `yarn install`.
+Read the script output:
+
+```
+Setup complete.
+Update: .links.cjs to your liking
+Run: 'pnpm links:on' to test your .links.cjs
+Run: 'git commit' with links enabled to test the git pre-commit hook.
+Run: 'pnpm links:off' to be able to commit again
+Run: 'git config --local core.hooksPath ""' to allow committing with linking (not recommended)
+Run: 'rm links.cjs' & 'git config --local core.hooksPath ""' to fully revert what this script did
+```
+
+# Developing with linked packages
+
+If you want to make changes to a package that Element Call depends on and see those changes applied in real time, you can create a link to a local copy of the package. `pnpm` has a command for this (`pnpm link`), but it's not recommended to use it as it ends up modifying package.json with details specific to your development environment.
+
+Instead, create a file named `.links.cjs` in the Element Call project directory (or run `./scripts/setup-linking.sh` to create a template), listing the names and paths of any dependencies you want to link. For example:
+
+```cjs
+// Packages to link to local checkouts
+module.exports = {
+ "matrix-js-sdk": "../your/path/matrix-js-sdk",
+ "matrix-widget-api": "../your/path/matrix-widget-api",
+};
+```
+
+Then run `pnpm links:on`. (this will activate the pnpm file + run `pnpm install` to setup the linking)
## Hooks
-Changes in `.links.yaml` will also update `yarn.lock` when `yarn` is executed. The lockfile will then contain the local
+Changes in `.links.cjs` will also update `pnpm-lock.yaml` when `pnpm install` is executed. The lockfile will then contain the local
version of the package which would not work on others dev setups or the github CI.
-One always needs to run:
+
+One always needs to remove the pnpm `readPackage` script (the `.pnpmfile.cjs`) and run:
```bash
-mv .links.yaml .links.disabled.yaml
-yarn
+pnpm install
```
before committing a change.
-To make it more convenient to work with this linking system we added git hooks for your conviniece.
-A `pre-commit` hook will run `mv .links.yaml .links.disabled.yaml`, `yarn` and `git add yarn.lock` if it detects
-a `.links.yaml` file and abort the commit.
-You will than need to check if the resulting changes are appropriate and commit again.
+To make this less of a foot gun we added a git hook.
+A `pre-commit` hook will check if linking is currently used. If it detects
+a `.pnpmfile.cjs` file it will abort the commit with an explanatory message.
+You will then need to run `pnpm links:off` and commit again.
-A `post-commit` hook will setup the linking as it was
-before if a `.links.disabled.yaml` is present. It runs `mv .links.disabled.yaml .links.yaml` and `yarn`.
-
-To activate the hooks automatically configure git with
+To activate the hooks configure git with (when using the setup script (`./scripts/setup-linking.sh`) this is already done):
```bash
-git config --local core.hooksPath .githooks/
+git config --local core.hooksPath .githooks
```
+
+This will add the hook path for this repository only to .gihooks. which is a tracked (by git) folder containing the pre-commit hook.
+
+## Background
+
+Information, why this approach is used can be found in the [linking concept reasoning](./linking_concept_reasoning.md) document.
diff --git a/docs/linking_concept_reasoning.md b/docs/linking_concept_reasoning.md
new file mode 100644
index 000000000..d065ba0b7
--- /dev/null
+++ b/docs/linking_concept_reasoning.md
@@ -0,0 +1,30 @@
+### Why do we not enable .pnpmfile.cjs by default
+
+Background: The presence of the `.pnpmfile.cjs` adds a field to the `pnpm-lock.yaml` called: `pnpmfileChecksum`. This field is a checksum of the content of the `.pnpmfile.cjs` file.
+`pnpm install --frozen-lockfile` **fails** if there is a `.pnpmfile.cjs` but no `pnpmfileChecksum` or vice versa (or on mismatch).
+
+_TLDR: running with `--ignore-pnpmfile` will fail if `pnpmfileChecksum` is present._
+
+#### `pnpmfileChecksum` + renovate bot
+
+When the renovate bot creates a PR it runs `pnpm install --ignore-pnpmfile`. This means that the `pnpmfileChecksum` in the lockfile will be **empty**.
+This breaks builds that **don't** ignore the `.pnpmfile.cjs`-file. (CI that runs on the renovate PR)
+From here we have two possible paths:
+
+- ignore `.pnpmfile.cjs` in all CI builds (CI will also fail if we accidently add it locally).
+- fixup the `pnpm-lock.yaml` in the renovate PR to contain the correct `pnpmfileChecksum`.
+
+Ignoring in all CI builds means that CI will always fail if we enable the linking system.
+This is annoying but can be worked around with the git hook we provide that at least lets us know that we are
+commiting with enabled linking.
+Only if we remember setting it back/disbale linking (or let ourselves remember by the git hook) the CI will work.
+
+#### Summary
+
+- We will always run into conflicts with the `pnpmfileChecksum` because in renovate prs it will be empty (`--ignore-pnpmfile`)
+- To keep it simple we set `--ignore-pnpmfile` in all of our CI builds to see issues immediately.
+- The only solution is to never have a `.pnpmfile.cjs` in the repository when pushing.
+ - This way there will never be a commit with `pnpmfileChecksum` in the lockfile.
+ - renovate (which uses `--ignore-pnpmfile` which we cannot disable) and other CI will work.
+- We are able to use the linking system locally if we `cp` this file from the scripts folder into `./` on demand.
+- `pnpm links:on` and `pnpm links:off` + `./scripts/setup-linking.sh` will help us with this.
diff --git a/docs/self-hosting.md b/docs/self_hosting.md
similarity index 61%
rename from docs/self-hosting.md
rename to docs/self_hosting.md
index 4b2486dd5..e8ea2f6d8 100644
--- a/docs/self-hosting.md
+++ b/docs/self_hosting.md
@@ -1,5 +1,9 @@
# Self-Hosting Element Call
+> [!NOTE]
+> For In-App calling (Element X, Element Web, Element Desktop) use-case only
+> section [Prerequisites](#Prerequisites) is required.
+
## Prerequisites
> [!IMPORTANT]
@@ -51,23 +55,29 @@ rc_message:
# Note key sharing events are bursty
per_second: 0.5
burst_count: 30
- # This needs to match at least the heart-beat frequency plus a bit of headroom
- # Currently the heart-beat is every 5 seconds which translates into a rate of 0.2s
+
rc_delayed_event_mgmt:
+ # This needs to match at least the heart-beat frequency plus a bit of headroom
+ # Currently the heart-beat is every 5 seconds which translates into a rate of 0.2Hz
per_second: 1
burst_count: 20
```
+As a prerequisite for the
+[MatrixRTC Authorization Service](https://github.com/element-hq/lk-jwt-service)
+make sure that your Synapse server has either a `federation` or `openid`
+[listener configured](https://element-hq.github.io/synapse/latest/usage/configuration/config_documentation.html#listeners).
+
### MatrixRTC Backend
-In order to **guarantee smooth operation** of Element Call MatrixRTC backend is
+In order to **guarantee smooth operation** of Element Call, a MatrixRTC backend is
required for each site deployment.

As depicted above in the `example.com` site deployment, Element Call requires a
[Livekit SFU](https://github.com/livekit/livekit) alongside a
-[Matrix Livekit JWT auth service](https://github.com/element-hq/lk-jwt-service)
+[MatrixRTC Authorization Service](https://github.com/element-hq/lk-jwt-service)
to implement
[MSC4195: MatrixRTC using LiveKit backend](https://github.com/hughns/matrix-spec-proposals/blob/hughns/matrixrtc-livekit/proposals/4195-matrixrtc-livekit.md).
@@ -79,11 +89,11 @@ the example above, this results in:
| Service | Endpoint | Example |
| -------- | ------- | ------- |
| [Livekit SFU](https://github.com/livekit/livekit) WebSocket signalling connection | `/livekit/sfu` | `matrix-rtc.example.com/livekit/sfu` |
-| [Matrix Livekit JWT auth service](https://github.com/element-hq/lk-jwt-service) | `/livekit/jwt` | `matrix-rtc.example.com/livekit/jwt` |
+| [MatrixRTC Authorization Service](https://github.com/element-hq/lk-jwt-service) | `/livekit/jwt` | `matrix-rtc.example.com/livekit/jwt` |
Using Nginx, you can achieve this by:
-```jsonc
+```nginx configuration file
server {
...
location ^~ /livekit/jwt/ {
@@ -92,7 +102,7 @@ server {
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
- # JWT Service running at port 8080
+ # MatrixRTC Authorization Service running at port 8080
proxy_pass http://localhost:8080/;
}
@@ -116,12 +126,72 @@ server {
}
```
+Or Using Caddy, you can achieve this by:
+
+```caddy configuration file
+# Route for lk-jwt-service with livekit/jwt prefix
+@jwt_service path /livekit/jwt/sfu/get /livekit/jwt/healthz
+handle @jwt_service {
+ uri strip_prefix /livekit/jwt
+ reverse_proxy http://[::1]:8080 {
+ header_up Host {host}
+ header_up X-Forwarded-Server {host}
+ header_up X-Real-IP {remote_host}
+ header_up X-Forwarded-For {remote_host}
+ }
+}
+
+# Default route for livekit
+handle {
+ reverse_proxy http://localhost:7880 {
+ header_up Host {host}
+ header_up X-Forwarded-Server {host}
+ header_up X-Real-IP {remote_host}
+ header_up X-Forwarded-For {remote_host}
+ }
+}
+```
+
+Using Haproxy, you can achieve this by:
+
+```
+# Frontend
+ # Match /livekit/sfu/ path
+ acl is_sfu path_beg -i /livekit/sfu/
+ use_backend sfu_backend if is_sfu matrixrtc_domain
+
+ acl is_mxrtc_auth path_beg -i /sfu/get
+ use_backend mxrtc_auth_backend if is_mxrtc_auth matrixrtc_domain
+
+# Backend
+## MatrixRTC backend
+backend sfu_backend
+ server livekit 127.0.0.1:7880
+ http-request set-path %[path,regsub(^/livekit/sfu/,/)]
+ http-request set-header Host %[req.hdr(host)]
+ timeout server 120s
+ # WebSocket support
+ option forwardfor
+ option http-server-close
+ option http-buffer-request
+
+backend mxrtc_auth_backend
+ server sfu 127.0.0.1:8070
+ http-request set-header Host %[req.hdr(host)]
+ timeout server 120s
+ # WebSocket support
+ option forwardfor
+ option http-server-close
+ option http-buffer-request
+
+```
+
#### MatrixRTC backend announcement
> [!IMPORTANT]
> As defined in
-> [MSC4143](https://github.com/matrix-org/matrix-spec-proposals/pull/4143)
-> MatrixRTC backend must be announced to the client via your **Matrix site's
+> [MSC4143](https://github.com/matrix-org/matrix-spec-proposals/pull/4143),
+> the MatrixRTC backend(s) must be announced to the client via your **Matrix site's
> `.well-known/matrix/client`** file (e.g.
> `example.com/.well-known/matrix/client` matching the site deployment example
> from above). The configuration is a list of Foci configs:
@@ -135,17 +205,24 @@ server {
{
"type": "livekit",
"livekit_service_url": "https://matrix-rtc-2.example.com/livekit/jwt"
- },
- {
- "type": "nextgen_new_foci_type",
- "props_for_nextgen_foci": "val"
}
]
```
+Make sure this file is served with the correct MIME type (`application/json`).
+Additionally, ensure the appropriate CORS headers are set to allow web clients
+to access it across origins. For more details, refer to the
+[Matrix Client-Server API: 2. Web Browser Clients](https://spec.matrix.org/latest/client-server-api/#web-browser-clients).
+
+```
+Access-Control-Allow-Origin: *
+Access-Control-Allow-Methods: GET, POST, PUT, DELETE, OPTIONS
+Access-Control-Allow-Headers: X-Requested-With, Content-Type, Authorization
+```
+
> [!NOTE]
> Most `org.matrix.msc4143.rtc_foci` configurations will only have one entry in
-> the array
+> the array.
## Building Element Call
@@ -160,8 +237,8 @@ source. First, clone and install the package:
git clone https://github.com/element-hq/element-call.git
cd element-call
corepack enable
-yarn
-yarn build
+pnpm install
+pnpm build
```
If all went well, you can now find the build output under `dist` as a series of
@@ -182,7 +259,7 @@ Because Element Call uses client-side routing, your server must be able to route
any requests to non-existing paths back to `/index.html`. For example, in Nginx
you can achieve this with the `try_files` directive:
-```jsonc
+```nginx configuration file
server {
...
location / {
@@ -197,7 +274,7 @@ server {
There are currently two different config files. `.env` holds variables that are
used at build time, while `public/config.json` holds variables that are used at
runtime. Documentation and default values for `public/config.json` can be found
-in [ConfigOptions.ts](src/config/ConfigOptions.ts).
+in [ConfigOptions.ts](../src/config/ConfigOptions.ts).
> [!CAUTION]
> Please note configuring MatrixRTC backend via `config.json` of
@@ -214,8 +291,40 @@ be able to handle those yet and it may behave unreliably.
Therefore, to use a self-hosted homeserver, this is recommended to be a new
server where any user account created has not joined any normal rooms anywhere
-in the Matrix federated network. The homeserver used can be setup to disable
+in the Matrix federated network. The homeserver used can be set up to disable
federation, so as to prevent spam registrations (if you keep registrations open)
and to ensure Element Call continues to work in case any user decides to log in
to their Element Call account using the standard Element app and joins normal
rooms that Element Call cannot handle.
+
+# 📚 Community Guides & How-Tos
+
+Looking for real-world tips, tutorials, and experiences from the community?
+Below is a collection of blog posts, walkthroughs, and how-tos created by other
+self-hosters and developers working with Element Call.
+
+> [!NOTE]
+> These resources are community-created and may reflect different setups or
+> versions. Use them alongside the official documentation for best results.
+
+## 🌐 Blog Posts & Articles
+
+- [How to resolve stuck MatrixRTC calls](https://sspaeth.de/2025/02/how-to-resolve-stuck-matrixrtc-calls/)
+
+## 📝 How-Tos & Tutorials
+
+- [MatrixRTC aka Element-call setup (Geek warning)](https://sspaeth.de/2024/11/sfu/)
+- [MatrixRTC with Synology Container Manager (Docker)](https://ztfr.de/matrixrtc-with-synology-container-manager-docker/)
+- [Encrypted & Scalable Video Calls: How to deploy an Element Call backend with Synapse Using Docker-Compose](https://willlewis.co.uk/blog/posts/deploy-element-call-backend-with-synapse-and-docker-compose/)
+- [Element Call einrichten: Verschlüsselte Videoanrufe mit Element X und Matrix Synapse](https://www.cleveradmin.de/blog/2025/04/matrixrtc-element-call-backend-einrichten/)
+- [MatrixRTC Back-End for Synapse with Docker Compose and Traefik](https://forge.avontech.net/kstro1/matrixrtc-docker-traefik/)
+
+## 🛠️ Tools
+
+- [A Matrix server sanity tester including tests for proper MatrixRTC setup](https://codeberg.org/spaetz/testmatrix)
+
+## 🤝 Want to Contribute?
+
+Have a guide or blog post you'd like to share? Open a
+[PR](https://github.com/element-hq/element-call/pulls) to add it here, or drop a
+link in the [#webrtc:matrix.org](https://matrix.to/#/#webrtc:matrix.org) room.
diff --git a/docs/url-params.md b/docs/url_params.md
similarity index 50%
rename from docs/url-params.md
rename to docs/url_params.md
index c533937bd..789e3f3ce 100644
--- a/docs/url-params.md
+++ b/docs/url_params.md
@@ -4,7 +4,7 @@ There are two formats for Element Call URLs.
## Link for sharing
-Requires Element Call to be deployed in [standalone](./embedded-standalone.md) mode.
+Requires Element Call to be deployed in [standalone](./embedded_standalone.md) mode.
```text
https://element_call.domain/room/#
@@ -12,7 +12,7 @@ https://element_call.domain/room/#
```
The URL is split into two sections. The `https://element_call.domain/room/#`
-contains the app and the intend that the link brings you into a specific room
+contains the app and the intent that the link brings you into a specific room
(`https://call.element.io/#` would be the homepage). The fragment is used for
query parameters to make sure they never get sent to the element_call.domain
server. Here we have the actual Matrix room ID and the password which are used
@@ -36,62 +36,66 @@ possible to support encryption.
| Package | Deployment | URL |
| ------------------------------------ | ----------------------------- | ----------------------------------------------------------------------------- |
-| [Full](./embedded-standalone.md) | All | `https://element_call.domain/room` |
-| [Embedded](./embedded-standalone.md) | Remote URL | `https://element_call.domain/` n.b. no `/room` part |
-| [Embedded](./embedded-standalone.md) | Embedded within messenger app | Platform dependent, but you load the `index.html` file without a `/room` part |
+| [Full](./embedded_standalone.md) | All | `https://element_call.domain/room` |
+| [Embedded](./embedded_standalone.md) | Remote URL | `https://element_call.domain/` n.b. no `/room` part |
+| [Embedded](./embedded_standalone.md) | Embedded within messenger app | Platform dependent, but you load the `index.html` file without a `/room` part |
## Parameters
### Common Parameters
-These parameters are relevant to both [widget](./embedded-standalone.md) and [standalone](./embedded-standalone.md) modes:
+These parameters are relevant to both [widget](./embedded_standalone.md) and [standalone](./embedded_standalone.md) modes:
-| Name | Values | Required for widget | Required for SPA | Description |
-| ------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | ---------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| `allowIceFallback` | `true` or `false` | No, defaults to `false` | No, defaults to `false` | Allows use of fallback STUN servers for ICE if the user's homeserver doesn’t provide any. |
-| `analyticsID` (deprecated: use `posthogUserId` instead) | Posthog analytics ID | No | No | Available only with user's consent for sharing telemetry in Element Web. |
-| `appPrompt` | `true` or `false` | No, defaults to `true` | No, defaults to `true` | Prompts the user to launch the native mobile app upon entering a room, applicable only on Android and iOS, and must be enabled in config. |
-| `confineToRoom` | `true` or `false` | No, defaults to `false` | No, defaults to `false` | Keeps the user confined to the current call/room. |
-| `displayName` | | No | No | Display name used for auto-registration. |
-| `enableE2EE` (deprecated) | `true` or `false` | No, defaults to `true` | No, defaults to `true` | Legacy flag to enable end-to-end encryption, not used in the `livekit` branch. |
-| `fontScale` | A decimal number such as `0.9` | No, defaults to `1.0` | No, defaults to `1.0` | Factor by which to scale the interface's font size. |
-| `fonts` | | No | No | Defines the font(s) used by the interface. Multiple font parameters can be specified: `?font=font-one&font=font-two...`. |
-| `hideHeader` | `true` or `false` | No, defaults to `false` | No, defaults to `false` | Hides the room header when in a call. |
-| `hideScreensharing` | `true` or `false` | No, defaults to `false` | No, defaults to `false` | Hides the screen-sharing button. |
-| `homeserver` | | Not applicable | No | Homeserver for registering a new (guest) user, configures non-default guest user server when creating a spa link. |
-| `intent` | `start_call` or `join_existing` | No, defaults to `start_call` | No, defaults to `start_call` | The intent of the user with respect to the call. e.g. if they clicked a Start Call button, this would be `start_call`. If it was a Join Call button, it would be `join_existing`. |
-| `lang` | [BCP 47](https://www.rfc-editor.org/info/bcp47) code | No | No | The language the app should use. |
-| `password` | | No | No | E2EE password when using a shared secret. (For individual sender keys in embedded mode this is not required.) |
-| `perParticipantE2EE` | `true` or `false` | No, defaults to `false` | No, defaults to `false` | Enables per participant encryption with Keys exchanged over encrypted matrix room messages. |
-| `roomId` | [Matrix Room ID](https://spec.matrix.org/v1.12/appendices/#room-ids) | Yes | No | Anything about what room we're pointed to should be from useRoomIdentifier which parses the path and resolves alias with respect to the default server name, however roomId is an exception as we need the room ID in embedded widget mode, and not the room alias (or even the via params because we are not trying to join it). This is also not validated, where it is in `useRoomIdentifier()`. |
-| `showControls` | `true` or `false` | No, defaults to `true` | No, defaults to `true` | Displays controls like mute, screen-share, invite, and hangup buttons during a call. |
-| `skipLobby` (deprecated: use `intent` instead) | `true` or `false` | No. If `intent` is explicitly `start_call` then defaults to `true`. Otherwise defaults to `false` | No, defaults to `false` | Skips the lobby to join a call directly, can be combined with preload in widget. When `true` the audio and video inputs will be muted by default. (This means there currently is no way to start without muted video if one wants to skip the lobby. Also not in widget mode.) |
-| `theme` | One of: `light`, `dark`, `light-high-contrast`, `dark-high-contrast` | No, defaults to `dark` | No, defaults to `dark` | UI theme to use. |
-| `viaServers` | Comma separated list of [Matrix Server Names](https://spec.matrix.org/v1.12/appendices/#server-name) | Not applicable | No | Homeserver for joining a room, non-empty value required for rooms not on the user’s default homeserver. |
+| Name | Values | Required for widget | Required for SPA | Description |
+| ---------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------- | ---------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| `intent` | `start_call`, `join_existing`, `start_call_voice`, `join_existing_voice`, `start_call_dm`, `join_existing_dm`, `start_call_dm_voice`, or `join_existing_dm_voice`. | No, defaults to `start_call` | No, defaults to `start_call` | The intent is a special url parameter that defines the defaults for all the other parameters. In most cases it should be enough to only set the intent to setup element-call. |
+| `allowIceFallback` | `true` or `false` | No, defaults to `false` | No, defaults to `false` | Allows use of fallback STUN servers for ICE if the user's homeserver doesn’t provide any. |
+| `posthogUserId` | Posthog analytics ID | No | No | Available only with user's consent for sharing telemetry in Element Web. |
+| `confineToRoom` | `true` or `false` | No, defaults to `false` | No, defaults to `false` | Keeps the user confined to the current call/room. |
+| `displayName` | | No | No | Display name used for auto-registration. |
+| `enableE2EE` (deprecated) | `true` or `false` | No, defaults to `true` | No, defaults to `true` | Legacy flag to enable end-to-end encryption, not used in the `livekit` branch. |
+| `fontScale` | A decimal number such as `0.9` | No, defaults to `1.0` | No, defaults to `1.0` | Factor by which to scale the interface's font size. |
+| `fonts` | | No | No | Defines the font(s) used by the interface. Multiple font parameters can be specified: `?font=font-one&font=font-two...`. |
+| `header` | `none`, `standard` or `app_bar` | No, defaults to `standard` | No, defaults to `standard` | The style of headers to show. `standard` is the default arrangement, `none` hides the header entirely, and `app_bar` produces a header with a back button like you might see in mobile apps. The callback for the back button is `window.controls.onBackButtonPressed`. |
+| `hideScreensharing` | `true` or `false` | No, defaults to `false` | No, defaults to `false` | Hides the screen-sharing button. |
+| `homeserver` | | Not applicable | No | Homeserver for registering a new (guest) user, configures non-default guest user server when creating a spa link. |
+| `lang` | [BCP 47](https://www.rfc-editor.org/info/bcp47) code | No | No | The language the app should use. |
+| `password` | | No | No | E2EE password when using a shared secret. (For individual sender keys in embedded mode this is not required.) |
+| `perParticipantE2EE` | `true` or `false` | No, defaults to `false` | No, defaults to `false` | Enables per participant encryption with Keys exchanged over encrypted matrix room messages. |
+| `controlledAudioDevices` | `true` or `false` | No, defaults to `false` | No, defaults to `false` | Whether the [global JS controls for audio devices](./controls.md#audio-devices) should be enabled, allowing the list of audio devices to be controlled by the app hosting Element Call. |
+| `roomId` | [Matrix Room ID](https://spec.matrix.org/v1.12/appendices/#room-ids) | Yes | No | Anything about what room we're pointed to should be from useRoomIdentifier which parses the path and resolves alias with respect to the default server name, however roomId is an exception as we need the room ID in embedded widget mode, and not the room alias (or even the via params because we are not trying to join it). This is also not validated, where it is in `useRoomIdentifier()`. |
+| `showControls` | `true` or `false` | No, defaults to `true` | No, defaults to `true` | Displays controls like mute, screen-share, invite, and hangup buttons during a call. |
+| `skipLobby` (deprecated: use `intent` instead) | `true` or `false` | No. If `intent` is explicitly `start_call` then defaults to `true`. Otherwise defaults to `false` | No, defaults to `false` | Skips the lobby to join a call directly, can be combined with preload in widget. When `true` the audio and video inputs will be muted by default. (This means there currently is no way to start without muted video if one wants to skip the lobby. Also not in widget mode.) |
+| `theme` | One of: `light`, `dark`, `light-high-contrast`, `dark-high-contrast` | No, defaults to `dark` | No, defaults to `dark` | UI theme to use. |
+| `background` | One of: `solid`, `gradient` | No, defaults to `gradient` | No, defaults to `gradient` | Visual style of the page background. |
+| `viaServers` | Comma separated list of [Matrix Server Names](https://spec.matrix.org/v1.12/appendices/#server-name) | Not applicable | No | Homeserver for joining a room, non-empty value required for rooms not on the user’s default homeserver. |
+| `sendNotificationType` | `ring` or `notification` | No | No | Will send a "ring" or "notification" `m.rtc.notification` event if the user is the first one in the call. |
+| `autoLeave` | `true` or `false` | No, defaults to `false` | No, defaults to `false` | Whether the app should automatically leave the call when there is no one left in the call. |
+| `waitForCallPickup` | `true` or `false` | No, defaults to `false` | No, defaults to `false` | When sending a notification, show UI that the app is awaiting an answer, play a dial tone, and (in widget mode) auto-close the widget once the notification expires. |
### Widget-only parameters
-These parameters are only supported in [widget](./embedded-standalone.md) mode.
+These parameters are only supported in [widget](./embedded_standalone.md) mode.
-| Name | Values | Required | Description |
-| --------------- | ----------------------------------------------------------------------------------------- | ----------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| `baseUrl` | | Yes | The base URL of the homeserver to use for media lookups. |
-| `deviceId` | Matrix device ID | Yes | The Matrix device ID for the widget host. |
-| `parentUrl` | | Yes | The url used to send widget action postMessages. This should be the domain of the client or the webview the widget is hosted in. (in case the widget is not in an Iframe but in a dedicated webview we send the postMessages same WebView the widget lives in. Filtering is done in the widget so it ignores the messages it receives from itself) |
-| `posthogUserId` | Posthog user identifier | No | This replaces the `analyticsID` parameter |
-| `preload` | `true` or `false` | No, defaults to `false` | Pauses app before joining a call until an `io.element.join` widget action is seen, allowing preloading. |
-| `returnToLobby` | `true` or `false` | No, defaults to `false` | Displays the lobby in widget mode after leaving a call; shows a blank page if set to `false`. Useful for video rooms. |
-| `userId` | [Matrix User Identifier](https://spec.matrix.org/v1.12/appendices/#user-identifiers) | Yes | The Matrix user ID. |
-| `widgetId` | [MSC2774](https://github.com/matrix-org/matrix-spec-proposals/pull/2774) format widget ID | Yes | The id used by the widget. The presence of this parameter implies that element call will not connect to a homeserver directly and instead tries to establish postMessage communication via the `parentUrl`. |
+| Name | Values | Required | Description |
+| --------------- | ----------------------------------------------------------------------------------------- | ----------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| `baseUrl` | | Yes | The base URL of the homeserver to use for media lookups. |
+| `deviceId` | Matrix device ID | Yes | The Matrix device ID for the widget host. |
+| `parentUrl` | | Yes | The url used to send widget action postMessages. This should be the domain of the client or the webview the widget is hosted in. (In case the widget is not in an Iframe but in a dedicated webview, we send the postMessages in the same WebView the widget lives in. Filtering is done in the widget so it ignores the messages it receives from itself.) |
+| `posthogUserId` | Posthog user identifier | No | This replaces the `analyticsID` parameter |
+| `preload` | `true` or `false` | No, defaults to `false` | Pauses app before joining a call until an `io.element.join` widget action is seen, allowing preloading. |
+| `returnToLobby` | `true` or `false` | No, defaults to `false` | Displays the lobby in widget mode after leaving a call; shows a blank page if set to `false`. Useful for video rooms. |
+| `userId` | [Matrix User Identifier](https://spec.matrix.org/v1.12/appendices/#user-identifiers) | Yes | The Matrix user ID. |
+| `widgetId` | [MSC2774](https://github.com/matrix-org/matrix-spec-proposals/pull/2774) format widget ID | Yes | The id used by the widget. The presence of this parameter implies that element call will not connect to a homeserver directly and instead tries to establish postMessage communication via the `parentUrl`. |
### Embedded-only parameters
-These parameters are only supported in the [embedded](./embedded-standalone.md) package of Element Call and will be ignored in the [full](./embedded-standalone.md) package.
+These parameters are only supported in the [embedded](./embedded_standalone.md) package of Element Call and will be ignored in the [full](./embedded_standalone.md) package.
| Name | Values | Required | Description |
| -------------------- | -------------------------------------------------------------------------- | -------- | ---------------------------------------------------------------------------------------------------------------------------------- |
| `posthogApiHost` | Posthog server URL | No | e.g. `https://posthog-element-call.element.io`. Only supported in embedded package. In full package the value from config is used. |
| `posthogApiKey` | Posthog project API key | No | Only supported in embedded package. In full package the value from config is used. |
-| `rageshakeSubmitUrl` | Rageshake server URL endpoint | No | e.g. `https://element.io/bugreports/submit`. In full package the value from config is used. |
+| `rageshakeSubmitUrl` | Rageshake server URL endpoint | No | e.g. `https://rageshakes.element.io/api/submit`. In full package the value from config is used. |
| `sentryDsn` | Sentry [DSN](https://docs.sentry.io/concepts/key-terms/dsn-explainer/) | No | In full package the value from config is used. |
| `sentryEnvironment` | Sentry [environment](https://docs.sentry.io/concepts/key-terms/key-terms/) | No | In full package the value from config is used. |
diff --git a/embedded/android/gradle/libs.versions.toml b/embedded/android/gradle/libs.versions.toml
index 8d38daab0..ce21db990 100644
--- a/embedded/android/gradle/libs.versions.toml
+++ b/embedded/android/gradle/libs.versions.toml
@@ -2,11 +2,11 @@
# https://docs.gradle.org/current/userguide/platforms.html#sub::toml-dependencies-format
[versions]
-android_gradle_plugin = "8.8.0"
+android_gradle_plugin = "8.13.2"
[libraries]
android_gradle_plugin = { module = "com.android.tools.build:gradle", version.ref = "android_gradle_plugin" }
[plugins]
android_library = { id = "com.android.library", version.ref = "android_gradle_plugin" }
-maven_publish = { id = "com.vanniktech.maven.publish", version = "0.30.0" }
\ No newline at end of file
+maven_publish = { id = "com.vanniktech.maven.publish", version = "0.36.0" }
diff --git a/embedded/android/gradle/wrapper/gradle-wrapper.jar b/embedded/android/gradle/wrapper/gradle-wrapper.jar
index d64cd4917..1b33c55ba 100644
Binary files a/embedded/android/gradle/wrapper/gradle-wrapper.jar and b/embedded/android/gradle/wrapper/gradle-wrapper.jar differ
diff --git a/embedded/android/gradle/wrapper/gradle-wrapper.properties b/embedded/android/gradle/wrapper/gradle-wrapper.properties
index 79eb9d003..70fe02a53 100644
--- a/embedded/android/gradle/wrapper/gradle-wrapper.properties
+++ b/embedded/android/gradle/wrapper/gradle-wrapper.properties
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
-distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-all.zip
+distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.5-all.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
diff --git a/embedded/android/gradlew b/embedded/android/gradlew
index f5feea6d6..23d15a936 100755
--- a/embedded/android/gradlew
+++ b/embedded/android/gradlew
@@ -86,8 +86,7 @@ done
# shellcheck disable=SC2034
APP_BASE_NAME=${0##*/}
# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036)
-APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s
-' "$PWD" ) || exit
+APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s\n' "$PWD" ) || exit
# Use the maximum available, or set MAX_FD != -1 to use that value.
MAX_FD=maximum
@@ -115,7 +114,7 @@ case "$( uname )" in #(
NONSTOP* ) nonstop=true ;;
esac
-CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar
+CLASSPATH="\\\"\\\""
# Determine the Java command to use to start the JVM.
@@ -206,7 +205,7 @@ fi
DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
# Collect all arguments for the java command:
-# * DEFAULT_JVM_OPTS, JAVA_OPTS, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments,
+# * DEFAULT_JVM_OPTS, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments,
# and any embedded shellness will be escaped.
# * For example: A user cannot expect ${Hostname} to be expanded, as it is an environment variable and will be
# treated as '${Hostname}' itself on the command line.
@@ -214,7 +213,7 @@ DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
set -- \
"-Dorg.gradle.appname=$APP_BASE_NAME" \
-classpath "$CLASSPATH" \
- org.gradle.wrapper.GradleWrapperMain \
+ -jar "$APP_HOME/gradle/wrapper/gradle-wrapper.jar" \
"$@"
# Stop when "xargs" is not available.
diff --git a/embedded/android/gradlew.bat b/embedded/android/gradlew.bat
index 9d21a2183..db3a6ac20 100644
--- a/embedded/android/gradlew.bat
+++ b/embedded/android/gradlew.bat
@@ -70,11 +70,11 @@ goto fail
:execute
@rem Setup the command line
-set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar
+set CLASSPATH=
@rem Execute Gradle
-"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %*
+"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" -jar "%APP_HOME%\gradle\wrapper\gradle-wrapper.jar" %*
:end
@rem End local scope for the variables with windows NT shell
diff --git a/embedded/android/lib/build.gradle.kts b/embedded/android/lib/build.gradle.kts
index f4234faa8..0a1863fde 100644
--- a/embedded/android/lib/build.gradle.kts
+++ b/embedded/android/lib/build.gradle.kts
@@ -5,8 +5,6 @@
* Please see LICENSE files in the repository root for full details.
*/
-import com.vanniktech.maven.publish.SonatypeHost
-
plugins {
alias(libs.plugins.android.library)
alias(libs.plugins.maven.publish)
@@ -27,7 +25,7 @@ android {
}
mavenPublishing {
- publishToMavenCentral(SonatypeHost.S01)
+ publishToMavenCentral(automaticRelease = true)
signAllPublications()
diff --git a/embedded/android/publish_android_package.sh b/embedded/android/publish_android_package.sh
index 8c310c9ba..316933179 100755
--- a/embedded/android/publish_android_package.sh
+++ b/embedded/android/publish_android_package.sh
@@ -11,7 +11,7 @@ pushd $CURRENT_DIR > /dev/null
function build_assets() {
echo "Generating Element Call assets..."
pushd ../.. > /dev/null
- yarn build
+ pnpm build
popd > /dev/null
}
@@ -26,7 +26,7 @@ function copy_assets() {
}
getopts :sh opt
-case $opt in
+case $opt in
s)
SKIP=1
;;
@@ -41,7 +41,7 @@ if [ ! $SKIP ]; then
echo ""
if [[ $REPLY =~ ^[Yy]$ ]]; then
build_assets
- else
+ else
echo "Using existing assets from ../../dist"
fi
copy_assets
@@ -56,4 +56,4 @@ echo "Publishing the Android project"
./gradlew publishAndReleaseToMavenCentral --no-daemon
-popd > /dev/null
\ No newline at end of file
+popd > /dev/null
diff --git a/eslint/CopyrightHeader.js b/eslint/CopyrightHeader.js
new file mode 100644
index 000000000..9ff60b8b4
--- /dev/null
+++ b/eslint/CopyrightHeader.js
@@ -0,0 +1,66 @@
+/*
+Copyright 2026 Element Creations Ltd.
+
+SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
+Please see LICENSE in the repository root for full details.
+*/
+
+import { ESLintUtils } from "@typescript-eslint/utils";
+
+const rule = ESLintUtils.RuleCreator(
+ () => "https://github.com/element-hq/element-call",
+)({
+ name: "copyright-header",
+ meta: {
+ type: "problem",
+ fixable: "code",
+ docs: {
+ description: "Require a copyright header in files.",
+ },
+ messages: {
+ noHeader: "Copyright header is required.",
+ },
+ schema: [{ type: "string" }],
+ },
+ create(context) {
+ const code = context.getSourceCode();
+
+ return {
+ Program(node) {
+ const firstToken = code.getFirstToken(node, { includeComments: false });
+
+ if (!firstToken) {
+ return;
+ }
+
+ const headComments = code.getCommentsBefore(firstToken);
+ const hasSomeCopyrightHeader = headComments?.some((comment) =>
+ comment?.value?.includes("Copyright"),
+ );
+ if (hasSomeCopyrightHeader) {
+ return;
+ }
+ const headerTemplate = context.options[0];
+ const fix = headerTemplate
+ ? function (fixer) {
+ return fixer.insertTextBefore(
+ firstToken,
+ headerTemplate.replace(
+ /%%CURRENT_YEAR%%/g,
+ new Date().getFullYear(),
+ ),
+ );
+ }
+ : undefined;
+
+ context.report({
+ messageId: "noHeader",
+ node,
+ fix,
+ });
+ },
+ };
+ },
+});
+
+export default rule;
diff --git a/eslint/NoObservableScopeLeak.js b/eslint/NoObservableScopeLeak.js
new file mode 100644
index 000000000..ff56cbb96
--- /dev/null
+++ b/eslint/NoObservableScopeLeak.js
@@ -0,0 +1,78 @@
+/*
+Copyright 2026 Element Creations Ltd.
+
+SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
+Please see LICENSE in the repository root for full details.
+*/
+
+import { ESLintUtils } from "@typescript-eslint/utils";
+
+// These ObservableScope methods will not generally cause resource leaks even if
+// called from a callback
+const safeScopeMethods = new Set(["bind", "end"]);
+
+/**
+ * Determines whether the variable with the given name is local to
+ * the enclosing function or class scope.
+ */
+function isLocal(name, scope) {
+ // If it is nowhere to be found in the "through" scope, it is local.
+ if (!scope.through.some(({ identifier }) => identifier.name === name))
+ return true;
+ if (scope.type === "function" || scope.type === "class") return false;
+ // If this is something other than a function or class scope, check its outer
+ // scope.
+ return !scope.upper || isLocal(name, scope.upper);
+}
+
+const rule = ESLintUtils.RuleCreator(
+ () => "https://github.com/element-hq/element-call",
+)({
+ name: "no-observablescope-leak",
+ meta: {
+ type: "problem",
+ docs: {
+ description:
+ "Require referenced ObservableScopes to be defined in the very same scope to avoid resource leaks.",
+ },
+ messages: {
+ scopeLeak:
+ "Do not reference ObservableScopes defined in an outer scope; this may create resource leaks.",
+ },
+ schema: [],
+ },
+ create(context) {
+ return {
+ Identifier(node) {
+ const scope = context.sourceCode.getScope(node);
+ if (
+ // Is this a reference to a variable defined in an outer scope?
+ !isLocal(node.name, scope) &&
+ // Exclude calls to "safe" ObservableScope methods
+ node.parent?.type === "MemberExpression" &&
+ node.parent.object === node &&
+ node.parent.property.type === "Identifier" &&
+ !safeScopeMethods.has(node.parent.property.name) &&
+ /(^s|S)cope$/.test(node.name)
+ ) {
+ // TODO: Once oxlint supports lint rules that rely on TypeScript type-awareness,
+ // Verify that the variable is actually of type ObservableScope rather than just
+ // checking its name. This is expensive so we should do this last.
+ //
+ // const services = ESLintUtils.getParserServices(context);
+ // const type = services.getTypeAtLocation(node);
+ // if (type.symbol?.name === "ObservableScope") { ... }
+
+ // This ObservableScope method call may be causing resource leaks.
+ context.report({
+ messageId: "scopeLeak",
+ loc: node.loc,
+ node,
+ });
+ }
+ },
+ };
+ },
+});
+
+export default rule;
diff --git a/eslint/NoTopLevelLoggerGetChild.js b/eslint/NoTopLevelLoggerGetChild.js
new file mode 100644
index 000000000..3d9752c47
--- /dev/null
+++ b/eslint/NoTopLevelLoggerGetChild.js
@@ -0,0 +1,92 @@
+/*
+Copyright 2026 Element Creations Ltd.
+
+SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
+Please see LICENSE in the repository root for full details.
+*/
+
+import { ESLintUtils } from "@typescript-eslint/utils";
+
+/**
+ * Node types that introduce a new non-module scope. A getChild() call nested
+ * inside any of these is considered "not at the top level".
+ */
+const FUNCTION_OR_CLASS_TYPES = new Set([
+ "FunctionDeclaration",
+ "FunctionExpression",
+ "ArrowFunctionExpression",
+ "ClassBody",
+]);
+
+const rule = ESLintUtils.RuleCreator(
+ () => "https://github.com/element-hq/element-call",
+)({
+ name: "no-top-level-logger-get-child",
+ meta: {
+ type: "problem",
+ docs: {
+ description:
+ "Disallow calling logger.getChild() at the top level of a module." +
+ "`getChild` has to be called after the rageshake logger `init()`." +
+ "If it is called at the top level the child logger will never be setup for rageshakes.",
+ },
+ messages: {
+ noTopLevelGetChild:
+ "Do not call logger.getChild() at the top level of a module; move it inside a function or class instead that gets called after rageshake logger `init()` is called.",
+ },
+ schema: [],
+ },
+ create(context) {
+ // Tracks the local binding names that refer to the logger imported from
+ // 'matrix-js-sdk/lib/logger', e.g. both `logger` and `rootLogger` in:
+ // import { logger } from "matrix-js-sdk/lib/logger";
+ // import { logger as rootLogger } from "matrix-js-sdk/lib/logger";
+ const loggerNames = new Set();
+
+ return {
+ ImportDeclaration(node) {
+ if (node.source.value !== "matrix-js-sdk/lib/logger") return;
+ for (const specifier of node.specifiers) {
+ if (
+ specifier.type === "ImportSpecifier" &&
+ specifier.imported.name === "logger"
+ ) {
+ loggerNames.add(specifier.local.name);
+ }
+ }
+ },
+
+ CallExpression(node) {
+ // Must be a non-computed member expression call: something.getChild(...)
+ if (
+ node.callee.type !== "MemberExpression" ||
+ node.callee.computed ||
+ node.callee.property.type !== "Identifier" ||
+ node.callee.property.name !== "getChild"
+ )
+ return;
+
+ // The receiver must be one of the tracked logger names.
+ const object = node.callee.object;
+ if (object.type !== "Identifier" || !loggerNames.has(object.name))
+ return;
+
+ // Flag the call only when it is at module top level — i.e. there is no
+ // enclosing function or class body anywhere in the ancestor chain.
+ const ancestors = context.sourceCode.getAncestors(node);
+ const isTopLevel = !ancestors.some((a) =>
+ FUNCTION_OR_CLASS_TYPES.has(a.type),
+ );
+
+ if (isTopLevel) {
+ context.report({
+ messageId: "noTopLevelGetChild",
+ node,
+ });
+ }
+ },
+ };
+ },
+});
+
+export default rule;
diff --git a/eslint/index.js b/eslint/index.js
new file mode 100644
index 000000000..1f2e7629e
--- /dev/null
+++ b/eslint/index.js
@@ -0,0 +1,8 @@
+module.exports = {
+ rules: {
+ "copyright-header": require("./CopyrightHeader").default,
+ "no-observablescope-leak": require("./NoObservableScopeLeak").default,
+ "no-top-level-logger-get-child": require("./NoTopLevelLoggerGetChild")
+ .default,
+ },
+};
diff --git a/eslint/package.json b/eslint/package.json
new file mode 100644
index 000000000..88c222308
--- /dev/null
+++ b/eslint/package.json
@@ -0,0 +1,4 @@
+{
+ "name": "eslint-plugin-element-call",
+ "version": "0.0.0"
+}
diff --git a/i18next-parser.config.ts b/i18next-parser.config.ts
deleted file mode 100644
index 3acf2b5e4..000000000
--- a/i18next-parser.config.ts
+++ /dev/null
@@ -1,28 +0,0 @@
-export default {
- keySeparator: ".",
- namespaceSeparator: false,
- contextSeparator: "|",
- pluralSeparator: "_",
- createOldCatalogs: false,
- defaultNamespace: "app",
- lexers: {
- ts: [
- {
- lexer: "JavascriptLexer",
- functions: ["t", "translatedError"],
- namespaceFunctions: ["useTranslation", "withTranslation"],
- },
- ],
- tsx: [
- {
- lexer: "JsxLexer",
- functions: ["t", "translatedError"],
- namespaceFunctions: ["useTranslation", "withTranslation"],
- },
- ],
- },
- locales: ["en"],
- output: "locales/$LOCALE/$NAMESPACE.json",
- input: ["src/**/*.{ts,tsx}"],
- sort: true,
-};
diff --git a/i18next.config.ts b/i18next.config.ts
new file mode 100644
index 000000000..c6acbc5de
--- /dev/null
+++ b/i18next.config.ts
@@ -0,0 +1,20 @@
+import { defineConfig } from "i18next-cli";
+
+export default defineConfig({
+ locales: ["en"],
+ extract: {
+ input: ["src/**/*.{ts,tsx}"],
+ output: "locales/{{language}}/{{namespace}}.json",
+ defaultNS: "app",
+ keySeparator: ".",
+ nsSeparator: false,
+ contextSeparator: "|",
+ extractFromComments: false,
+ functions: ["t", "*.t", "translatedError", "i18nKey"],
+ transComponents: ["Trans"],
+ },
+ types: {
+ input: ["locales/{{language}}/{{namespace}}.json"],
+ output: "src/types/i18next.d.ts",
+ },
+});
diff --git a/index.html b/index.html
index f17c73c0b..b64da0841 100644
--- a/index.html
+++ b/index.html
@@ -10,12 +10,25 @@
<%- brand %>
+
+
<% if (packageType === "full") { %>
diff --git a/knip.ts b/knip.ts
index 05bd029de..8412d5915 100644
--- a/knip.ts
+++ b/knip.ts
@@ -1,33 +1,45 @@
-import { KnipConfig } from "knip";
+/*
+Copyright 2025 New Vector Ltd.
+
+SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
+Please see LICENSE in the repository root for full details.
+*/
+
+import { type KnipConfig } from "knip";
export default {
vite: {
- config: ["vite.config.js", "vite-embedded.config.js"],
+ config: ["vite.config.ts", "vite-embedded.config.ts", "vite-sdk.config.ts"],
},
- entry: ["src/main.tsx", "i18next-parser.config.ts"],
+ entry: ["src/main.tsx", "eslint/index.js", "i18next.config.ts"],
ignoreBinaries: [
// This is deprecated, so Knip doesn't actually recognize it as a globally
// installed binary. TODO We should switch to Compose v2:
// https://docs.docker.com/compose/migrate/
"docker-compose",
+ // This is a shell built-in.
+ "printf",
+ ],
+ ignoreFiles: [
+ "scripts/.pnpmfile.cjs",
+ // Deliberately added prior to any component or business logic
+ // implementation
+ "src/state/ServiceInterruptionsViewModel.ts",
],
ignoreDependencies: [
// Used in CSS
"normalize.css",
// Used for its global type declarations
"@types/grecaptcha",
- // Because we use matrix-js-sdk as a Git dependency rather than consuming
- // the proper release artifacts, and also import directly from src/, we're
- // forced to re-install some of the types that it depends on even though
- // these look unused to Knip
- "@types/content-type",
"@types/sdp-transform",
- "@types/uuid",
- // We obviously use this, but if the package has been linked with yarn link,
+ // We obviously use this, but if the package has been linked with pnpm link,
// then Knip will flag it as a false positive
// https://github.com/webpro-nl/knip/issues/766
"@vector-im/compound-web",
"matrix-widget-api",
+ // Used by oxlint
+ "eslint-plugin-element-call",
+ "eslint-plugin-storybook",
],
ignoreExportsUsedInFile: true,
} satisfies KnipConfig;
diff --git a/locales/bg/app.json b/locales/bg/app.json
index 98bc4e690..c01e65c7a 100644
--- a/locales/bg/app.json
+++ b/locales/bg/app.json
@@ -4,27 +4,36 @@
},
"action": {
"close": "Затвори",
+ "copy_link": "Копиране на връзката",
"go": "Напред",
+ "invite": "Покана",
"no": "Не",
"register": "Регистрация",
"remove": "Премахни",
"sign_in": "Влез",
- "sign_out": "Излез"
+ "sign_out": "Излез",
+ "submit": "Израти"
},
+ "analytics_notice": "Когато участвате в тази бета, вие съгласявате се с събирането на анонимни данни, които използваме, за да подобрим продукта. Повечето информация за данните, които следим, можете да намерите в нашата <2>Политика за поверителност2> и нашата <6>Политика за бисквитки6>.",
"call_ended_view": {
"create_account_button": "Създай акаунт",
"create_account_prompt": "<0>Защо не настройте парола за да запазите акаунта си?0><1>Ще можете да запазите името и аватара си за бъдещи разговори1>",
- "not_now_button": "Не сега, върни се на началния екран"
+ "feedback_done": "<0>Благодаря за обратната връзка!0>",
+ "headline": "{{displayName}}, разговорът Ви приключи.",
+ "not_now_button": "Не сега, върни се на началния екран",
+ "survey_prompt": "Как мина?"
},
"common": {
"audio": "Звук",
"avatar": "Аватар",
"display_name": "Име/псевдоним",
+ "encrypted": "Шифровано",
"home": "Начало",
"loading": "Зареждане…",
"password": "Парола",
"profile": "Профил",
"settings": "Настройки",
+ "unencrypted": "Нешифровано",
"username": "Потребителско име",
"video": "Видео"
},
diff --git a/locales/cs/app.json b/locales/cs/app.json
index d5ffd7052..66f69c852 100644
--- a/locales/cs/app.json
+++ b/locales/cs/app.json
@@ -4,40 +4,169 @@
},
"action": {
"close": "Zavřít",
- "go": "Pokračovat",
+ "copy_link": "Kopírovat odkaz",
+ "edit": "Upravit",
+ "go": "Přejít",
+ "invite": "Pozvat",
+ "lower_hand": "Snížení ruky",
"no": "Ne",
+ "pick_reaction": "Vybrat reakci",
+ "raise_hand": "Zvednutí ruky",
"register": "Registrace",
"remove": "Odstranit",
+ "show_less": "Zobrazit méně",
+ "show_more": "Zobrazit více",
"sign_in": "Přihlásit se",
- "sign_out": "Odhlásit se"
+ "sign_out": "Odhlásit se",
+ "submit": "Odeslat",
+ "upload_file": "Nahrát soubor"
},
+ "analytics_notice": "Účastí v této beta verzi souhlasíte se shromažďováním anonymních údajů, které používáme ke zlepšování produktu. Více informací o tom, které údaje sledujeme, najdete v našich <2>Zásadách ochrany osobních údajů2> a <6>Zásadách používání souborů cookie6>.",
"call_ended_view": {
"create_account_button": "Vytvořit účet",
"create_account_prompt": "<0>Proč neskončit nastavením hesla, abyste mohli účet použít znovu?0><1>Budete si moci nechat své jméno a nastavit si avatar pro budoucí hovory 1>",
- "not_now_button": "Teď ne, vrátit se na domovskou obrazovku"
+ "feedback_done": "<0>Děkujeme za vaši zpětnou vazbu! 0>",
+ "feedback_prompt": "<0>Rádi si vyslechneme vaši zpětnou vazbu, abychom mohli vaše prostředí vylepšit. 0>",
+ "headline": "{{displayName}}, váš hovor skončil.",
+ "not_now_button": "Teď ne, vrátit se na domovskou obrazovku",
+ "reconnect_button": "Znovu připojit",
+ "survey_prompt": "Jak to probíhalo?"
},
+ "call_name": "Název hovoru",
"common": {
+ "analytics": "Analytika",
+ "audio": "Zvuk",
+ "avatar": "Avatar",
+ "back": "Zpět",
"display_name": "Zobrazované jméno",
+ "encrypted": "Šifrováno",
"home": "Domov",
"loading": "Načítání…",
+ "next": "Další",
+ "options": "Možnosti",
"password": "Heslo",
+ "preferences": "Předvolby",
"profile": "Profil",
+ "reaction": "Reakce",
+ "reactions": "Reakce",
+ "reconnecting": "Opětovné spojení...",
"settings": "Nastavení",
- "username": "Uživatelské jméno"
+ "unencrypted": "Nešifrováno",
+ "username": "Uživatelské jméno",
+ "video": "Video"
},
+ "developer_mode": {
+ "always_show_iphone_earpiece": "Zobrazit možnost sluchátek pro iPhone na všech platformách",
+ "crypto_version": "Kryptografická verze: {{version}}",
+ "custom_livekit_url": {
+ "current_url": "Aktuálně nastaveno na: ",
+ "from_config": "Aktuálně není nastaveno žádné přepsání. Používá se URL z well-known nebo konfigurace.",
+ "label": "Vlastní Livekit-url",
+ "reset": "Resetovat přepsání",
+ "save": "Uložit",
+ "saving": "Ukládání..."
+ },
+ "debug_tile_layout_label": "Ladění rozložení dlaždic",
+ "device_id": "ID zařízení: {{id}}",
+ "duplicate_tiles_label": "Počet dalších kopií dlaždic na účastníka",
+ "environment_variables": "Proměnné prostředí",
+ "hostname": "Název hostitele: {{hostname}}",
+ "livekit_server_info": "Informace o serveru LiveKit",
+ "livekit_sfu": "LiveKit SFU: {{url}}",
+ "matrixRTCMode": {
+ "Comptibility": {
+ "description": "Kompatibilní s domovskými servery, které nepodporují přilnavé události (ale všechny ostatní EC klienti jsou v0.17.0 nebo novější)",
+ "label": "Kompatibilita: stavové události a více SFU"
+ },
+ "Legacy": {
+ "description": "Kompatibilní se starými verzemi EC, které nepodporují multi SFU",
+ "label": "Zastaralé: stavové události a nejstarší členské SFU"
+ },
+ "Matrix_2_0": {
+ "description": "Kompatibilní pouze s domovskými servery podporujícími přilnavé události a všemi klienty EC v0.17.0 nebo novějšími.",
+ "label": "Matrix 2.0: přilnavé události a multi SFU"
+ },
+ "title": "Režim MatrixRTC"
+ },
+ "matrix_id": "Matrix ID: {{id}}",
+ "mute_all_audio": "Ztlumit všechny zvuky (účastníci, reakce, zvuky připojení)",
+ "show_connection_stats": "Zobrazit statistiky připojení",
+ "url_params": "Parametry URL"
+ },
+ "disconnected_banner": "Připojení k serveru bylo ztraceno.",
+ "error": {
+ "call_is_not_supported": "Volání není podporováno",
+ "call_not_found": "Volání nebylo nalezeno",
+ "call_not_found_description": "<0>Zdá se, že tento odkaz nepatří k žádnému existujícímu hovoru. Zkontrolujte, zda máte správný odkaz, nebo<2> vytvořte nový2>.0>",
+ "connection_lost": "Spojení ztraceno",
+ "connection_lost_description": "Hovor byl přerušen.",
+ "e2ee_unsupported": "Nekompatibilní prohlížeč",
+ "e2ee_unsupported_description": "Váš webový prohlížeč nepodporuje šifrované hovory. Mezi podporované prohlížeče patří Chrome, Safari a Firefox 117+.",
+ "failed_to_start_livekit": "Nepodařilo se navázat připojení k Livekitu",
+ "generic": "Něco se pokazilo.",
+ "generic_description": "Odeslání protokolů ladění nám pomůže vystopovat problém.",
+ "insufficient_capacity": "Nedostatečná kapacita",
+ "insufficient_capacity_description": "Server dosáhl své maximální kapacity a v tuto chvíli se nemůžete připojit k hovoru. Zkuste to později nebo se obraťte na správce serveru, pokud problém přetrvává.",
+ "matrix_rtc_transport_missing": "Server není nakonfigurován pro práci s {{brand}}. Obraťte se na správce serveru (Doména: {{domain}}, Kód chyby: {{ errorCode }}).",
+ "membership_manager": "Chyba Správce členství",
+ "membership_manager_description": "Správce členství musel být ukončen. To je způsobeno mnoha po sobě jdoucími neúspěšnými síťovými požadavky.",
+ "no_matrix_2_authorization_service": "Autorizační služba vašeho mediálního serveru (SFU) je zastaralá.",
+ "open_elsewhere": "Otevřeno na jiné kartě",
+ "open_elsewhere_description": "{{brand}} byl otevřen v jiné záložce. Pokud to nezní správně, zkuste stránku znovu načíst.",
+ "room_creation_restricted": "Nepodařilo se vytvořit hovor",
+ "room_creation_restricted_description": "Vytváření hovorů může být omezeno pouze na oprávněné uživatele. Zkuste to znovu později nebo se obraťte na správce serveru, pokud problém přetrvává.",
+ "unexpected_ec_error": "Došlo k neočekávané chybě (<0>Error Code:0> <1>{{ errorCode }}1>). Obraťte se prosím na správce serveru."
+ },
+ "group_call_loader": {
+ "banned_body": "Byl jste vykázán z místnosti.",
+ "banned_heading": "Zabanován",
+ "call_ended_body": "Byl jste vyřazen z hovoru.",
+ "call_ended_heading": "Hovor ukončen",
+ "knock_reject_body": "Vaše žádost o připojení byla zamítnuta.",
+ "knock_reject_heading": "Přístup odepřen",
+ "reason": "Důvod"
+ },
+ "handset": {
+ "overlay_back_button": "Zpět do režimu reproduktoru",
+ "overlay_description": "Funguje pouze při používání aplikace",
+ "overlay_title": "Režim sluchátka"
+ },
+ "hangup_button_label": "Ukončit hovor",
"header_label": "Domov Element Call",
+ "header_participants_label": "Účastníci",
+ "invite_modal": {
+ "link_copied_toast": "Odkaz zkopírován do schránky",
+ "title": "Pozvat na tento hovor"
+ },
"join_existing_call_modal": {
"join_button": "Ano, připojit se",
"text": "Tento hovor již existuje, chcete se připojit?",
"title": "Připojit se k existujícimu hovoru?"
},
+ "layout_grid_label": "Mřížka",
"layout_spotlight_label": "Soustředěný mód",
+ "layout_switch_label": "Rozvržení",
"lobby": {
- "join_button": "Připojit se k hovoru"
+ "ask_to_join": "Žádost o připojení k hovoru",
+ "join_as_guest": "Připojte se jako host",
+ "join_button": "Připojit se k hovoru",
+ "leave_button": "Zpět na poslední",
+ "waiting_for_invite": "Žádost odeslána! Čekáme na povolení k připojení..."
},
+ "log_in": "Přihlášení",
"logging_in": "Přihlašování se…",
"login_auth_links": "<0>Vytvořit účet0> Or <2>Jako host2>",
+ "login_auth_links_prompt": "Ještě nejste zaregistrováni?",
+ "login_subheading": "Chcete-li pokračovat na Element",
"login_title": "Přihlášení",
+ "microphone_off": "Mikrofon vypnutý",
+ "microphone_on": "Mikrofon zapnutý",
+ "mute_microphone_button_label": "Ztlumit mikrofon",
+ "participant_count_one": "{{count, number}}",
+ "participant_count_few": "{{count, number}}",
+ "participant_count_other": "{{count, number}}",
+ "qr_code": "QR kód",
+ "rageshake_button_error_caption": "Znovu zkusit odeslat protokoly",
"rageshake_request_modal": {
"body": "Jiný uživatel v tomto hovoru má problémy. Abychom mohli diagnostikovat problém, rádi bychom shromáždili protokoly ladění.",
"title": "Žádost o protokoly ladění"
@@ -45,22 +174,87 @@
"rageshake_send_logs": "Poslat ladící záznam",
"rageshake_sending": "Posílání…",
"rageshake_sending_logs": "Posílání ladícího záznamu…",
+ "rageshake_sent": "Díky!",
"recaptcha_dismissed": "Recaptcha byla zamítnuta",
"recaptcha_not_loaded": "Recaptcha se nenačetla",
+ "recaptcha_ssla_caption": "Tato stránka je chráněna ReCAPTCHA a platí zde <2>Ochrana osobních údajů2> a <6>Podmínky služby6> od Google.<9>9>Kliknutím na \"Registrovat\" souhlasíte s naší <12>Licenční smlouvou na software a služby (SSLA)12>",
"register": {
"passwords_must_match": "Hesla se musí shodovat",
"registering": "Registrování…"
},
"register_auth_links": "<0>Už máte účet?0><1><0>Přihlásit se0> Or <2>Jako host2>1>",
"register_confirm_password_label": "Potvrdit heslo",
+ "register_heading": "Vytvořte si účet",
"return_home_button": "Vrátit se na domácí obrazovku",
+ "room_auth_view_continue_button": "Pokračovat",
+ "room_auth_view_ssla_caption": "Kliknutím na „Připojit se k hovoru nyní“ souhlasíte s naší <2>Licenční smlouvou o softwaru a službách (SSLA) 2>",
"screenshare_button_label": "Sdílet obrazovku",
"settings": {
+ "audio_tab": {
+ "effect_volume_description": "Upravit hlasitost přehrávání reakcí a efektů zvednutých rukou.",
+ "effect_volume_label": "Hlasitost zvukového efektu"
+ },
+ "background_blur_header": "Pozadí",
+ "background_blur_label": "Rozostřit pozadí videa",
+ "blur_not_supported_by_browser": "(Toto zařízení nepodporuje rozostření pozadí.)",
"developer_tab_title": "Vývojář",
+ "devices": {
+ "camera": "Fotoaparát",
+ "camera_numbered": "Fotoaparát {{n}}",
+ "change_device_button": "Změnit zvukové zařízení",
+ "default": "Výchozí",
+ "default_named": "Výchozí <2> ({{name}}) 2>",
+ "handset": "Sluchátko",
+ "loudspeaker": "Reproduktor",
+ "microphone": "Mikrofon",
+ "microphone_numbered": "Mikrofon {{n}}",
+ "speaker": "Reproduktor",
+ "speaker_numbered": "Reproduktor {{n}}"
+ },
+ "feedback_tab_body": "Pokud se potýkáte s problémy nebo byste nám jen chtěli poskytnout zpětnou vazbu, pošlete nám prosím krátký popis níže.",
+ "feedback_tab_description_label": "Vaše zpětná vazba",
"feedback_tab_h4": "Dát feedback",
- "feedback_tab_send_logs_label": "Zahrnout ladící záznamy"
+ "feedback_tab_send_logs_label": "Zahrnout ladící záznamy",
+ "feedback_tab_thank_you": "Děkujeme, obdrželi jsme vaši zpětnou vazbu!",
+ "feedback_tab_title": "Zpětná vazba",
+ "opt_in_description": "<0>0><1>1>Souhlas můžete odvolat zrušením zaškrtnutí tohoto políčka. Pokud jste právě v hovoru, toto nastavení se projeví po jeho skončení.",
+ "preferences_tab": {
+ "developer_mode_label": "Vývojářský režim",
+ "developer_mode_label_description": "Povolte vývojářský režim a zobrazte kartu nastavení vývojáře.",
+ "introduction": "Zde můžete nakonfigurovat další možnosti pro lepší zážitek.",
+ "reactions_play_sound_description": "Přehrát zvukový efekt, když někdo odešle reakci do hovoru.",
+ "reactions_play_sound_label": "Přehrát reakční zvuky",
+ "reactions_show_description": "Zobrazit animaci, když někdo pošle reakci.",
+ "reactions_show_label": "Zobrazit reakce",
+ "show_hand_raised_timer_description": "Zobrazit časovač, když účastník zvedne ruku",
+ "show_hand_raised_timer_label": "Zobrazit dobu trvání zvednutí ruky"
+ }
},
+ "star_rating_input_label_one": "{{count}} hvězdička",
+ "star_rating_input_label_few": "{{count}} hvězdičky",
+ "star_rating_input_label_other": "{{count}} hvězdiček",
+ "start_new_call": "Zahájit nový hovor",
+ "start_video_button_label": "Spustit video",
+ "stop_screenshare_button_label": "Sdílení obrazovky",
+ "stop_video_button_label": "Zastavit video",
+ "submitting": "Odeslání...",
+ "switch_camera": "Přepnout kameru",
"unauthenticated_view_body": "Nejste registrovaní? <2>Vytvořit účet2>",
"unauthenticated_view_login_button": "Přihlásit se ke svému účtu",
- "version": "Verze: {{version}}"
+ "unauthenticated_view_ssla_caption": "Kliknutím na tlačítko \"Přejít\" souhlasíte s naší <2>Licenční smlouvou na software a služby (SSLA)2>",
+ "unmute_microphone_button_label": "Zrušit ztlumení mikrofonu",
+ "version": "{{productName}}verze: {{version}}",
+ "video_tile": {
+ "always_show": "Vždy zobrazit",
+ "call_ended": "Hovor ukončen",
+ "calling": "Volání…",
+ "camera_starting": "Načítání videa...",
+ "collapse": "Sbalit",
+ "expand": "Rozbalit",
+ "mute_for_me": "Pro mě ztlumit",
+ "muted_for_me": "Pro mě ztlumené",
+ "screen_share_volume": "Hlasitost sdílení obrazovky",
+ "volume": "Hlasitost",
+ "waiting_for_media": "Čekání na média..."
+ }
}
diff --git a/locales/da/app.json b/locales/da/app.json
new file mode 100644
index 000000000..319732332
--- /dev/null
+++ b/locales/da/app.json
@@ -0,0 +1,226 @@
+{
+ "a11y": {
+ "user_menu": "Brugermenu"
+ },
+ "action": {
+ "close": "Luk",
+ "copy_link": "Kopiér link",
+ "edit": "Rediger",
+ "go": "Gå",
+ "invite": "Invitér",
+ "lower_hand": "Sænk hånd",
+ "no": "Nej",
+ "pick_reaction": "Vælg reaktion",
+ "raise_hand": "Ræk hånden op",
+ "register": "Registrér",
+ "remove": "Fjern",
+ "show_less": "Vis mindre",
+ "show_more": "Vis mere",
+ "sign_in": "Log ind",
+ "sign_out": "Log ud",
+ "submit": "Indsend",
+ "upload_file": "Upload fil"
+ },
+ "analytics_notice": "Ved at deltage i denne beta giver du samtykke til indsamling af anonyme data, som vi bruger til at forbedre produktet. Du kan finde flere oplysninger om, hvilke data vi sporer, i vores <2>fortrolighedspolitik2> og vores <6>cookiepolitik6>.",
+ "call_ended_view": {
+ "create_account_button": "Opret konto",
+ "create_account_prompt": "<0>Hvorfor ikke afslutte med at oprette en adgangskode for at beholde din konto? 0><1>Du kan beholde dit navn og indstille en avatar til brug ved fremtidige opkald 1>",
+ "feedback_done": "<0>Tak for din feedback! 0>",
+ "feedback_prompt": "<0>Vi vil meget gerne høre din feedback, så vi kan forbedre din oplevelse.0>",
+ "headline": "{{displayName}}, dit opkald er afsluttet.",
+ "not_now_button": "Ikke nu, vend tilbage til startskærmen",
+ "reconnect_button": "Tilslut igen",
+ "survey_prompt": "Hvordan gik det?"
+ },
+ "call_name": "Navn på opkald",
+ "common": {
+ "analytics": "Analyse-værktøj",
+ "audio": "Lyd",
+ "avatar": "Avatar",
+ "back": "Tilbage",
+ "display_name": "Vist navn",
+ "encrypted": "Krypteret",
+ "home": "Hjem",
+ "loading": "Indlæser...",
+ "next": "Næste",
+ "options": "Valgmuligheder",
+ "password": "Adgangskode",
+ "preferences": "Foretrukne",
+ "profile": "Profil",
+ "reaction": "Reaktion",
+ "reactions": "Reaktioner",
+ "reconnecting": "Genopretter forbindelse…",
+ "settings": "Indstillinger",
+ "unencrypted": "Ikke krypteret",
+ "username": "Brugernavn",
+ "video": "Video"
+ },
+ "developer_mode": {
+ "always_show_iphone_earpiece": "Vis mulighed for iPhone-høretelefon på alle platforme",
+ "crypto_version": "Krypto-version: {{version}}",
+ "debug_tile_layout_label": "Fejlfinding af fliselayout",
+ "device_id": "Enheds-id: {{id}}",
+ "duplicate_tiles_label": "Antal ekstra flisekopier pr. deltager",
+ "environment_variables": "Miljøvariabler",
+ "hostname": "Værtsnavn: {{hostname}}",
+ "livekit_server_info": "LiveKit Serverinfo",
+ "livekit_sfu": "LiveKit SFU: {{url}}",
+ "matrix_id": "Matrix ID: {{id}}",
+ "mute_all_audio": "Slå al lyd fra (deltagere, reaktioner, deltagelseslyde)",
+ "show_connection_stats": "Vis forbindelsesstatistik",
+ "url_params": "URL-parametre"
+ },
+ "disconnected_banner": "Forbindelsen til serveren er gået tabt.",
+ "error": {
+ "call_is_not_supported": "Opkald er ikke understøttet",
+ "call_not_found": "Opkald ikke fundet",
+ "call_not_found_description": "<0>Det link ser ikke ud til at høre til et eksisterende opkald. Tjek at du har det rigtige link, eller <2> opret et nyt2>.0>",
+ "connection_lost": "Forbindelsen gik tabt",
+ "connection_lost_description": "Du blev afbrudt fra opkaldet.",
+ "e2ee_unsupported": "Inkompatibel browser",
+ "e2ee_unsupported_description": "Din webbrowser understøtter ikke krypterede opkald. Understøttede browsere inkluderer Chrome, Safari og Firefox 117+.",
+ "generic": "Noget gik galt",
+ "generic_description": "Indsendelse af fejlfindingslogfiler hjælper os med at spore problemet.",
+ "insufficient_capacity": "Utilstrækkelig kapacitet",
+ "insufficient_capacity_description": "Serveren har nået sin maksimale kapacitet, og du kan ikke deltage i opkaldet på dette tidspunkt. Prøv igen senere, eller kontakt din serveradministrator, hvis problemet fortsætter.",
+ "open_elsewhere": "Åbnet i en anden fane",
+ "open_elsewhere_description": "{{brand}} er blevet åbnet i en anden fane. Hvis det ikke lyder rigtigt, kan du prøve at genindlæse siden.",
+ "room_creation_restricted": "Kunne ikke oprette opkald",
+ "room_creation_restricted_description": "Oprettelse af opkald er muligvis begrænset til autoriserede brugere. Prøv igen senere, eller kontakt din serveradministrator, hvis problemet fortsætter.",
+ "unexpected_ec_error": "Der opstod en uventet fejl (<0>Fejlkode:0> <1> {{ errorCode }}1>). Kontakt venligst din serveradministrator."
+ },
+ "group_call_loader": {
+ "banned_body": "Du er blevet spærret fra rummet.",
+ "banned_heading": "Spærret",
+ "call_ended_body": "Du er blevet fjernet fra opkaldet.",
+ "call_ended_heading": "Opkaldet afsluttet",
+ "knock_reject_body": "Din anmodning om at deltage blev afvist.",
+ "knock_reject_heading": "Adgang nægtet",
+ "reason": "Årsag: {{reason}}"
+ },
+ "handset": {
+ "overlay_back_button": "Tilbage til højttalertilstand",
+ "overlay_description": "Virker kun, når du bruger appen",
+ "overlay_title": "Telefon-højtaler"
+ },
+ "hangup_button_label": "Afslut opkald",
+ "header_label": "Element Ring hjem",
+ "header_participants_label": "Deltagere",
+ "invite_modal": {
+ "link_copied_toast": "Link kopieret til udklipsholder",
+ "title": "Inviter til dette opkald"
+ },
+ "join_existing_call_modal": {
+ "join_button": "Ja, deltag i opkald",
+ "text": "Dette opkald findes allerede, vil du være med?",
+ "title": "Deltag i eksisterende opkald?"
+ },
+ "layout_grid_label": "Gitter",
+ "layout_spotlight_label": "Spotlys",
+ "lobby": {
+ "ask_to_join": "Anmod om at deltage i opkaldet",
+ "join_as_guest": "Deltag som gæst",
+ "join_button": "Deltag i opkald",
+ "leave_button": "Tilbage til seneste",
+ "waiting_for_invite": "Anmodning sendt! Venter på tilladelse til at deltage..."
+ },
+ "log_in": "Log ind",
+ "logging_in": "Logger ind...",
+ "login_auth_links": "<0>Opret en konto 0> eller <2> få adgang som gæst 2>",
+ "login_auth_links_prompt": "Ikke registreret endnu?",
+ "login_subheading": "For at fortsætte til Element",
+ "login_title": "Login",
+ "microphone_off": "Mikrofon slukket",
+ "microphone_on": "Mikrofon tændt",
+ "mute_microphone_button_label": "Slå mikrofonen fra",
+ "participant_count_one": "{{count, number}}",
+ "participant_count_other": "{{count, number}}",
+ "qr_code": "QR-kode",
+ "rageshake_button_error_caption": "Prøv at sende logfiler igen",
+ "rageshake_request_modal": {
+ "body": "En anden bruger på dette opkald har et problem. For bedre at kunne diagnosticere sådanne problemer, vil vi gerne indsamle en fejlfindingslog.",
+ "title": "Anmodning om fejlfindingslogfil"
+ },
+ "rageshake_send_logs": "Send fejlfindingslogfiler",
+ "rageshake_sending": "Sender...",
+ "rageshake_sending_logs": "Afsendelse af fejlfindingslogfiler...",
+ "rageshake_sent": "Tak!",
+ "recaptcha_dismissed": "Recaptcha afvist",
+ "recaptcha_not_loaded": "Recaptcha ikke indlæst",
+ "recaptcha_ssla_caption": "Dette websted er beskyttet af ReCAPTCHA og Googles <2>Privatlivspolitik2> og <6>Servicevilkår6> gælder.<9>9>Ved at klikke på \"Registrer\" accepterer du vores <12>Software og Services Licensaftale (SSLA)12>",
+ "register": {
+ "passwords_must_match": "Adgangskoderne skal være identiske",
+ "registering": "Registrering..."
+ },
+ "register_auth_links": "<0>Har du allerede en konto? 0><1><0>Log ind 0> eller <2> få adgang som gæst 2> 1>",
+ "register_confirm_password_label": "Bekræft adgangskode",
+ "register_heading": "Opret din konto",
+ "return_home_button": "Vend tilbage til startskærmen",
+ "room_auth_view_continue_button": "Fortsæt",
+ "room_auth_view_ssla_caption": "Ved at klikke på „Deltag i opkald nu“ accepterer du vores <2> Software og Services Licensaftale (SSLA) 2>",
+ "screenshare_button_label": "Del din skærm",
+ "settings": {
+ "audio_tab": {
+ "effect_volume_description": "Juster den lydstyrke som reaktioner og håndsoprækninger afspilles med.",
+ "effect_volume_label": "Lydstyrke for lydeffekter"
+ },
+ "background_blur_header": "Baggrund",
+ "background_blur_label": "Gør videoens baggrund sløret",
+ "blur_not_supported_by_browser": "(Baggrundssløring understøttes ikke af denne enhed.)",
+ "developer_tab_title": "Udvikler",
+ "devices": {
+ "camera": "Kamera",
+ "camera_numbered": "Kamera {{n}}",
+ "change_device_button": "Skift lydenhed",
+ "default": "Standard",
+ "default_named": "Standard <2>({{name}})2>",
+ "handset": "Telefon",
+ "loudspeaker": "Højttaler",
+ "microphone": "Mikrofon",
+ "microphone_numbered": "Mikrofon {{n}}",
+ "speaker": "Højttaler",
+ "speaker_numbered": "Højttaler {{n}}"
+ },
+ "feedback_tab_body": "Hvis du oplever problemer eller bare gerne vil give feedback, kan du sende os en kort beskrivelse herunder.",
+ "feedback_tab_description_label": "Din tilbagemelding",
+ "feedback_tab_h4": "Indsend feedback",
+ "feedback_tab_send_logs_label": "Medtag fejlfindingslogfiler",
+ "feedback_tab_thank_you": "Tak, vi har modtaget din feedback!",
+ "feedback_tab_title": "Feedback",
+ "opt_in_description": "<0>0><1>1>Du kan trække dit samtykke tilbage ved at fjerne markeringen i dette felt. Hvis du i øjeblikket er i gang med et opkald, træder denne indstilling i kraft ved afslutningen af opkaldet.",
+ "preferences_tab": {
+ "developer_mode_label": "Udviklertilstand",
+ "developer_mode_label_description": "Aktivér udviklertilstand og vis fanen udviklerindstillinger.",
+ "introduction": "Her kan du konfigurere ekstra muligheder for en forbedret oplevelse.",
+ "reactions_play_sound_description": "Afspil en lydeffekt, når nogen sender en reaktion i et opkald.",
+ "reactions_play_sound_label": "Afspil reaktionslyde",
+ "reactions_show_description": "Vis en animation, når nogen sender en reaktion.",
+ "reactions_show_label": "Vis reaktioner",
+ "show_hand_raised_timer_description": "Vis en timer, når en deltager rækker hånden",
+ "show_hand_raised_timer_label": "Vis varighed af håndsoprækning"
+ }
+ },
+ "star_rating_input_label_one": "{{count}} stjerne",
+ "star_rating_input_label_other": "{{count}} stjerner",
+ "start_new_call": "Start nyt opkald",
+ "start_video_button_label": "Start video",
+ "stop_screenshare_button_label": "Skærmen bliver delt",
+ "stop_video_button_label": "Stop video",
+ "submitting": "Indsender...",
+ "switch_camera": "Skift kamera",
+ "unauthenticated_view_body": "Ikke registreret endnu? <2>Opret en konto 2>",
+ "unauthenticated_view_login_button": "Log ind på din konto",
+ "unauthenticated_view_ssla_caption": "Ved at klikke på \"Start\" accepterer du vores <2>Software og Services Licensaftale (SSLA)2>",
+ "unmute_microphone_button_label": "Slå mikrofonen til",
+ "version": "{{productName}} version: {{version}}",
+ "video_tile": {
+ "always_show": "Vis altid",
+ "camera_starting": "Indlæser video",
+ "collapse": "Fold sammen",
+ "expand": "Udvid",
+ "mute_for_me": "Slå lyden fra for mig",
+ "muted_for_me": "Dæmpet for mig",
+ "volume": "Lydstyrke",
+ "waiting_for_media": "Venter på medier..."
+ }
+}
diff --git a/locales/de/app.json b/locales/de/app.json
index 6dccde055..32ee930cd 100644
--- a/locales/de/app.json
+++ b/locales/de/app.json
@@ -22,12 +22,6 @@
"upload_file": "Datei hochladen"
},
"analytics_notice": "Mit der Teilnahme an der Beta akzeptierst du die Sammlung von anonymen Daten, die wir zur Verbesserung des Produkts verwenden. Weitere Informationen zu den von uns erhobenen Daten findest du in unserer <2>Datenschutzerklärung2> und unseren <6>Cookie-Richtlinien6>.",
- "app_selection_modal": {
- "continue_in_browser": "Weiter im Browser",
- "open_in_app": "In der App öffnen",
- "text": "Bereit, beizutreten?",
- "title": "App auswählen"
- },
"call_ended_view": {
"create_account_button": "Konto erstellen",
"create_account_prompt": "<0>Warum vergibst du nicht abschließend ein Passwort, um dein Konto zu erhalten?0><1>Du kannst deinen Namen behalten und ein Profilbild für zukünftige Anrufe festlegen.1>",
@@ -55,13 +49,23 @@
"profile": "Profil",
"reaction": "Reaktion",
"reactions": "Reaktionen",
+ "reconnecting": "Verbindung wird wiederhergestellt...",
"settings": "Einstellungen",
"unencrypted": "Nicht verschlüsselt",
"username": "Benutzername",
"video": "Video"
},
"developer_mode": {
+ "always_show_iphone_earpiece": "iPhone-Ohrhörer-Option auf allen Plattformen anzeigen",
"crypto_version": "Krypto-Version: {{version}}",
+ "custom_livekit_url": {
+ "current_url": "Derzeit eingestellt auf: ",
+ "from_config": "Derzeit ist keine spezielle (benutzerdefinierte) URL eingestellt. Daher wird automatisch die URL verwendet, die entweder via „.well-known“ oder in der Webbrowser-Konfiguration („config“) hinterlegt ist.",
+ "label": "Benutzerdefinierte Livekit-URL",
+ "reset": "Zurücksetzen der benutzerdefinierten URL",
+ "save": "Speichern",
+ "saving": "Speichern..."
+ },
"debug_tile_layout_label": "Kachel-Layout debuggen",
"device_id": "Geräte-ID: {{id}}",
"duplicate_tiles_label": "Anzahl zusätzlicher Kachelkopien pro Teilnehmer",
@@ -69,28 +73,48 @@
"hostname": "Hostname: {{hostname}}",
"livekit_server_info": "LiveKit-Server Informationen",
"livekit_sfu": "LiveKit SFU: {{url}}",
+ "matrixRTCMode": {
+ "Comptibility": {
+ "description": "Kompatibel mit Homeservern ohne Sticky Events Support, wobei alle beteiligten Element Call Clients v0.17.0 oder neuer sein müssen.",
+ "label": "Kompatibilität: State Events & Multi-SFU"
+ },
+ "Legacy": {
+ "description": "Kompatibel mit älteren Versionen von Element Call, welche Multi-SFU nicht unterstützen",
+ "label": "Legacy: State Events und \"Oldest Membership\" SFU"
+ },
+ "Matrix_2_0": {
+ "description": "Nur mit Homeservern kompatibel, die Sticky Events unterstützen, wobei alle beteiligten Element Call Clients Version v0.17.0 oder neuer sein müssen.",
+ "label": "Matrix 2.0: Sticky Events und Multi-SFU"
+ },
+ "title": "MatrixRTC Modus"
+ },
"matrix_id": "Matrix-ID: {{id}}",
+ "mute_all_audio": "Stummschalten aller Audiosignale (Teilnehmer, Reaktionen, Beitrittsgeräusche)",
"show_connection_stats": "Verbindungsstatistiken anzeigen",
- "show_non_member_tiles": "Kacheln für Nicht-Mitgliedermedien anzeigen",
- "url_params": "URL-Parameter",
- "use_new_membership_manager": "Neuen MembershipManager verwenden"
+ "url_params": "URL-Parameter"
},
"disconnected_banner": "Die Verbindung zum Server wurde getrennt.",
"error": {
"call_is_not_supported": "Anrufe werden nicht unterstützt",
"call_not_found": "Anruf nicht gefunden",
- "call_not_found_description": "<0>Dieser Link scheint zu keinem bestehenden Anruf zu gehören. Vergewissern Sie sich, dass Sie den richtigen Link haben, oder <1> erstellen Sie einen neuen1>. 0>",
+ "call_not_found_description": "<0>Dieser Link scheint zu keinem bestehenden Anruf zu gehören. Es sollte geprüft werden, ob der Link korrekt ist, oder <2>ein neuer erstellt werden2>.0>",
"connection_lost": "Verbindung verloren",
"connection_lost_description": "Ihre Verbindung zum Anruf wurde unterbrochen.",
"e2ee_unsupported": "Inkompatibler Browser",
"e2ee_unsupported_description": "Ihr Webbrowser unterstützt keine verschlüsselten Anrufe. Zu den unterstützten Browsern gehören Chrome, Safari und Firefox 117+.",
+ "failed_to_start_livekit": "LiveKit-Verbindung konnte nicht hergestellt werden",
"generic": "Etwas ist schief gelaufen",
"generic_description": "Durch das Senden von Debugprotokollen können wir das Problem leichter eingrenzen.",
"insufficient_capacity": "Unzureichende Kapazität",
"insufficient_capacity_description": "Der Server hat seine maximale Kapazität erreicht, daher ist ein Beitritt zum Anruf derzeit nicht möglich. Bitte später erneut versuchen oder den Serveradministrator kontaktieren, falls das Problem weiterhin besteht.",
- "matrix_rtc_focus_missing": "Der Server ist nicht für die Verwendung mit {{brand}} konfiguriert. Bitte den Serveradministrator kontaktieren (Domain: {{domain}}, Fehlercode: {{ errorCode }}).",
+ "matrix_rtc_transport_missing": "Der Server ist nicht für die Verwendung mit {{brand}} konfiguriert. Bitte den Server Admin kontaktieren (Domain: {{domain}}, Fehlercode: {{ errorCode }}).",
+ "membership_manager": "Fehler im MatrixRTC Mitgliedschaftsmanager",
+ "membership_manager_description": "Der MatrixRTC Mitgliedschaftsmanager wurde unerwartet aufgrund fehlgeschlagener Netzwerkanfragen beendet.",
+ "no_matrix_2_authorization_service": "Der Autorisierungsdienst des Medien Servers (SFU) ist veraltet.",
"open_elsewhere": "In einem anderen Tab geöffnet",
- "open_elsewhere_description": "{{brand}} wurde in einem anderen Tab geöffnet. Wenn das nicht richtig klingt, versuchen Sie, die Seite neu zu laden.",
+ "open_elsewhere_description": "{{brand}} wurde in einem anderen Tab geöffnet. Wenn das nicht richtig klingt, versuche, die Seite neu zu laden.",
+ "room_creation_restricted": "Anruf konnte nicht erstellt werden",
+ "room_creation_restricted_description": "Das Erstellen von Anrufen ist nur für autorisierte Nutzer möglich. Versuche es später erneut oder kontaktiere deinen Serveradministrator, falls das Problem weiterhin besteht.",
"unexpected_ec_error": "Ein unerwarteter Fehler ist aufgetreten (<0>Fehlercode: 0> <1>{{ errorCode }}1>). Bitte den Serveradministrator kontaktieren."
},
"group_call_loader": {
@@ -102,6 +126,11 @@
"knock_reject_heading": "Zugriff verweigert",
"reason": "Grund: {{reason}}"
},
+ "handset": {
+ "overlay_back_button": "Zurück zum Lautsprechermodus",
+ "overlay_description": "Nur wenn App im Vordergrund nutzbar",
+ "overlay_title": "Ohrhörer Modus"
+ },
"hangup_button_label": "Anruf beenden",
"header_label": "Element Call-Startseite",
"header_participants_label": "Teilnehmende",
@@ -163,12 +192,18 @@
"effect_volume_description": "Lautstärke anpassen, mit der Reaktionen und Handmeldungen abgespielt werden.",
"effect_volume_label": "Lautstärke der Soundeffekte"
},
+ "background_blur_header": "Hintergrund",
+ "background_blur_label": "Unschärfeeffekt für den Hintergrund aktivieren",
+ "blur_not_supported_by_browser": "(Hintergrundunschärfe wird von diesem Gerät nicht unterstützt.)",
"developer_tab_title": "Entwickler",
"devices": {
"camera": "Kamera",
"camera_numbered": "Kamera {{n}}",
+ "change_device_button": "Audiogerät wechseln",
"default": "Standard",
"default_named": "Standard<2> ({{name}} )2>",
+ "handset": "Ohrhörer",
+ "loudspeaker": "Lautsprecher",
"microphone": "Mikrofon",
"microphone_numbered": "Mikrofon{{n}}",
"speaker": "Lautsprecher",
@@ -183,9 +218,9 @@
"opt_in_description": "<0>0><1>1>Du kannst deine Zustimmung durch Abwählen dieses Kästchens zurückziehen. Falls du dich aktuell in einem Anruf befindest, wird diese Einstellung nach dem Ende des Anrufs wirksam.",
"preferences_tab": {
"developer_mode_label": "Entwickler-Modus",
- "developer_mode_label_description": "Aktivieren Sie den Entwicklermodus und zeigen Sie die Registerkarte mit den Entwicklereinstellungen an.",
+ "developer_mode_label_description": "Aktiviere den Entwicklermodus und zeige Entwicklereinstellungen an.",
"introduction": "Hier können zusätzliche Optionen für individuelle Anforderungen eingestellt werden.",
- "reactions_play_sound_description": "Spielen Sie einen Soundeffekt ab, wenn jemand eine Reaktion auf einen Anruf sendet.",
+ "reactions_play_sound_description": "Spiele einen Soundeffekt ab, wenn jemand eine Reaktion auf einen Anruf sendet.",
"reactions_play_sound_label": "Reaktionstöne abspielen",
"reactions_show_description": "Zeige eine Animation, wenn jemand eine Reaktion sendet.",
"reactions_show_label": "Reaktionen anzeigen",
@@ -208,12 +243,14 @@
"version": "{{productName}} Version: {{version}}",
"video_tile": {
"always_show": "Immer anzeigen",
+ "call_ended": "Anruf beendet",
+ "calling": "Anruf…",
"camera_starting": "Video wird geladen...",
- "change_fit_contain": "An Fenster anpassen",
"collapse": "Minimieren",
"expand": "Erweitern",
"mute_for_me": "Für mich stumm schalten",
"muted_for_me": "Für mich stumm geschaltet",
+ "screen_share_volume": "Lautstärke der Bildschirmfreigabe",
"volume": "Lautstärke",
"waiting_for_media": "Warten auf Medien..."
}
diff --git a/locales/el/app.json b/locales/el/app.json
index 6068a1ff5..d9fb33f94 100644
--- a/locales/el/app.json
+++ b/locales/el/app.json
@@ -4,15 +4,24 @@
},
"action": {
"close": "Κλείσιμο",
+ "copy_link": "Αντιγραφή συνδέσμου",
+ "edit": "Επεξεργασία",
"go": "Μετάβαση",
+ "invite": "Πρόσκληση",
+ "lower_hand": "Κατεβάστε το χέρι",
"no": "Όχι",
+ "pick_reaction": "Επιλέξτε αντίδραση",
+ "raise_hand": "Σηκώστε το χέρι",
"register": "Εγγραφή",
"remove": "Αφαίρεση",
+ "show_less": "Εμφάνιση λιγότερων",
+ "show_more": "Εμφάνιση περισσότερων",
"sign_in": "Σύνδεση",
"sign_out": "Αποσύνδεση",
- "submit": "Υποβολή"
+ "submit": "Υποβολή",
+ "upload_file": "Μεταφόρτωση αρχείου"
},
- "analytics_notice": "Συμμετέχοντας σε αυτή τη δοκιμαστική έκδοση, συναινείτε στη συλλογή ανώνυμων δεδομένων, τα οποία χρησιμοποιούμε για τη βελτίωση του προϊόντος. Μπορείτε να βρείτε περισσότερες πληροφορίες σχετικά με το ποια δεδομένα καταγράφουμε στην <2>Πολιτική απορρήτου2> και στην <5>Πολιτική cookies5>.",
+ "analytics_notice": "Συμμετέχοντας σε αυτή τη δοκιμαστική έκδοση, συναινείτε στη συλλογή ανώνυμων δεδομένων, τα οποία χρησιμοποιούμε για τη βελτίωση του προϊόντος. Μπορείτε να βρείτε περισσότερες πληροφορίες σχετικά με το ποια δεδομένα καταγράφουμε στην <2>Πολιτική απορρήτου2> και στην <6>Πολιτική cookies6>.",
"call_ended_view": {
"create_account_button": "Δημιουργία λογαριασμού",
"create_account_prompt": "<0>Γιατί να μην ολοκληρώσετε με τη δημιουργία ενός κωδικού πρόσβασης για τη διατήρηση του λογαριασμού σας;0><1>Θα μπορείτε να διατηρήσετε το όνομά σας και να ορίσετε ένα avatar για χρήση σε μελλοντικές κλήσεις.1>",
@@ -20,19 +29,44 @@
"feedback_prompt": "<0>Θα θέλαμε να ακούσουμε τα σχόλιά σας ώστε να βελτιώσουμε την εμπειρία σας.0>",
"headline": "{{displayName}}, η κλήση σας τερματίστηκε.",
"not_now_button": "Όχι τώρα, επιστροφή στην αρχική οθόνη",
+ "reconnect_button": "Επανασύνδεση",
"survey_prompt": "Πώς σας φάνηκε;"
},
+ "call_name": "Όνομα κλήσης",
"common": {
+ "analytics": "Δεδομένα ανάλυσης",
"audio": "Ήχος",
+ "avatar": "Εικόνα Προφίλ",
+ "back": "Πίσω",
"display_name": "Εμφανιζόμενο όνομα",
+ "encrypted": "Κρυπτογραφημένο",
"home": "Αρχική",
"loading": "Φόρτωση…",
+ "next": "Επόμενο",
+ "options": "Επιλογές",
"password": "Κωδικός",
+ "preferences": "Προτιμήσεις",
"profile": "Προφίλ",
+ "reaction": "Αντίδραση",
+ "reactions": "Αντιδράσεις",
"settings": "Ρυθμίσεις",
+ "unencrypted": "Μη κρυπτογραφημένο",
"username": "Όνομα χρήστη",
"video": "Βίντεο"
},
+ "developer_mode": {
+ "crypto_version": "Έκδοση κρυπτογράφησης: {{version}}",
+ "debug_tile_layout_label": "Διάταξη πλακιδίων εντοπισμού σφαλμάτων",
+ "device_id": "Αναγνωριστικό συσκευής: {{id}}",
+ "duplicate_tiles_label": "Αριθμός επιπλέον αντιγράφων πλακιδίων ανά συμμετέχοντα",
+ "environment_variables": "Μεταβλητές περιβάλλοντος",
+ "hostname": "Όνομα κεντρικού υπολογιστή: {{hostname}}",
+ "livekit_server_info": "Πληροφορίες διακομιστή LiveKit",
+ "livekit_sfu": "LiveKit SFU: {{url}}",
+ "matrix_id": "Αναγνωριστικό Matrix: {{id}}",
+ "show_connection_stats": "Εμφάνιση στατιστικών σύνδεσης",
+ "url_params": "Παράμετροι URL"
+ },
"header_label": "Element Κεντρική Οθόνη Κλήσεων",
"join_existing_call_modal": {
"join_button": "Ναι, συμμετοχή στην κλήση",
diff --git a/locales/en/app.json b/locales/en/app.json
index 51beef1b0..3ff956a6a 100644
--- a/locales/en/app.json
+++ b/locales/en/app.json
@@ -3,6 +3,7 @@
"user_menu": "User menu"
},
"action": {
+ "blur_background": "Blur background",
"close": "Close",
"copy_link": "Copy link",
"edit": "Edit",
@@ -22,12 +23,6 @@
"upload_file": "Upload file"
},
"analytics_notice": "By participating in this beta, you consent to the collection of anonymous data, which we use to improve the product. You can find more information about which data we track in our <2>Privacy Policy2> and our <6>Cookie Policy6>.",
- "app_selection_modal": {
- "continue_in_browser": "Continue in browser",
- "open_in_app": "Open in the app",
- "text": "Ready to join?",
- "title": "Select app"
- },
"call_ended_view": {
"create_account_button": "Create account",
"create_account_prompt": "<0>Why not finish by setting up a password to keep your account?0><1>You'll be able to keep your name and set an avatar for use on future calls1>",
@@ -55,13 +50,23 @@
"profile": "Profile",
"reaction": "Reaction",
"reactions": "Reactions",
+ "reconnecting": "Reconnecting…",
"settings": "Settings",
"unencrypted": "Not encrypted",
"username": "Username",
"video": "Video"
},
"developer_mode": {
+ "always_show_iphone_earpiece": "Show iPhone earpiece option on all platforms",
"crypto_version": "Crypto version: {{version}}",
+ "custom_livekit_url": {
+ "current_url": "Currently set to: ",
+ "from_config": "Currently, no overwrite is set. Url from well-known or config is used.",
+ "label": "Custom Livekit-url",
+ "reset": "Reset overwrite",
+ "save": "Save",
+ "saving": "Saving..."
+ },
"debug_tile_layout_label": "Debug tile layout",
"device_id": "Device ID: {{id}}",
"duplicate_tiles_label": "Number of additional tile copies per participant",
@@ -70,27 +75,53 @@
"livekit_server_info": "LiveKit Server Info",
"livekit_sfu": "LiveKit SFU: {{url}}",
"matrix_id": "Matrix ID: {{id}}",
+ "matrixRTCMode": {
+ "Comptibility": {
+ "description": "Compatible with homeservers that do not support sticky events (but all other EC clients are v0.17.0 or later)",
+ "label": "Compatibility: state events & multi SFU"
+ },
+ "Legacy": {
+ "description": "Compatible with old versions of EC that do not support multi SFU",
+ "label": "Legacy: state events & oldest membership SFU"
+ },
+ "Matrix_2_0": {
+ "description": "Compatible only with homservers supporting sticky events and all EC clients v0.17.0 or later",
+ "label": "Matrix 2.0: sticky events & multi SFU"
+ },
+ "title": "MatrixRTC mode"
+ },
+ "mute_all_audio": "Mute all audio (participants, reactions, join sounds)",
"show_connection_stats": "Show connection statistics",
- "show_non_member_tiles": "Show tiles for non-member media",
- "url_params": "URL parameters",
- "use_new_membership_manager": "Use the new implementation of the call MembershipManager"
+ "url_params": "URL parameters"
},
"disconnected_banner": "Connectivity to the server has been lost.",
"error": {
"call_is_not_supported": "Call is not supported",
"call_not_found": "Call not found",
- "call_not_found_description": "<0>That link doesn't appear to belong to any existing call. Check that you have the right link, or <1>create a new one1>.0>",
+ "call_not_found_description": "<0>That link doesn't appear to belong to any existing call. Check that you have the right link, or <2>create a new one2>.0>",
"connection_lost": "Connection lost",
"connection_lost_description": "You were disconnected from the call.",
"e2ee_unsupported": "Incompatible browser",
"e2ee_unsupported_description": "Your web browser does not support encrypted calls. Supported browsers include Chrome, Safari, and Firefox 117+.",
+ "failed_to_start_livekit": "Failed to start Livekit connection",
"generic": "Something went wrong",
"generic_description": "Submitting debug logs will help us track down the problem.",
"insufficient_capacity": "Insufficient capacity",
"insufficient_capacity_description": "The server has reached its maximum capacity and you cannot join the call at this time. Try again later, or contact your server admin if the problem persists.",
- "matrix_rtc_focus_missing": "The server is not configured to work with {{brand}}. Please contact your server admin (Domain: {{domain}}, Error Code: {{ errorCode }}).",
+ "livekit_connection_error": "Failed to connect to Livekit server",
+ "livekit_connection_error_description": "An error occurred while connecting to the Livekit server (<1>Reason:1> <2>{{ reason }}2>).",
+ "matrix_rtc_transport_missing": "The server is not configured to work with {{brand}}. Please contact your server admin (Domain: {{domain}}, Error Code: {{ errorCode }}).",
+ "membership_manager": "Membership Manager Error",
+ "membership_manager_description": "The Membership Manager had to shut down. This is caused by many consecutive failed network requests.",
+ "no_matrix_2_authorization_service": "The authorization service for your media server (SFU) is out of date.",
"open_elsewhere": "Opened in another tab",
"open_elsewhere_description": "{{brand}} has been opened in another tab. If that doesn't sound right, try reloading the page.",
+ "peer_connection_timeout": "Connection timeout",
+ "peer_connection_timeout_description": "Connection to the media server timed out. Try switching to a different network or disabling your VPN. If the problem persists, see our <0>troubleshooting guide0> or contact your server administrator.",
+ "room_creation_restricted": "Failed to create call",
+ "room_creation_restricted_description": "Call creation might be restricted to authorized users only. Try again later, or contact your server admin if the problem persists.",
+ "sticky_events_required": "Homeserver does not support Matrix 2.0 calls",
+ "sticky_events_required_description": "This deployment is configured to use Matrix 2.0 call mode, but the homeserver does not advertise support for sticky events (MSC4354). Ask your server admin to upgrade, or switch the deployment to a compatible mode.",
"unexpected_ec_error": "An unexpected error occurred (<0>Error Code:0> <1>{{ errorCode }}1>). Please contact your server admin."
},
"group_call_loader": {
@@ -102,6 +133,11 @@
"knock_reject_heading": "Access denied",
"reason": "Reason: {{reason}}"
},
+ "handset": {
+ "overlay_back_button": "Back to Speaker Mode",
+ "overlay_description": "Only works while using app",
+ "overlay_title": "Handset Mode"
+ },
"hangup_button_label": "End call",
"header_label": "Element Call Home",
"header_participants_label": "Participants",
@@ -116,6 +152,7 @@
},
"layout_grid_label": "Grid",
"layout_spotlight_label": "Spotlight",
+ "layout_switch_label": "Layout",
"lobby": {
"ask_to_join": "Request to join call",
"join_as_guest": "Join as guest",
@@ -163,12 +200,19 @@
"effect_volume_description": "Adjust the volume at which reactions and hand raised effects play.",
"effect_volume_label": "Sound effect volume"
},
+ "background_blur_header": "Background",
+ "background_blur_label": "Blur the background of the video",
+ "blur_not_supported_by_browser": "(Background blur is not supported by this device.)",
"developer_tab_title": "Developer",
"devices": {
+ "activating": "Activating…",
"camera": "Camera",
"camera_numbered": "Camera {{n}}",
+ "change_device_button": "Change audio device",
"default": "Default",
"default_named": "Default <2>({{name}})2>",
+ "handset": "Handset",
+ "loudspeaker": "Loudspeaker",
"microphone": "Microphone",
"microphone_numbered": "Microphone {{n}}",
"speaker": "Speaker",
@@ -201,6 +245,7 @@
"stop_video_button_label": "Stop video",
"submitting": "Submitting…",
"switch_camera": "Switch camera",
+ "technical_details": "Technical details",
"unauthenticated_view_body": "Not registered yet? <2>Create an account2>",
"unauthenticated_view_login_button": "Login to your account",
"unauthenticated_view_ssla_caption": "By clicking \"Go\", you agree to our <2>Software and Services License Agreement (SSLA)2>",
@@ -208,12 +253,14 @@
"version": "{{productName}} version: {{version}}",
"video_tile": {
"always_show": "Always show",
+ "call_ended": "Call ended",
+ "calling": "Calling…",
"camera_starting": "Video loading...",
- "change_fit_contain": "Fit to frame",
"collapse": "Collapse",
"expand": "Expand",
"mute_for_me": "Mute for me",
"muted_for_me": "Muted for me",
+ "screen_share_volume": "Screen share volume",
"volume": "Volume",
"waiting_for_media": "Waiting for media..."
}
diff --git a/locales/es/app.json b/locales/es/app.json
index 246e89216..d92dd2af5 100644
--- a/locales/es/app.json
+++ b/locales/es/app.json
@@ -4,12 +4,22 @@
},
"action": {
"close": "Cerrar",
+ "copy_link": "Copiar vínculo",
+ "edit": "Editar",
"go": "Comenzar",
+ "invite": "Invitar",
+ "lower_hand": "Bajar mano",
+ "no": "No",
+ "pick_reaction": "Elige reacción",
+ "raise_hand": "Levantar la mano",
"register": "Registrarse",
"remove": "Eliminar",
+ "show_less": "Mostrar menos",
+ "show_more": "Mostrar más",
"sign_in": "Iniciar sesión",
"sign_out": "Cerrar sesión",
- "submit": "Enviar"
+ "submit": "Enviar",
+ "upload_file": "Cargar archivo"
},
"analytics_notice": "Al participar en esta beta, consientes a la recogida de datos anónimos, los cuales usaremos para mejorar el producto. Puedes encontrar más información sobre que datos recogemos en nuestra <2>Política de privacidad2> y en nuestra <5>Política sobre Cookies5>.",
"call_ended_view": {
@@ -19,30 +29,142 @@
"feedback_prompt": "<0>Nos encantaría conocer tu opinión para que podamos mejorar tu experiencia0>",
"headline": "{{displayName}}, tu llamada ha finalizado.",
"not_now_button": "Ahora no, volver a la pantalla de inicio",
+ "reconnect_button": "Reconnectar",
"survey_prompt": "¿Cómo ha ido?"
},
+ "call_name": "Nombre de la llamada",
"common": {
+ "analytics": "Analíticas",
+ "audio": "Audio",
+ "avatar": "Avatar",
+ "back": "Regresar",
"display_name": "Nombre a mostrar",
+ "encrypted": "Cifrado",
"home": "Inicio",
"loading": "Cargando…",
+ "next": "Próximo",
+ "options": "Opciones",
"password": "Contraseña",
+ "preferences": "Preferencias",
"profile": "Perfil",
+ "reaction": "Reacción",
+ "reactions": "Reacciones",
+ "reconnecting": "Reconectando…",
"settings": "Ajustes",
- "username": "Nombre de usuario"
+ "unencrypted": "Sin cifrar",
+ "username": "Nombre de usuario",
+ "video": "Vídeo"
},
+ "developer_mode": {
+ "always_show_iphone_earpiece": "Mostrar la opción de auricular del iPhone en todas las plataformas",
+ "crypto_version": "Versión criptográfica: {{version}}",
+ "custom_livekit_url": {
+ "current_url": "Actualmente configurado: ",
+ "from_config": "Actualmente, no hay ninguna sobrescritura configurada. Se utiliza la URL de well-known o config.",
+ "label": "URL personalizada de Livekit",
+ "reset": "Restablecer sobrescritura",
+ "save": "Guardar",
+ "saving": "Guardando..."
+ },
+ "debug_tile_layout_label": "Depurar diseño de mosaicos",
+ "device_id": "ID del dispositivo: {{id}}",
+ "duplicate_tiles_label": "Número de copias adicionales de fichas por participante",
+ "environment_variables": "Variables de entorno",
+ "hostname": "Nombre del Host: {{hostname}}",
+ "livekit_server_info": "Información servidor LiveKit",
+ "livekit_sfu": "LiveKit SFU:{{url}}",
+ "matrixRTCMode": {
+ "Comptibility": {
+ "description": "Compatible con servidores privados que no admiten eventos persistentes (pero todos los demás clientes de EC son v0.17.0 o posteriores)",
+ "label": "Compatibilidad: eventos de estado y SFU múltiple"
+ },
+ "Legacy": {
+ "description": "Compatible con versiones antiguas de EC que no admiten SFU múltiple.",
+ "label": "Legado: eventos estatales y membresía más antigua SFU"
+ },
+ "Matrix_2_0": {
+ "description": "Compatible solo con servidores domésticos que admiten eventos persistentes y todos los clientes EC v0.17.0 o posterior",
+ "label": "Matrix 2.0: eventos persistentes y SFU múltiple"
+ },
+ "title": "Modo MatrixRTC"
+ },
+ "matrix_id": "Matrix ID: {{id}}",
+ "mute_all_audio": "Silenciar todo el audio (participantes, reacciones, sonidos de unirse)",
+ "show_connection_stats": "Mostrar estadísticas de conexión",
+ "url_params": "Parámetros URL"
+ },
+ "disconnected_banner": "Se perdió la conectividad con el servidor.",
+ "error": {
+ "call_is_not_supported": "La llamada no es compatible",
+ "call_not_found": "Llamada no encontrada",
+ "call_not_found_description": "<0>Ese enlace no parece pertenecer a ninguna llamada existente. Comprueba que tienes el enlace correcto o <2>crea uno nuevo2>.0>",
+ "connection_lost": "Conexión interrumpida",
+ "connection_lost_description": "Se cortadó la llamada.",
+ "e2ee_unsupported": "Navegador incompatible",
+ "e2ee_unsupported_description": "Tu navegador web no admite llamadas cifradas. Los navegadores compatibles son Chrome, Safari y Firefox 117+.",
+ "failed_to_start_livekit": "No se ha podido iniciar la conexión Livekit.",
+ "generic": "Algo salió mal",
+ "generic_description": "Enviar registros de depuración nos ayudará a localizar el problema.",
+ "insufficient_capacity": "Capacidad insuficiente",
+ "insufficient_capacity_description": "El servidor ha alcanzado su capacidad máxima y no puedes unirte a la llamada en el momento. Inténtalo más tarde o contacta el administrador del servidor si el problema persiste.",
+ "matrix_rtc_transport_missing": "El servidor no está configurado para trabajar con{{brand}} . Por favor, póngase en contacto con el administrador de su servidor (Dominio:{{domain}} Código de error:{{ errorCode }} ).",
+ "membership_manager": "Error del administrador de miembros",
+ "membership_manager_description": "El Administrador de Membresías tuvo que cerrarse debido a numerosas solicitudes de red fallidas consecutivas.",
+ "no_matrix_2_authorization_service": "El servicio de autorización de su servidor multimedia (SFU) está desactualizado.",
+ "open_elsewhere": "Abierto en otra pestaña",
+ "open_elsewhere_description": "{{brand}}Se ha abierto en otra pestaña. Si no suena bien, intenta recargar la página.",
+ "room_creation_restricted": "Falló crear llamada",
+ "room_creation_restricted_description": "La creación de llamadas podría estar restringida solo a usuarios autorizados. Inténtelo de nuevo más tarde o póngase en contacto con el administrador del servidor si el problema persiste.",
+ "unexpected_ec_error": "Se produjo un error inesperado (<0> Código de error:0><1>{{ errorCode }}1> ) Por favor, contacta el administrador de su servidor."
+ },
+ "group_call_loader": {
+ "banned_body": "Has sido expulsado de la sala.",
+ "banned_heading": "Bloqueado",
+ "call_ended_body": "Te han retirado de la llamada.",
+ "call_ended_heading": "Llamada finalizada",
+ "knock_reject_body": "Su solicitud para unirse fue rechazada.",
+ "knock_reject_heading": "Acceso denegado",
+ "reason": "Razón:{{reason}}"
+ },
+ "handset": {
+ "overlay_back_button": "Volver al modo altavoz",
+ "overlay_description": "Solo funciona mientras se utiliza la aplicación.",
+ "overlay_title": "Modo teléfono"
+ },
+ "hangup_button_label": "Finalizar llamada",
"header_label": "Inicio de Element Call",
+ "header_participants_label": "Participantes",
+ "invite_modal": {
+ "link_copied_toast": "Enlace copiado al portapapeles",
+ "title": "Invita a esta llamada"
+ },
"join_existing_call_modal": {
"join_button": "Si, unirse a la llamada",
"text": "Esta llamada ya existe, ¿te gustaría unirte?",
"title": "¿Unirse a llamada existente?"
},
+ "layout_grid_label": "Grilla",
"layout_spotlight_label": "Foco",
"lobby": {
- "join_button": "Unirse a la llamada"
+ "ask_to_join": "Solicitar unirse a la llamada",
+ "join_as_guest": "Unirse como invitado",
+ "join_button": "Unirse a la llamada",
+ "leave_button": "Volver a recientes",
+ "waiting_for_invite": "¡Solicitud enviada! Esperando permiso para unir..."
},
+ "log_in": "Iniciar sesión",
"logging_in": "Iniciando sesión…",
"login_auth_links": "<0>Crear una cuenta0> o <2>Acceder como invitado2>",
+ "login_auth_links_prompt": "¿Aún no se ha registrado?",
+ "login_subheading": "Continuar a Element",
"login_title": "Iniciar sesión",
+ "microphone_off": "Micrófono desactivado",
+ "microphone_on": "Micrófono activado",
+ "mute_microphone_button_label": "Silenciar micrófono",
+ "participant_count_one": "{{count, number}}",
+ "participant_count_other": "{{count, number}}",
+ "qr_code": "CÓDIGO QR",
+ "rageshake_button_error_caption": "Reintentar enviar registros",
"rageshake_request_modal": {
"body": "Otro usuario en esta llamada está teniendo problemas. Para diagnosticar estos problemas nos gustaría recopilar un registro de depuración.",
"title": "Petición de registros de depuración"
@@ -50,30 +172,83 @@
"rageshake_send_logs": "Enviar registros de depuración",
"rageshake_sending": "Enviando…",
"rageshake_sending_logs": "Enviando registros de depuración…",
+ "rageshake_sent": "¡Gracias!",
"recaptcha_dismissed": "Recaptcha cancelado",
"recaptcha_not_loaded": "No se ha cargado el Recaptcha",
+ "recaptcha_ssla_caption": "Este sitio está protegido por ReCAPTCHA y se aplican las <2> política de privacidad2> y<6> Condiciones de servicio6>de Google aplican.<9>9> Al hacer clic en \"Registrarse\", se acepta nuestros <12> Acuerdo de licencia de software y servicios (SSLA)12>",
"register": {
"passwords_must_match": "Las contraseñas deben coincidir",
"registering": "Registrando…"
},
"register_auth_links": "<0>¿Ya tienes una cuenta?0><1><0>Iniciar sesión0> o <2>Acceder como invitado2>1>",
"register_confirm_password_label": "Confirmar contraseña",
+ "register_heading": "Crear tu cuenta",
"return_home_button": "Volver a la pantalla de inicio",
+ "room_auth_view_continue_button": "Continuar",
+ "room_auth_view_ssla_caption": "Al hacer clic en \"Unirse a la llamada ahora\", acepta nuestros<2> Acuerdo de licencia de software y servicios (SSLA)2>",
"screenshare_button_label": "Compartir pantalla",
"settings": {
+ "audio_tab": {
+ "effect_volume_description": "Ajusta el volumen al que se reproducen las reacciones y los efectos de subir la mano.",
+ "effect_volume_label": "Volumen de efectos de sonido"
+ },
+ "background_blur_header": "Fondo",
+ "background_blur_label": "Desenfocar el fondo del vídeo",
+ "blur_not_supported_by_browser": "(El desenfoque de fondo no esta sopportado de este dispositivo).",
"developer_tab_title": "Desarrollador",
+ "devices": {
+ "camera": "Cámara",
+ "camera_numbered": "Cámara {{n}}",
+ "change_device_button": "Cambiar dispositivo de audio",
+ "default": "Por defecto",
+ "default_named": "Por defecto<2> ({{name}})2>",
+ "handset": "Dispositivo",
+ "loudspeaker": "Altavoz",
+ "microphone": "Micrófono",
+ "microphone_numbered": "Micrófono {{n}}",
+ "speaker": "Altavoz",
+ "speaker_numbered": "Altavoz {{n}}"
+ },
"feedback_tab_body": "Si tienes algún problema o simplemente quieres darnos tu opinión, por favor envíanos una breve descripción.",
"feedback_tab_description_label": "Tus comentarios",
"feedback_tab_h4": "Enviar comentarios",
"feedback_tab_send_logs_label": "Incluir registros de depuración",
"feedback_tab_thank_you": "¡Gracias, hemos recibido tus comentarios!",
"feedback_tab_title": "Danos tu opinión",
- "opt_in_description": "<0>0><1>1>Puedes retirar tu consentimiento desmarcando esta casilla. Si estás en una llamada, este ajuste se aplicará al final de esta."
+ "opt_in_description": "<0>0><1>1>Puedes retirar tu consentimiento desmarcando esta casilla. Si estás en una llamada, este ajuste se aplicará al final de esta.",
+ "preferences_tab": {
+ "developer_mode_label": "Modo desarrollador",
+ "developer_mode_label_description": "Activa el modo de desarrollador y muestra la pestaña de configuración de desarrollador.",
+ "introduction": "Aquí puedes configurar opciones adicionales para una experiencia mejorada.",
+ "reactions_play_sound_description": "Reproduce un sonido cuando alguien envíe una reacción en una llamada.",
+ "reactions_play_sound_label": "Reproduce sonidos de reacción",
+ "reactions_show_description": "Muestra una animación cuando alguien envíe una reacción.",
+ "reactions_show_label": "Mostrar reacciones",
+ "show_hand_raised_timer_description": "Mostrar un temporizador cuando un participante levante la mano",
+ "show_hand_raised_timer_label": "Mostrar la duración de la subida de la mano"
+ }
},
"star_rating_input_label_one": "{{count}} estrella",
"star_rating_input_label_other": "{{count}} estrellas",
+ "start_new_call": "Iniciar nueva llamada",
+ "start_video_button_label": "Iniciar vídeo",
+ "stop_screenshare_button_label": "Compartiendo pantalla",
+ "stop_video_button_label": "Parar vídeo",
"submitting": "Enviando…",
+ "switch_camera": "Cambiar cámara",
"unauthenticated_view_body": "¿No estás registrado todavía? <2>Crear una cuenta2>",
"unauthenticated_view_login_button": "Iniciar sesión en tu cuenta",
- "version": "Versión: {{version}}"
+ "unauthenticated_view_ssla_caption": "Al hacer clic en «Continuar», aceptas nuestro Acuerdo de licencia de software y servicios (SSLA) de <2>.2>",
+ "unmute_microphone_button_label": "Activar micrófono",
+ "version": "Versión: {{version}}",
+ "video_tile": {
+ "always_show": "Mostrar siempre",
+ "camera_starting": "Cargando video...",
+ "collapse": "Colapsar",
+ "expand": "Expandir",
+ "mute_for_me": "Silenciar para mí",
+ "muted_for_me": "Silenciado para mí",
+ "volume": "Volumen",
+ "waiting_for_media": "Esperando medios..."
+ }
}
diff --git a/locales/et/app.json b/locales/et/app.json
index 169d1195b..591bf8772 100644
--- a/locales/et/app.json
+++ b/locales/et/app.json
@@ -3,24 +3,26 @@
"user_menu": "Kasutajamenüü"
},
"action": {
+ "blur_background": "Hägusta tausta",
"close": "Sulge",
"copy_link": "Kopeeri link",
+ "edit": "Muuda",
"go": "Jätka",
"invite": "Kutsu",
+ "lower_hand": "Lase käsi alla",
"no": "Ei",
+ "pick_reaction": "Vali reaktsioon",
+ "raise_hand": "Anna käega märku",
"register": "Registreeru",
"remove": "Eemalda",
+ "show_less": "Näita vähem",
+ "show_more": "Näita rohkem",
"sign_in": "Logi sisse",
"sign_out": "Logi välja",
- "submit": "Saada"
- },
- "analytics_notice": "Nõustudes selle beetaversiooni kasutamisega sa nõustud ka toote arendamiseks kasutatavate anonüümsete andmete kogumisega. Täpsemat teavet kogutavate andmete kohta leiad meie <2>Privaatsuspoliitikast2> ja meie <5>Küpsiste kasutamise reeglitest5>.",
- "app_selection_modal": {
- "continue_in_browser": "Jätka veebibrauseris",
- "open_in_app": "Ava rakenduses",
- "text": "Oled valmis liituma?",
- "title": "Vali rakendus"
+ "submit": "Saada",
+ "upload_file": "Laadi fail üles"
},
+ "analytics_notice": "Nõustudes selle beetaversiooni kasutamisega, sa nõustud ka toote arendamiseks kasutatavate anonüümsete andmete kogumisega. Täpsemat teavet kogutavate andmete kohta leiad meie <2>Privaatsuspoliitikast2> ja meie <6>Küpsiste kasutamise reeglitest6>.",
"call_ended_view": {
"create_account_button": "Loo konto",
"create_account_prompt": "<0>Kas soovid salasõna seadistada ja sellega oma kasutajakonto alles jätta?0><1>Nii saad säilitada oma nime ja määrata profiilipildi, mida saad kasutada tulevastes kõnedes1>",
@@ -33,20 +35,111 @@
},
"call_name": "Kõne nimi",
"common": {
+ "analytics": "Analüütika",
"audio": "Heli",
"avatar": "Tunnuspilt",
+ "back": "Tagasi",
"display_name": "Kuvatav nimi",
"encrypted": "Krüptitud",
- "home": "Avavaatesse",
+ "home": "Kodu",
"loading": "Laadimine …",
+ "next": "Edasi",
+ "options": "Valikud",
"password": "Salasõna",
+ "preferences": "Eelistused",
"profile": "Profiil",
+ "reaction": "Reaktsioon",
+ "reactions": "Reageerimised",
+ "reconnecting": "Ühendan uuesti…",
"settings": "Seadistused",
"unencrypted": "Krüptimata",
- "username": "Kasutajanimi"
+ "username": "Kasutajanimi",
+ "video": "Video"
+ },
+ "developer_mode": {
+ "always_show_iphone_earpiece": "Näita iPhone'i kuulari valikut kõikidel platvormidel",
+ "crypto_version": "Krüptoteekide versioon: {{version}}",
+ "custom_livekit_url": {
+ "current_url": "Hetkel määratud olekuks: ",
+ "from_config": "Hetkel on ülekirjutamine määratlemata. Kasutusel on võrguaadress „well-known“-failist või seadistustest.",
+ "label": "Sisu määratud Livekit-url",
+ "reset": "Lähtesta ülekirjutamine",
+ "save": "Salvesta",
+ "saving": "Salvestan..."
+ },
+ "debug_tile_layout_label": "Meediapaanide paigutus",
+ "device_id": "Seadme tunnus: {{id}}",
+ "duplicate_tiles_label": "Täiendavaid vaadete koopiaid osaleja kohta",
+ "environment_variables": "Keskkonnamuutujad",
+ "hostname": "Hosti nimi: {{hostname}}",
+ "livekit_server_info": "LiveKiti serveri teave",
+ "livekit_sfu": "LiveKiti meediaedastusserver (SFU): {{url}}",
+ "matrixRTCMode": {
+ "Comptibility": {
+ "description": "Ühildub koduserveritega, mis ei toeta määratud kestusega sündmuseid (kuid kõik teised EC kliendid on v0.17.0 või hilisemad)",
+ "label": "Ühilduvus: olekusündmused ja mitu meediaedastusserverit (SFU)"
+ },
+ "Legacy": {
+ "description": "Ühildub EC vanemate versioonidega, millel puudub mitme meediaedastusserveri (SFU) tugi",
+ "label": "Vana lahendus: oleku üritused ja vanim meediaedastusserver (SFU)"
+ },
+ "Matrix_2_0": {
+ "description": "Ühildub ainult määratud kestusega sündmuseid toetavate koduserveritega ja kõigi EC-klientidega alates versioonist 0.17.0",
+ "label": "Matrix 2.0: määratud kestusega sündmused ja mitu meediaedastusserverit (SFU)"
+ },
+ "title": "MatrixRTC režiim"
+ },
+ "matrix_id": "Matrixi kasutajatunnus: {{id}}",
+ "mute_all_audio": "Summuta kõik helid (osalejad, regeerimised, liitumise helid)",
+ "show_connection_stats": "Näita ühenduse statistikat",
+ "url_params": "Võrguaadressi parameetrid"
},
"disconnected_banner": "Võrguühendus serveriga on katkenud.",
+ "error": {
+ "call_is_not_supported": "Kõne pole toetatud",
+ "call_not_found": "Kõnet ei leidu",
+ "call_not_found_description": "<0>See link ei tundu olema seotud ühegi olemasoleva kõnega. Kontrolli, et sul on õige link või <2>loo uus2>.0>",
+ "connection_lost": "Ühendus on katkenud",
+ "connection_lost_description": "Sinu ühendus selle kõnega on katkenud.",
+ "e2ee_unsupported": "Mitteühilduv brauser",
+ "e2ee_unsupported_description": "Sinu veebibrauser ei toeta krüptitud kõnesid. Toimivad veebibrauserid on Chrome, Safari, ja Firefox 117+.",
+ "failed_to_start_livekit": "Ei õnnestunud käivitada Livekiti ühendust",
+ "generic": "Midagi läks valesti",
+ "generic_description": "Silumis- ja vealogide saatmine võib aidata meid vea põhjuseni jõuda.",
+ "insufficient_capacity": "Mittepiisav jõudlus",
+ "insufficient_capacity_description": "Serveri jõudluse ülempiir on hetkel ületatud ja sa ei saa hetkel selle kõnega liituda. Proovi hiljem uuesti või kui probleem kestab kauem, siis võta ühendust serveri haldajaga.",
+ "livekit_connection_error": "Livekiti serveriga ühendamine ei õnnestunud",
+ "livekit_connection_error_description": "Livekiti serveriga ühendamisel tekkis viga (<1>Põhjus: 1> <2>{{ reason }}2>).",
+ "matrix_rtc_transport_missing": "See server pole seadistatud töötama rakendusega {{brand}}. Palun võta ühendust serveri halduriga (domeen: {{domain}}, veakood: {{ errorCode }}).",
+ "membership_manager": "Viga liikmelisuse haldamisel",
+ "membership_manager_description": "Liikmelisuse haldur pidi oma töö lõpetama. Selle põhjuseks olid paljud järjestikused ebaõnnestunud võrgupäringud.",
+ "no_matrix_2_authorization_service": "Sinu meediaedastusserveri (SFU) autoriseerimisteenus on aegunud.",
+ "open_elsewhere": "Avatud teisel vahekaardil",
+ "open_elsewhere_description": "{{brand}} on avatud teisel vahekaardil. Kui see ei tundu olema õige, proovi selle lehe uuesti laadimist.",
+ "peer_connection_timeout": "Ühendus aegus",
+ "peer_connection_timeout_description": "Meediaserveriga ühenduspäring aegus. Proovi kasutada muud võrku või keelata VPN-i kasutamine. Kui probleem püsib, vaata meie <0> veaotsingu juhendit0> või võta ühendust oma serveri peakasutajaga.",
+ "room_creation_restricted": "Kõne loomine ei õnnestunud",
+ "room_creation_restricted_description": "Kõne loomine võib olla lubatud ainult volitatud kasutajatele. Proovi hiljem uuesti või probleemi püsimisel võta ühendust oma serveri haldajaga.",
+ "sticky_events_required": "Koduserver ei toeta Matrix 2.0 kõnesid",
+ "sticky_events_required_description": "See server on seadistatud kasutama Matrix 2.0 kõnerežiimi, kuid koduserver ei teata, et tal selleks vajalike sündmuste (MSC4354) tugi. Palu serveri peakasutajal see uuendada või kasuta koduserveris ühilduvat režiimi.",
+ "unexpected_ec_error": "Tekkis ootamatu viga (<0>Veakood:0> <1>{{ errorCode }}1>). Palun võta ühendust serveri haldajaga."
+ },
+ "group_call_loader": {
+ "banned_body": "Sa oled saanud selles jututoas suhtluskeelu",
+ "banned_heading": "Suhtluskeeld",
+ "call_ended_body": "Sa oled sellest kõnest eemaldatud.",
+ "call_ended_heading": "Kõne lõppes",
+ "knock_reject_body": "Jututoa liikmed ei nõustunud sinu liitumispalvega.",
+ "knock_reject_heading": "Liitumine pole lubatud",
+ "reason": "Põhjus"
+ },
+ "handset": {
+ "overlay_back_button": "Tagasi esineja vaatesse",
+ "overlay_description": "See toimib vaid rakenduse kasutamise ajal",
+ "overlay_title": "Telefonirežiim"
+ },
"hangup_button_label": "Lõpeta kõne",
+ "header_label": "Avaleht: Element Call",
"header_participants_label": "Osalejad",
"invite_modal": {
"link_copied_toast": "Link on kopeeritud lõikelauale",
@@ -59,16 +152,26 @@
},
"layout_grid_label": "Ruudustik",
"layout_spotlight_label": "Rambivalgus",
+ "layout_switch_label": "Paigutus",
"lobby": {
- "join_button": "Kõnega liitumine",
- "leave_button": "Tagasi hiljutiste kõnede juurde"
+ "ask_to_join": "Küsi võimalust liituda kõnega",
+ "join_as_guest": "Liitu külalisena",
+ "join_button": "Liitu kõnega",
+ "leave_button": "Tagasi hiljutiste kõnede juurde",
+ "waiting_for_invite": "Päring on saadetud"
},
- "logging_in": "Sisselogimine …",
- "login_auth_links": "<0>Loo konto0> Või <2>Sisene külalisena2>",
+ "log_in": "Logi sisse",
+ "logging_in": "Logime sisse…",
+ "login_auth_links": "<0>Loo konto0> või <2>Sisene külalisena2>",
+ "login_auth_links_prompt": "Sa pole veel registreerunud?",
+ "login_subheading": "Jätka rakenduses Element",
"login_title": "Sisselogimine",
"microphone_off": "Mikrofon ei tööta",
"microphone_on": "Mikrofon töötab",
"mute_microphone_button_label": "Summuta mikrofon",
+ "participant_count_one": "{{count, number}}",
+ "participant_count_other": "{{count, number}}",
+ "qr_code": "QR-kood",
"rageshake_button_error_caption": "Proovi uuesti logisid saata",
"rageshake_request_modal": {
"body": "Ühel teisel selles kõnes osalejal on lahenduse kasutamisel tekkinud probleem ning selle põhjuse leidmiseks me sooviksime koguda silumislogisid.",
@@ -80,33 +183,85 @@
"rageshake_sent": "Tänud!",
"recaptcha_dismissed": "Robotilõks on vahele jäetud",
"recaptcha_not_loaded": "Robotilõks pole laetud",
+ "recaptcha_ssla_caption": "Selle saidi kaitsmiseks on kasutusel ReCAPTCHA ning rakenduvad Google'i <2>Privaatusreeglid2> ja <6>Kasutustingimused6>.<9>9>Klõpsides „Registreeru“ nõustud sa meie <12>Tarkvara ja teenuste litsentseerimise lepinguga (Software and Services License Agreement - SSLA)12>",
"register": {
"passwords_must_match": "Salasõnad ei klapi",
"registering": "Registreerimine…"
},
- "register_auth_links": "<0>On sul juba konto?0><1><0>Logi sisse0> Või <2>Logi sisse külalisena2>1>",
+ "register_auth_links": "<0>On sul juba konto?0><1><0>Logi sisse0> või <2>Logi sisse külalisena2>1>",
"register_confirm_password_label": "Kinnita salasõna",
+ "register_heading": "Loo omale konto",
"return_home_button": "Tagasi avalehele",
+ "room_auth_view_continue_button": "Jätka",
+ "room_auth_view_ssla_caption": "Klõpsides „Liitu kõnega“ nõustud sa meie <2>Tarkvara ja teenuste litsentseerimise lepinguga (Software and Services License Agreement - SSLA)2>",
"screenshare_button_label": "Jaga ekraani",
"settings": {
+ "audio_tab": {
+ "effect_volume_description": "Häälesta helivaljust, mida kasutatakse käe tõstmisel ja regeerimisel",
+ "effect_volume_label": "Efektide helivajlus"
+ },
+ "background_blur_header": "Taust",
+ "background_blur_label": "Hägusta video taust",
+ "blur_not_supported_by_browser": "(Tausta hägustamine pole selles seadmes toetatud.)",
"developer_tab_title": "Arendaja",
+ "devices": {
+ "activating": "Aktiveerin…",
+ "camera": "Kaamera",
+ "camera_numbered": "Kaamera {{n}}",
+ "change_device_button": "Muuda heliseadet",
+ "default": "Vaikimisi",
+ "default_named": "Vaikimisi <2>({{name}})2>",
+ "handset": "Telefon",
+ "loudspeaker": "Valjuhääldi",
+ "microphone": "Mikrofon",
+ "microphone_numbered": "Mikrofon {{n}}",
+ "speaker": "Kõlar",
+ "speaker_numbered": "Kõlar {{n}}"
+ },
"feedback_tab_body": "Kui selle rakenduse kasutamisel tekib sul probleeme või lihtsalt soovid oma arvamust avaldada, siis palun täida alljärgnev lühike kirjeldus.",
"feedback_tab_description_label": "Sinu tagasiside",
"feedback_tab_h4": "Jaga tagasisidet",
"feedback_tab_send_logs_label": "Lisa veatuvastuslogid",
"feedback_tab_thank_you": "Tänud, me oleme sinu tagasiside kätte saanud!",
"feedback_tab_title": "Tagasiside",
- "opt_in_description": "<0>0><1>1>Sa võid selle valiku eelmaldamisega alati oma nõusoleku tagasi võtta. Kui sul parasjagu on kõne pooleli, siis seadistuste muudatus jõustub pärast kõne lõppu."
+ "opt_in_description": "<0>0><1>1>Sa võid selle valiku eelmaldamisega alati oma nõusoleku tagasi võtta. Kui sul parasjagu on kõne pooleli, siis seadistuste muudatus jõustub pärast kõne lõppu.",
+ "preferences_tab": {
+ "developer_mode_label": "Arendajate režiim",
+ "developer_mode_label_description": "Kasuta arendusrežiimi ja näita asjakohaseid seadistusi.",
+ "introduction": "Parema kasutuskogemuse nimel saad siin seadistada täiendavaid eelistusi.",
+ "reactions_play_sound_description": "Kui keegi lisab käimasolevale kõnele reaktsiooni, siis täienda seda heliefektiga.",
+ "reactions_play_sound_label": "Lisa reageerimistele heli",
+ "reactions_show_description": "Näita reageerimisi",
+ "reactions_show_label": "Kui keegi reageerib, siis näita seda animatsioonina",
+ "show_hand_raised_timer_description": "Kui osaleja annab käetõstmisega märku, siis kuva ka kestuse taimer",
+ "show_hand_raised_timer_label": "Näita käega märkuandmise kestust"
+ }
},
- "star_rating_input_label_one": "{{count}} tärni",
+ "star_rating_input_label_one": "{{count}} tärn",
"star_rating_input_label_other": "{{count}} tärni",
"start_new_call": "Algata uus kõne",
"start_video_button_label": "Lülita videovoog sisse",
"stop_screenshare_button_label": "Ekraanivaade on jagamisel",
"stop_video_button_label": "Peata videovoog",
"submitting": "Saadan…",
+ "switch_camera": "Vaheta kaamerat",
+ "technical_details": "Tehnilised üksikasjad",
"unauthenticated_view_body": "Sa pole veel registreerunud? <2>Loo kasutajakonto2>",
"unauthenticated_view_login_button": "Logi oma kontosse sisse",
+ "unauthenticated_view_ssla_caption": "Klõpsides „Jätka“ nõustud sa meie <2>Tarkvara ja teenuste litsentseerimise lepinguga (Software and Services License Agreement - SSLA)2>",
"unmute_microphone_button_label": "Lülita mikrofon sisse",
- "version": "Versioon: {{version}}"
+ "version": "{{productName}}, versioon: {{version}}",
+ "video_tile": {
+ "always_show": "Näita alati",
+ "call_ended": "Kõne lõppes",
+ "calling": "Helistan…",
+ "camera_starting": "Video on laadimisel...",
+ "collapse": "Näita vähem",
+ "expand": "Näita rohkem",
+ "mute_for_me": "Summuta minu jaoks",
+ "muted_for_me": "Minule summutatud",
+ "screen_share_volume": "Helivaljus ekraanijagaamisel",
+ "volume": "Helivaljus",
+ "waiting_for_media": "Ootame kuni meedia on olemas..."
+ }
}
diff --git a/locales/fi/app.json b/locales/fi/app.json
new file mode 100644
index 000000000..47b775a4e
--- /dev/null
+++ b/locales/fi/app.json
@@ -0,0 +1,267 @@
+{
+ "a11y": {
+ "user_menu": "Käyttäjävalikko"
+ },
+ "action": {
+ "blur_background": "Sumenna tausta",
+ "close": "Sulje",
+ "copy_link": "Kopioi linkki",
+ "edit": "Muokkaa",
+ "go": "Siirry",
+ "invite": "Kutsu",
+ "lower_hand": "Laske käsi",
+ "no": "Ei",
+ "pick_reaction": "Valitse reaktio",
+ "raise_hand": "Nosta käsi",
+ "register": "Rekisteröidy",
+ "remove": "Poista",
+ "show_less": "Näytä vähemmän",
+ "show_more": "Näytä lisää",
+ "sign_in": "Kirjaudu sisään",
+ "sign_out": "Kirjaudu ulos",
+ "submit": "Lähetä",
+ "upload_file": "Lähetä tiedosto"
+ },
+ "analytics_notice": "Osallistumalla tähän betaan hyväksyt nimettömien tietojen keräämisen, joita käytämme tuotteen parantamiseen. Löydät lisätietoa siitä, mitä tietoja seuraamme meidän <2> Tietosuojakäytännöstä2> ja <6>Evästekäytännöstä6> .",
+ "call_ended_view": {
+ "create_account_button": "Luo tili",
+ "create_account_prompt": "<0>Miksi et viimeistelisi määrittämällä salasanaa tilisi säilyttämiseksi?0><1>Voit säilyttää nimesi ja asettaa avatarin käytettäväksi tulevissa puheluissa1>",
+ "feedback_done": "<0>Kiitos palautteestasi!0>",
+ "feedback_prompt": "<0>Haluaisimme kuulla palautteesi, jotta voimme parantaa käyttökokemustasi.0>",
+ "headline": "{{displayName}}, puhelusi on päättynyt.",
+ "not_now_button": "Ei nyt, palaa aloitusnäyttöön",
+ "reconnect_button": "Yhdistä uudelleen",
+ "survey_prompt": "Miten se meni?"
+ },
+ "call_name": "Puhelun nimi",
+ "common": {
+ "analytics": "Analytiikka",
+ "audio": "Ääni",
+ "avatar": "Avatar",
+ "back": "Takaisin",
+ "display_name": "Näyttönimi",
+ "encrypted": "Salattu",
+ "home": "Etusivu",
+ "loading": "Ladataan...",
+ "next": "Seuraava",
+ "options": "Vaihtoehdot",
+ "password": "Salasana",
+ "preferences": "Asetukset",
+ "profile": "Profiili",
+ "reaction": "Reaktio",
+ "reactions": "Reaktiot",
+ "reconnecting": "Yhdistetään uudelleen...",
+ "settings": "Asetukset",
+ "unencrypted": "Ei salattu",
+ "username": "Käyttäjänimi",
+ "video": "Video"
+ },
+ "developer_mode": {
+ "always_show_iphone_earpiece": "Näytä iPhone korvakaiutinvaihtoehto kaikilla alustoilla",
+ "crypto_version": "Kryptoversio: {{version}}",
+ "custom_livekit_url": {
+ "current_url": "Tällä hetkellä asetettu: ",
+ "from_config": "Tällä hetkellä ei ole asetettu päällekirjoitusta. Käytetään URL-osoitetta well-known tiedostosta tai konfiguraatiosta.",
+ "label": "Mukautettu Livekit-url",
+ "reset": "Palauta päällekirjoitus",
+ "save": "Tallenna",
+ "saving": "Tallennetaan..."
+ },
+ "debug_tile_layout_label": "Laattojen asettelun vianmääritys",
+ "device_id": "Laitteen tunnus: {{id}}",
+ "duplicate_tiles_label": "Lisälaattakopioiden määrä osallistujaa kohti",
+ "environment_variables": "Ympäristömuuttujat",
+ "hostname": "Isäntänimi: {{hostname}}",
+ "livekit_server_info": "LiveKit-palvelimen tiedot",
+ "livekit_sfu": "LiveKit SFU: {{url}}",
+ "matrixRTCMode": {
+ "Comptibility": {
+ "description": "Yhteensopiva kotipalvelimien kanssa, jotka eivät tue tarttuvia tapahtumia (mutta kaikki muut EC-sovellukset ovat v0.17.0 tai uudempia)",
+ "label": "Yhteensopivuus: tilatapahtumat ja useat SFU:t"
+ },
+ "Legacy": {
+ "description": "Yhteensopiva vanhempien EC-versioiden kanssa, jotka eivät tue useita SFU:ita",
+ "label": "Vanha: tilatapahtumat ja vanhimman jäsenen SFU"
+ },
+ "Matrix_2_0": {
+ "description": "Yhteensopiva vain tarttuvia tapahtumia tukevien kotipalvelimien ja kaikkien EC-sovelluksien v0.17.0 tai uudempien kanssa",
+ "label": "Matrix 2.0: tarttuvat tapahtumat ja useat SFU:t"
+ },
+ "title": "MatrixRTC-tila"
+ },
+ "matrix_id": "Matrix tunnus: {{id}}",
+ "mute_all_audio": "Mykistä kaikki ääni (osallistujat, reaktiot, liittymisäänet)",
+ "show_connection_stats": "Näytä yhteystilastot",
+ "url_params": "URL-parametrit"
+ },
+ "disconnected_banner": "Yhteys palvelimeen on katkennut.",
+ "error": {
+ "call_is_not_supported": "Puhelua ei tueta",
+ "call_not_found": "Puhelua ei löydy",
+ "call_not_found_description": "<0>Kyseinen linkki ei näytä kuuluvan mihinkään olemassa olevaan puheluun. Tarkista, että sinulla on oikea linkki, tai <2>luo uusi linkki2>.0>",
+ "connection_lost": "Yhteys katkesi",
+ "connection_lost_description": "Sinut katkaistiin puhelusta.",
+ "e2ee_unsupported": "Yhteensopimaton selain",
+ "e2ee_unsupported_description": "Verkkoselaimesi ei tue salattuja puheluita. Tuettuja selaimia ovat Chrome, Safari ja Firefox 117+.",
+ "failed_to_start_livekit": "Livekit-yhteyden muodostaminen epäonnistui.",
+ "generic": "Jokin meni pieleen",
+ "generic_description": "Vianmäärityslokien lähettäminen auttaa meitä jäljittämään ongelman.",
+ "insufficient_capacity": "Riittämätön kapasiteetti",
+ "insufficient_capacity_description": "Palvelin on saavuttanut maksimikapasiteettinsa, etkä voi liittyä puheluun tällä hetkellä. Yritä myöhemmin uudelleen tai ota yhteyttä palvelimen ylläpitäjään, jos ongelma jatkuu.",
+ "livekit_connection_error": "Yhteyden muodostaminen Livekit-palvelimeen epäonnistui",
+ "livekit_connection_error_description": "Livekit-palvelimeen yhteyden muodostamisessa tapahtui virhe (<1>Syy: 1> <2>{{ reason }}2>).",
+ "matrix_rtc_transport_missing": "Palvelinta ei ole määritetty toimimaan {{brand}} -sovelluksen kanssa. Ota yhteyttä palvelimen ylläpitäjään (Verkkotunnus: {{domain}}, Virhekoodi: {{ errorCode }}).",
+ "membership_manager": "Jäsenyydenhallinnan virhe",
+ "membership_manager_description": "Jäsenyyshallinta jouduttiin sulkemaan. Tämä johtui useista peräkkäisistä epäonnistuneista verkkopyynnöistä.",
+ "no_matrix_2_authorization_service": "Mediapalvelimesi (SFU) valtuutuspalvelu on vanhentunut.",
+ "open_elsewhere": "Avattu toisessa välilehdessä",
+ "open_elsewhere_description": "{{brand}} on avattu toisessa välilehdessä. Jos tämä ei kuulosta oikealta, yritä ladata sivu uudelleen.",
+ "peer_connection_timeout": "Yhteyden aikakatkaisu",
+ "peer_connection_timeout_description": "Yhteys mediapalvelimeen aikakatkaistiin. Kokeile vaihtaa verkkoa tai poistaa VPN käytöstä. Jos ongelma jatkuu, katso <0>vianetsintäoppaamme0> tai ota yhteyttä palvelimesi ylläpitäjään.",
+ "room_creation_restricted": "Puhelun luominen epäonnistui",
+ "room_creation_restricted_description": "Puheluiden luominen saattaa olla rajoitettu vain valtuutetuille käyttäjille. Yritä myöhemmin uudelleen tai ota yhteyttä palvelimen ylläpitäjään, jos ongelma jatkuu.",
+ "sticky_events_required": "Kotipalvelin ei tue Matrix 2.0 -puheluita",
+ "sticky_events_required_description": "Tämä asennus on määritetty käyttämään Matrix 2.0 -puhelutilaa, mutta kotipalvelin ei mainosta tukea tarttuville tapahtumille (MSC4354). Pyydä palvelimen järjestelmänvalvojaa päivittämään tai vaihtamaan asennus yhteensopivaan tilaan.",
+ "unexpected_ec_error": "Tapahtui odottamaton virhe (<0>Virhekoodi:0> <1>{{ errorCode }}1>). Ota yhteyttä palvelimen ylläpitäjään."
+ },
+ "group_call_loader": {
+ "banned_body": "Sinulle on annettu porttikielto huoneesta.",
+ "banned_heading": "Kielletty",
+ "call_ended_body": "Sinut on poistettu puhelusta.",
+ "call_ended_heading": "Puhelu päättyi",
+ "knock_reject_body": "Liittymispyyntösi hylättiin.",
+ "knock_reject_heading": "Pääsy kielletty",
+ "reason": "Syy: {{reason}}"
+ },
+ "handset": {
+ "overlay_back_button": "Takaisin kaiutintilaan",
+ "overlay_description": "Toimii vain sovellusta käytettäessä",
+ "overlay_title": "Luuritila"
+ },
+ "hangup_button_label": "Lopeta puhelu",
+ "header_label": "Element Call Etusivu",
+ "header_participants_label": "Osallistujat",
+ "invite_modal": {
+ "link_copied_toast": "Linkki kopioitu leikepöydälle",
+ "title": "Kutsu tähän puheluun"
+ },
+ "join_existing_call_modal": {
+ "join_button": "Kyllä, liity puheluun",
+ "text": "Tämä puhelu on jo olemassa, haluatko liittyä siihen?",
+ "title": "Liity olemassa olevaan puheluun?"
+ },
+ "layout_grid_label": "Ruudukko",
+ "layout_spotlight_label": "Valokeila",
+ "layout_switch_label": "Asettelu",
+ "lobby": {
+ "ask_to_join": "Pyydä liittymistä puheluun",
+ "join_as_guest": "Liity vieraana",
+ "join_button": "Liity puheluun",
+ "leave_button": "Takaisin viimeisimpiin puheluihin",
+ "waiting_for_invite": "Pyyntö lähetetty! Odotetaan lupaa liittyä…"
+ },
+ "log_in": "Kirjaudu sisään",
+ "logging_in": "Kirjaudutaan sisään…",
+ "login_auth_links": "<0>Luo tili0> tai <2>Käytä vieraana2>",
+ "login_auth_links_prompt": "Etkö ole vielä rekisteröitynyt?",
+ "login_subheading": "Jatkaaksesi Elementiin",
+ "login_title": "Kirjaudu sisään",
+ "microphone_off": "Mikrofoni pois päältä",
+ "microphone_on": "Mikrofoni päällä",
+ "mute_microphone_button_label": "Mykistä mikrofoni",
+ "participant_count_one": "{{count, number}}",
+ "participant_count_other": "{{count, number}}",
+ "qr_code": "QR-koodi",
+ "rageshake_button_error_caption": "Yritä uudelleen lokien lähettämistä",
+ "rageshake_request_modal": {
+ "body": "Toisella käyttäjällä tässä puhelussa on ongelma. Jotta voimme diagnosoida nämä ongelmat paremmin, haluaisimme kerätä virheenkorjauslokin.",
+ "title": "Virheenkorjauslokipyyntö"
+ },
+ "rageshake_send_logs": "Lähetä virheenkorjauslokit",
+ "rageshake_sending": "Lähetetään…",
+ "rageshake_sending_logs": "Lähetetään virheenkorjauslokeja…",
+ "rageshake_sent": "Kiitos!",
+ "recaptcha_dismissed": "Recaptcha hylätty",
+ "recaptcha_not_loaded": "Recaptcha ei ole ladattu",
+ "recaptcha_ssla_caption": "Tämä sivusto on suojattu ReCAPTCHA:lla, ja siihen sovelletaan Googlen <2>Tietosuojakäytäntöä2> ja <6>Palveluehtoja6>.<9>9>Klikkaamalla \"Rekisteröidy\" hyväksyt <12>ohjelmisto- ja palvelulisenssisopimuksen (SSLA)12>",
+ "register": {
+ "passwords_must_match": "Salasanojen on täsmättävä",
+ "registering": "Rekisteröidään…"
+ },
+ "register_auth_links": "<0>Onko sinulla jo tili?0><1><0>Kirjaudu sisään0> tai <2>Käytä vieraana2>1>",
+ "register_confirm_password_label": "Vahvista salasana",
+ "register_heading": "Luo tilisi",
+ "return_home_button": "Palaa aloitusnäyttöön",
+ "room_auth_view_continue_button": "Jatka",
+ "room_auth_view_ssla_caption": "Klikkaamalla \"Liity puheluun nyt\" hyväksyt <2>ohjelmisto- ja palvelulisenssisopimuksen (SSLA)2>",
+ "screenshare_button_label": "Jaa näyttö",
+ "settings": {
+ "audio_tab": {
+ "effect_volume_description": "Säädä äänenvoimakkuutta, jolla reaktioiden ja käden nostojen ääniefektit toistetaan.",
+ "effect_volume_label": "Ääniefektien äänenvoimakkuus"
+ },
+ "background_blur_header": "Tausta",
+ "background_blur_label": "Sumenna videon tausta",
+ "blur_not_supported_by_browser": "(Tämä laite ei tue taustan sumennusta.)",
+ "developer_tab_title": "Kehittäjä",
+ "devices": {
+ "activating": "Aktivoidaan…",
+ "camera": "Kamera",
+ "camera_numbered": "Kamera {{n}}",
+ "change_device_button": "Vaihda äänilaite",
+ "default": "Oletus",
+ "default_named": "Oletus <2>({{name}})2>",
+ "handset": "Luuri",
+ "loudspeaker": "Kaiutin",
+ "microphone": "Mikrofoni",
+ "microphone_numbered": "Mikrofoni {{n}}",
+ "speaker": "Kaiutin",
+ "speaker_numbered": "Kaiutin {{n}}"
+ },
+ "feedback_tab_body": "Jos sinulla on ongelmia tai haluat vain antaa palautetta, lähetä meille lyhyt kuvaus alla.",
+ "feedback_tab_description_label": "Palautteesi",
+ "feedback_tab_h4": "Lähetä palautetta",
+ "feedback_tab_send_logs_label": "Sisällytä virheenkorjauslokit",
+ "feedback_tab_thank_you": "Kiitos, saimme palautteesi!",
+ "feedback_tab_title": "Palaute",
+ "opt_in_description": "<0>0><1>1>Voit peruuttaa suostumuksesi poistamalla tämän ruudun valinnan. Jos puhelu on käynnissä, tämä asetus tulee voimaan puhelun lopussa.",
+ "preferences_tab": {
+ "developer_mode_label": "Kehittäjätila",
+ "developer_mode_label_description": "Ota kehittäjätila käyttöön ja näytä kehittäjäasetukset-välilehti.",
+ "introduction": "Täällä voit määrittää lisävaihtoehtoja parempaa käyttökokemusta varten.",
+ "reactions_play_sound_description": "Toista äänitefekti, kun joku lähettää reaktion puheluun.",
+ "reactions_play_sound_label": "Toista reaktioäänet",
+ "reactions_show_description": "Näytä animaatio, kun joku lähettää reaktion.",
+ "reactions_show_label": "Näytä reaktiot",
+ "show_hand_raised_timer_description": "Näytä ajastin, kun osallistuja nostaa kätensä",
+ "show_hand_raised_timer_label": "Näytä kädennoston kesto"
+ }
+ },
+ "star_rating_input_label_one": "{{count}} tähti",
+ "star_rating_input_label_other": "{{count}} tähteä",
+ "start_new_call": "Aloita uusi puhelu",
+ "start_video_button_label": "Aloita video",
+ "stop_screenshare_button_label": "Jaetaan näyttöä",
+ "stop_video_button_label": "Lopeta video",
+ "submitting": "Lähetetään…",
+ "switch_camera": "Vaihda kameraa",
+ "technical_details": "Tekniset tiedot",
+ "unauthenticated_view_body": "Etkö ole vielä rekisteröitynyt? <2>Luo tili2>",
+ "unauthenticated_view_login_button": "Kirjaudu tilillesi",
+ "unauthenticated_view_ssla_caption": "Klikkaamalla \"Siirry\" hyväksyt <2>ohjelmisto- ja palvelulisenssisopimuksen (SSLA)2>",
+ "unmute_microphone_button_label": "Poista mikrofonin mykistys",
+ "version": "{{productName}} versio: {{version}}",
+ "video_tile": {
+ "always_show": "Näytä aina",
+ "call_ended": "Puhelu päättyi",
+ "calling": "Soitetaan…",
+ "camera_starting": "Videota ladataan...",
+ "collapse": "Supista",
+ "expand": "Laajenna",
+ "mute_for_me": "Mykistä minulle",
+ "muted_for_me": "Mykistetty minulle",
+ "screen_share_volume": "Näytönjaon äänenvoimakkuus",
+ "volume": "Äänenvoimakkuus",
+ "waiting_for_media": "Odotetaan mediaa..."
+ }
+}
diff --git a/locales/fr/app.json b/locales/fr/app.json
index 279542b1f..647214b07 100644
--- a/locales/fr/app.json
+++ b/locales/fr/app.json
@@ -5,22 +5,23 @@
"action": {
"close": "Fermer",
"copy_link": "Copier le lien",
+ "edit": "Modifier",
"go": "Commencer",
"invite": "Inviter",
+ "lower_hand": "Baisser la main",
"no": "Non",
+ "pick_reaction": "Choisir une réaction",
+ "raise_hand": "Lever la main",
"register": "S’enregistrer",
"remove": "Supprimer",
+ "show_less": "Afficher moins",
+ "show_more": "Afficher plus",
"sign_in": "Connexion",
"sign_out": "Déconnexion",
- "submit": "Envoyer"
+ "submit": "Envoyer",
+ "upload_file": "Téléverser un fichier"
},
"analytics_notice": "En participant à cette beta, vous consentez à la collecte de données anonymes, qui seront utilisées pour améliorer le produit. Vous trouverez plus d’informations sur les données collectées dans notre <2>Politique de vie privée2> et notre <5>Politique de cookies5>.",
- "app_selection_modal": {
- "continue_in_browser": "Continuer dans le navigateur",
- "open_in_app": "Ouvrir dans l’application",
- "text": "Prêt à rejoindre ?",
- "title": "Choisissez l’application"
- },
"call_ended_view": {
"create_account_button": "Créer un compte",
"create_account_prompt": "<0>Pourquoi ne pas créer un mot de passe pour conserver votre compte ?0><1>Vous pourrez garder votre nom et définir un avatar pour vos futurs appels1>",
@@ -33,20 +34,67 @@
},
"call_name": "Nom de l’appel",
"common": {
+ "analytics": "Statistiques d'utilisation",
+ "audio": "Audio",
+ "avatar": "Avatar",
+ "back": "Retour",
"display_name": "Nom d’affichage",
"encrypted": "Chiffré",
"home": "Accueil",
"loading": "Chargement…",
+ "next": "Suivant",
+ "options": "Options",
"password": "Mot de passe",
+ "preferences": "Préférences",
"profile": "Profil",
+ "reaction": "Réaction",
+ "reactions": "Réactions",
+ "reconnecting": "Reconnexion",
"settings": "Paramètres",
"unencrypted": "Non chiffré",
"username": "Nom d’utilisateur",
"video": "Vidéo"
},
+ "developer_mode": {
+ "always_show_iphone_earpiece": "Afficher l'option écouteur iPhone sur toutes les plateformes",
+ "crypto_version": "Version crypto: {{version}}",
+ "debug_tile_layout_label": "Disposition des tuiles de débogage",
+ "device_id": "Id. de l'appareil",
+ "duplicate_tiles_label": "Nombre de copies de tuiles supplémentaires par participant",
+ "environment_variables": "Variables d'environnement",
+ "hostname": "Nom d'hôte: {{hostname}}",
+ "livekit_server_info": "Info du serveur LiveKit",
+ "livekit_sfu": "LiveKit SFU: {{url}}",
+ "matrix_id": "ID Matrix: {{id}}",
+ "mute_all_audio": "Couper tous les sons (participants, réactions, sons de participation)",
+ "show_connection_stats": "Afficher les statistiques de connexion",
+ "url_params": "Paramètres d'URL"
+ },
"disconnected_banner": "La connexion avec le serveur a été perdue.",
+ "error": {
+ "call_is_not_supported": "L'appel n'est pas pris en charge",
+ "call_not_found": "Appel non trouvé",
+ "call_not_found_description": "<0>Ce ne correspond à aucun appel existant. Vérifier que vous avez le bon lien, ou <1>créer un nouveau1>.0>",
+ "connection_lost": "Connexion perdue",
+ "connection_lost_description": "Vous avez été déconnecté de l’appel",
+ "e2ee_unsupported": "Moteur de recherche incompatible",
+ "generic": "Un problème est survenu",
+ "insufficient_capacity": "Capacité insuffisante",
+ "insufficient_capacity_description": "Le serveur a atteint sa capacité maximale et vous ne pouvez pas rejoindre l'appel pour le moment. Veuillez réessayer plus tard ou contacter l'administrateur du serveur si le problème persiste.",
+ "unexpected_ec_error": "Une erreur inattendue s'est produite (<0>Code d'erreur :0> <1>{{ errorCode }}1>). Veuillez contacter l'administrateur de votre serveur."
+ },
+ "group_call_loader": {
+ "banned_body": "Vous avez été banni du salon.",
+ "banned_heading": "Banni",
+ "call_ended_body": "Vous avez été retiré de l’appel.",
+ "call_ended_heading": "Appel terminé",
+ "knock_reject_body": "Les membres du salon ont refusé votre demande de participation.",
+ "knock_reject_heading": "Non autorisé à rejoindre",
+ "reason": "Motif"
+ },
"hangup_button_label": "Terminer l’appel",
"header_label": "Accueil Element Call",
+ "header_participants_label": "Participants",
"invite_modal": {
"link_copied_toast": "Lien copié dans le presse-papier",
"title": "Inviter dans cet appel"
@@ -59,15 +107,24 @@
"layout_grid_label": "Grille",
"layout_spotlight_label": "Premier plan",
"lobby": {
+ "ask_to_join": "Demandez à rejoindre l'appel",
+ "join_as_guest": "Rejoindre en tant qu'invité",
"join_button": "Rejoindre l’appel",
- "leave_button": "Revenir à l’historique des appels"
+ "leave_button": "Revenir à l’historique des appels",
+ "waiting_for_invite": "Demande envoyée"
},
+ "log_in": "Se connecter",
"logging_in": "Connexion…",
"login_auth_links": "<0>Créer un compte0> Or <2>Accès invité2>",
+ "login_auth_links_prompt": "Pas encore inscrit?",
+ "login_subheading": "Pour continuer vers Element",
"login_title": "Connexion",
"microphone_off": "Microphone éteint",
"microphone_on": "Microphone allumé",
"mute_microphone_button_label": "Couper le microphone",
+ "participant_count_one": "{{count, number}}",
+ "participant_count_other": "{{count, number}}",
+ "qr_code": "Code QR",
"rageshake_button_error_caption": "Réessayer d’envoyer les journaux",
"rageshake_request_modal": {
"body": "Un autre utilisateur dans cet appel a un problème. Pour nous permettre de résoudre le problème, nous aimerions récupérer un journal de débogage.",
@@ -85,17 +142,33 @@
},
"register_auth_links": "<0>Vous avez déjà un compte ?0><1><0>Se connecter0> Ou <2>Accès invité2>1>",
"register_confirm_password_label": "Confirmer le mot de passe",
+ "register_heading": "Créer votre compte",
"return_home_button": "Retour à l’accueil",
+ "room_auth_view_continue_button": "Continuer",
"screenshare_button_label": "Partage d’écran",
"settings": {
+ "audio_tab": {
+ "effect_volume_description": "Régler le volume des effets de réactions et de mains levées.",
+ "effect_volume_label": "Volume des effets sonores"
+ },
+ "background_blur_label": "Flouter l'arrière-plan de la vidéo",
+ "blur_not_supported_by_browser": "(Le flou d'arrière-plan n'est pas pris en charge par cet appareil.)",
"developer_tab_title": "Développeur",
+ "devices": {
+ "speaker_numbered": "Haut-parleur {{n}}"
+ },
"feedback_tab_body": "Si vous rencontrez des problèmes, ou vous voulez simplement faire un commentaire, faites-en une courte description ci-dessous.",
"feedback_tab_description_label": "Votre commentaire",
"feedback_tab_h4": "Envoyer un commentaire",
"feedback_tab_send_logs_label": "Inclure les journaux de débogage",
"feedback_tab_thank_you": "Merci, nous avons reçu vos commentaires !",
"feedback_tab_title": "Commentaires",
- "opt_in_description": "<0>0><1>1>Vous pouvez retirer votre consentement en décochant cette case. Si vous êtes actuellement en communication, ce paramètre prendra effet à la fin de l’appel."
+ "opt_in_description": "<0>0><1>1>Vous pouvez retirer votre consentement en décochant cette case. Si vous êtes actuellement en communication, ce paramètre prendra effet à la fin de l’appel.",
+ "preferences_tab": {
+ "reactions_play_sound_label": "Jouer le son des réactions",
+ "reactions_show_label": "Afficher les réactions",
+ "show_hand_raised_timer_label": "Afficher la durée de la main levée"
+ }
},
"star_rating_input_label_one": "{{count}} favori",
"star_rating_input_label_other": "{{count}} favoris",
@@ -107,5 +180,12 @@
"unauthenticated_view_body": "Pas encore de compte ? <2>En créer un2>",
"unauthenticated_view_login_button": "Connectez vous à votre compte",
"unmute_microphone_button_label": "Allumer le microphone",
- "version": "Version : {{version}}"
+ "version": "Version : {{version}}",
+ "video_tile": {
+ "always_show": "Toujours afficher",
+ "collapse": "Réduire",
+ "expand": "Développer",
+ "mute_for_me": "Muet pour moi",
+ "volume": "Volume"
+ }
}
diff --git a/locales/id/app.json b/locales/id/app.json
index 377d23d5d..e9ba9491b 100644
--- a/locales/id/app.json
+++ b/locales/id/app.json
@@ -5,22 +5,23 @@
"action": {
"close": "Tutup",
"copy_link": "Salin tautan",
+ "edit": "Sunting",
"go": "Bergabung",
"invite": "Undang",
+ "lower_hand": "Turunkan tangan",
"no": "Tidak",
+ "pick_reaction": "Pilih reaksi",
+ "raise_hand": "Angkat tangan",
"register": "Daftar",
"remove": "Hapus",
+ "show_less": "Tampilkan lebih sedikit",
+ "show_more": "Tampilkan lebih banyak",
"sign_in": "Masuk",
"sign_out": "Keluar",
- "submit": "Kirim"
- },
- "analytics_notice": "Dengan bergabung dalam beta ini, Anda mengizinkan kami untuk mengumpulkan data anonim, yang kami gunakan untuk meningkatkan produk ini. Anda dapat mempelajari lebih lanjut tentang data apa yang kami lacak dalam <2>Kebijakan Privasi2> dan <5>Kebijakan Kuki5> kami.",
- "app_selection_modal": {
- "continue_in_browser": "Lanjutkan dalam peramban",
- "open_in_app": "Buka dalam aplikasi",
- "text": "Siap untuk bergabung?",
- "title": "Pilih plikasi"
+ "submit": "Kirim",
+ "upload_file": "Unggah berkas"
},
+ "analytics_notice": "Dengan bergabung dalam beta ini, Anda mengizinkan kami untuk mengumpulkan data anonim, yang kami gunakan untuk meningkatkan produk ini. Anda dapat mempelajari lebih lanjut tentang data apa yang kami lacak dalam <2>Kebijakan Privasi2> dan <6>Kebijakan Kuki6> kami.",
"call_ended_view": {
"create_account_button": "Buat akun",
"create_account_prompt": "<0>Kenapa tidak selesaikan dengan mengatur sebuah kata sandi untuk menjaga akun Anda?0><1>Anda akan dapat tetap menggunakan nama Anda dan atur sebuah avatar untuk digunakan dalam panggilan di masa mendatang1>",
@@ -33,17 +34,75 @@
},
"call_name": "Nama panggilan",
"common": {
+ "analytics": "Analitik",
+ "audio": "Audio",
+ "avatar": "Avatar",
+ "back": "Kembali",
"display_name": "Nama tampilan",
"encrypted": "Terenkripsi",
"home": "Beranda",
"loading": "Memuat…",
+ "next": "Berikutnya",
+ "options": "Opsi",
"password": "Kata sandi",
+ "preferences": "Preferensi",
"profile": "Profil",
+ "reaction": "Reaksi",
+ "reactions": "Reaksi",
+ "reconnecting": "Menghubungkan kembali…",
"settings": "Pengaturan",
"unencrypted": "Tidak terenkripsi",
- "username": "Nama pengguna"
+ "username": "Nama pengguna",
+ "video": "Video"
+ },
+ "developer_mode": {
+ "always_show_iphone_earpiece": "Tampilkan opsi lubang suara iPhone di semua platform",
+ "crypto_version": "Versi kripto: {{version}}",
+ "debug_tile_layout_label": "Awakutu tata letak ubin",
+ "device_id": "ID perangkat: {{id}}",
+ "duplicate_tiles_label": "Jumlah salinan ubin tambahan per peserta",
+ "environment_variables": "Variabel lingkungan",
+ "hostname": "Nama hos: {{hostname}}",
+ "livekit_server_info": "Info Server LiveKit",
+ "livekit_sfu": "SFU LiveKit: {{url}}",
+ "matrix_id": "ID Matrix: {{id}}",
+ "mute_all_audio": "Bisukan semua audio (suara peserta, reaksi, bergabung)",
+ "show_connection_stats": "Tampilkan statistik koneksi",
+ "url_params": "Parameter URL"
},
"disconnected_banner": "Koneksi ke server telah hilang.",
+ "error": {
+ "call_is_not_supported": "Panggilan tidak didukung",
+ "call_not_found": "Panggilan tidak ditemukan",
+ "call_not_found_description": "<0>Tautan itu tampaknya bukan milik panggilan yang ada. Periksa apakah Anda memiliki tautan yang tepat, atau <2> buat yang baru2>. 0>",
+ "connection_lost": "Koneksi terputus",
+ "connection_lost_description": "Anda terputus dari panggilan.",
+ "e2ee_unsupported": "Peramban tidak kompatibel",
+ "e2ee_unsupported_description": "Peramban web Anda tidak mendukung panggilan terenkripsi. Peramban yang didukung meliputi Chrome, Safari, dan Firefox 117+.",
+ "generic": "Ada yang salah",
+ "generic_description": "Mengirimkan log awakutu akan membantu kami melacak masalah.",
+ "insufficient_capacity": "Kapasitas tidak mencukupi",
+ "insufficient_capacity_description": "Server telah mencapai kapasitas maksimum dan Anda tidak dapat bergabung dalam panggilan saat ini. Coba lagi nanti, atau hubungi admin server Anda jika masalah masih berlanjut.",
+ "open_elsewhere": "Dibuka di tab lain",
+ "open_elsewhere_description": "{{brand}} telah dibuka di tab lain. Jika sepertinya tidak benar, coba muat ulang halaman.",
+ "room_creation_restricted": "Gagal membuat panggilan",
+ "room_creation_restricted_description": "Pembuatan panggilan mungkin hanya terbatas untuk pengguna yang diizinkan. Coba lagi nanti, atau hubungi admin server Anda jika masalah berlanjut.",
+ "unexpected_ec_error": "Terjadi kesalahan tak terduga (<0> Kode Kesalahan:0><1>{{ errorCode }}1>). Silakan hubungi admin server Anda."
+ },
+ "group_call_loader": {
+ "banned_body": "Anda telah dilarang dari ruangan.",
+ "banned_heading": "Dilarang",
+ "call_ended_body": "Anda telah dikeluarkan dari panggilan.",
+ "call_ended_heading": "Panggilan berakhir",
+ "knock_reject_body": "Permintaan Anda untuk bergabung ditolak.",
+ "knock_reject_heading": "Akses ditolak",
+ "reason": "Alasan: {{reason}}"
+ },
+ "handset": {
+ "overlay_back_button": "Kembali ke Mode Pembicara",
+ "overlay_description": "Hanya berfungsi saat menggunakan aplikasi",
+ "overlay_title": "Mode Ponsel"
+ },
"hangup_button_label": "Akhiri panggilan",
"header_label": "Beranda Element Call",
"header_participants_label": "Peserta",
@@ -59,15 +118,23 @@
"layout_grid_label": "Kisi",
"layout_spotlight_label": "Sorotan",
"lobby": {
+ "ask_to_join": "Permintaan untuk bergabung dalam panggilan",
+ "join_as_guest": "Bergabung sebagai tamu",
"join_button": "Bergabung ke panggilan",
- "leave_button": "Kembali ke terkini"
+ "leave_button": "Kembali ke terkini",
+ "waiting_for_invite": "Permintaan terkirim! Menunggu izin untuk bergabung…"
},
+ "log_in": "Masuk",
"logging_in": "Memasuki…",
"login_auth_links": "<0>Buat akun0> Atau <2>Akses sebagai tamu2>",
+ "login_auth_links_prompt": "Belum terdaftar?",
+ "login_subheading": "Untuk melanjutkan ke Element",
"login_title": "Masuk",
"microphone_off": "Mikrofon dimatikan",
"microphone_on": "Mikrofon dinyalakan",
"mute_microphone_button_label": "Matikan mikrofon",
+ "participant_count_other": "{{count, number}}",
+ "qr_code": "Kode QR",
"rageshake_button_error_caption": "Kirim ulang catatan",
"rageshake_request_modal": {
"body": "Pengguna yang lain di panggilan ini sedang mengalami masalah. Supaya dapat mendiagnosa masalah ini, kami ingin mengumpulkan sebuah catatan pengawakutuan.",
@@ -79,33 +146,79 @@
"rageshake_sent": "Terima kasih!",
"recaptcha_dismissed": "Recaptcha ditutup",
"recaptcha_not_loaded": "Recaptcha tidak dimuat",
+ "recaptcha_ssla_caption": "Situs ini dilindungi oleh ReCAPTCHA dan <2>Kebijakan Privasi2> dan <6>Ketentuan Layanan6> Google berlaku.<9>9>Dengan mengeklik \"Daftar\", Anda menyetujui <12>Perjanjian Lisensi Perangkat Lunak dan Layanan (SSLA) kami12>",
"register": {
"passwords_must_match": "Kata sandi harus cocok",
"registering": "Mendaftarkan…"
},
"register_auth_links": "<0>Sudah punya akun?0><1><0>Masuk0> Atau <2>Akses sebagai tamu2>1>",
"register_confirm_password_label": "Konfirmasi kata sandi",
+ "register_heading": "Buat akun Anda",
"return_home_button": "Kembali ke layar beranda",
+ "room_auth_view_continue_button": "Lanjutkan",
+ "room_auth_view_ssla_caption": "Dengan mengeklik “Gabung panggilan sekarang”, Anda menyetujui <2>Perjanjian Lisensi Perangkat Lunak dan Layanan (SSLA) kami2>",
"screenshare_button_label": "Bagikan layar",
"settings": {
+ "audio_tab": {
+ "effect_volume_description": "Sesuaikan volume saat reaksi dan efek tangan terangkat diputar.",
+ "effect_volume_label": "Volume efek suara"
+ },
+ "background_blur_header": "Latar belakang",
+ "background_blur_label": "Buramkan latar belakang video",
+ "blur_not_supported_by_browser": "(Pemburaman latar belakang tidak didukung oleh perangkat ini.)",
"developer_tab_title": "Pengembang",
+ "devices": {
+ "camera": "Kamera",
+ "camera_numbered": "Kamera {{n}}",
+ "change_device_button": "Ubah perangkat audio",
+ "default": "Bawaan",
+ "default_named": "Bawaan <2>({{name}})2>",
+ "handset": "Ponsel",
+ "loudspeaker": "Pengeras suara",
+ "microphone": "Mikrofon",
+ "microphone_numbered": "Mikrofon {{n}}",
+ "speaker": "Speaker",
+ "speaker_numbered": "Speaker {{n}}"
+ },
"feedback_tab_body": "Jika Anda mengalami masalah atau hanya ingin memberikan masukan, silakan kirimkan kami deskripsi pendek di bawah.",
"feedback_tab_description_label": "Masukan Anda",
"feedback_tab_h4": "Kirim masukan",
"feedback_tab_send_logs_label": "Termasuk catatan pengawakutuan",
"feedback_tab_thank_you": "Terima kasih, kami telah menerima masukan Anda!",
"feedback_tab_title": "Masukan",
- "opt_in_description": "<0>0><1>1>Anda dapat mengurungkan kembali izin dengan mencentang kotak ini. Jika Anda saat ini dalam panggilan, pengaturan ini akan diterapkan di akhir panggilan."
+ "opt_in_description": "<0>0><1>1>Anda dapat mengurungkan kembali izin dengan mencentang kotak ini. Jika Anda saat ini dalam panggilan, pengaturan ini akan diterapkan di akhir panggilan.",
+ "preferences_tab": {
+ "developer_mode_label": "Mode pengembang",
+ "developer_mode_label_description": "Aktifkan mode pengembang dan tampilkan tab pengaturan pengembang.",
+ "introduction": "Di sini Anda dapat mengonfigurasi opsi tambahan untuk pengalaman yang lebih baik.",
+ "reactions_play_sound_description": "Mainkan efek suara ketika seseorang mengirim reaksi ke panggilan.",
+ "reactions_play_sound_label": "Putar suara reaksi",
+ "reactions_show_description": "Tampilkan animasi ketika ada yang mengirimkan reaksi.",
+ "reactions_show_label": "Tampilkan reaksi",
+ "show_hand_raised_timer_description": "Tampilkan pengatur waktu saat peserta mengangkat tangannya",
+ "show_hand_raised_timer_label": "Tampilkan durasi angkat tangan"
+ }
},
- "star_rating_input_label_one": "{{count}} bintang",
"star_rating_input_label_other": "{{count}} bintang",
"start_new_call": "Mulai panggilan baru",
"start_video_button_label": "Nyalakan video",
"stop_screenshare_button_label": "Berbagi layar",
"stop_video_button_label": "Matikan video",
"submitting": "Mengirim…",
+ "switch_camera": "Ganti kamera",
"unauthenticated_view_body": "Belum terdaftar? <2>Buat sebuah akun2>",
"unauthenticated_view_login_button": "Masuk ke akun Anda",
+ "unauthenticated_view_ssla_caption": "Dengan mengeklik \"Go\", Anda menyetujui <2>Perjanjian Lisensi Perangkat Lunak dan Layanan (SSLA) kami2>",
"unmute_microphone_button_label": "Nyalakan mikrofon",
- "version": "Versi: {{version}}"
+ "version": "Versi {{productName}}: {{version}}",
+ "video_tile": {
+ "always_show": "Selalu tampilkan",
+ "camera_starting": "Memuat video...",
+ "collapse": "Tutup",
+ "expand": "Buka",
+ "mute_for_me": "Bisukan untuk saya",
+ "muted_for_me": "Dibisukan untuk saya",
+ "volume": "Volume",
+ "waiting_for_media": "Menunggu media..."
+ }
}
diff --git a/locales/it/app.json b/locales/it/app.json
index 39f6521d1..adb3458a7 100644
--- a/locales/it/app.json
+++ b/locales/it/app.json
@@ -5,21 +5,23 @@
"action": {
"close": "Chiudi",
"copy_link": "Copia collegamento",
+ "edit": "Modifica",
"go": "Vai",
"invite": "Invita",
+ "lower_hand": "Abbassa la mano",
+ "no": "No",
+ "pick_reaction": "Scegli una reazione",
+ "raise_hand": "Alza la mano",
"register": "Registra",
"remove": "Rimuovi",
+ "show_less": "Mostra meno",
+ "show_more": "Mostra altro",
"sign_in": "Accedi",
"sign_out": "Disconnetti",
- "submit": "Invia"
- },
- "analytics_notice": "Partecipando a questa beta, acconsenti alla raccolta di dati anonimi che usiamo per migliorare il prodotto. Puoi trovare più informazioni su quali dati monitoriamo nella nostra <2>informativa sulla privacy2> e nell'<5>informativa sui cookie5>.",
- "app_selection_modal": {
- "continue_in_browser": "Continua nel browser",
- "open_in_app": "Apri nell'app",
- "text": "Tutto pronto per entrare?",
- "title": "Seleziona app"
+ "submit": "Invia",
+ "upload_file": "Carica file"
},
+ "analytics_notice": "Partecipando a questa beta, acconsenti alla raccolta di dati anonimi che usiamo per migliorare il prodotto. Puoi trovare più informazioni su quali dati monitoriamo nella nostra <2>informativa sulla privacy2> e nell'<6>informativa sui cookie6>.",
"call_ended_view": {
"create_account_button": "Crea profilo",
"create_account_prompt": "<0>Ti va di terminare impostando una password per mantenere il profilo?0><1>Potrai mantenere il tuo nome e impostare un avatar da usare in chiamate future1>",
@@ -32,16 +34,102 @@
},
"call_name": "Nome della chiamata",
"common": {
+ "analytics": "Statistiche",
+ "audio": "Audio",
+ "avatar": "Avatar",
+ "back": "Indietro",
"display_name": "Il tuo nome",
"encrypted": "Cifrata",
"home": "Pagina iniziale",
"loading": "Caricamento…",
+ "next": "Avanti",
+ "options": "Opzioni",
+ "password": "Password",
+ "preferences": "Preferenze",
"profile": "Profilo",
+ "reaction": "Reazione",
+ "reactions": "Reazioni",
+ "reconnecting": "Riconnessione…",
"settings": "Impostazioni",
"unencrypted": "Non cifrata",
- "username": "Nome utente"
+ "username": "Nome utente",
+ "video": "Video"
+ },
+ "developer_mode": {
+ "always_show_iphone_earpiece": "Mostra l'opzione auricolare iPhone su tutte le piattaforme",
+ "crypto_version": "Versione crittografica: {{version}}",
+ "custom_livekit_url": {
+ "current_url": "Attualmente impostato a: ",
+ "from_config": "Al momento non è impostata alcuna sovrascrittura. Viene usato l'URL da well-known o config.",
+ "label": "URL Livekit personalizzato",
+ "reset": "Reimposta sovrascrittura",
+ "save": "Salva",
+ "saving": "Salvataggio..."
+ },
+ "debug_tile_layout_label": "Debug della disposizione dei riquadri",
+ "device_id": "ID dispositivo: {{id}}",
+ "duplicate_tiles_label": "Numero di copie di riquadri aggiuntivi per partecipante",
+ "environment_variables": "Variabili di ambiente",
+ "hostname": "Nome host: {{hostname}}",
+ "livekit_server_info": "Informazioni sul server LiveKit",
+ "livekit_sfu": "SFU LiveKit: {{url}}",
+ "matrixRTCMode": {
+ "Comptibility": {
+ "description": "Compatibile con homeserver che non supportano eventi sticky (ma tutte le altre applicazioni EC sono alla v0.17.0 o successive)",
+ "label": "Compatibilità: eventi di stato e multi SFU"
+ },
+ "Legacy": {
+ "description": "Compatibile con le vecchie versioni di EC che non supportano multi SFU",
+ "label": "Classico: event di stato e appartenenza più antica alla SFU"
+ },
+ "Matrix_2_0": {
+ "description": "Compatibile solo con homeserver che supportano eventi sticky e tutte le applicazioni EC alla v0.17.0 o successive",
+ "label": "Matrix 2.0: eventi sticky e multi SFU"
+ },
+ "title": "Modalità MatrixRTC"
+ },
+ "matrix_id": "ID Matrix: {{id}}",
+ "mute_all_audio": "Disattiva tutti gli audio (partecipanti, reazioni, suoni di partecipazione)",
+ "show_connection_stats": "Mostra le statistiche di connessione",
+ "url_params": "Parametri URL"
},
"disconnected_banner": "La connessione al server è stata persa.",
+ "error": {
+ "call_is_not_supported": "La chiamata non è supportata",
+ "call_not_found": "Chiamata non trovata",
+ "call_not_found_description": "<0>Quel link non sembra appartenere a nessuna chiamata esistente. Controlla di avere il link giusto, oppure <1> creane uno nuovo1> .0>",
+ "connection_lost": "Connessione persa",
+ "connection_lost_description": "Sei stato disconnesso dalla chiamata.",
+ "e2ee_unsupported": "Browser incompatibile",
+ "e2ee_unsupported_description": "Il tuo browser non supporta le chiamate crittografate. I browser supportati sono Chrome, Safari e Firefox 117+.",
+ "failed_to_start_livekit": "Impossibile avviare la connessione Livekit",
+ "generic": "Qualcosa è andato storto",
+ "generic_description": "L'invio dei registri di debug ci aiuterà a rintracciare il problema.",
+ "insufficient_capacity": "Capacità insufficiente",
+ "insufficient_capacity_description": "Il server ha raggiunto la capacità massima e non è possibile partecipare alla chiamata in questo momento. Riprova più tardi o contatta l'amministratore del server se il problema persiste.",
+ "matrix_rtc_transport_missing": "Il server non è configurato per funzionare con {{brand}}. Contatta l'amministratore del tuo server (Dominio: {{domain}}, codice di errore: {{ errorCode }}).",
+ "membership_manager": "Errore del gestore dei membri",
+ "membership_manager_description": "Il gestore dei membri ha dovuto chiudersi. Ciò è stato causato da numerose richieste di rete consecutive non riuscite.",
+ "open_elsewhere": "Aperto in un'altra scheda",
+ "open_elsewhere_description": "{{brand}} è stato aperto in un'altra scheda. Se non ti sembra corretto, prova a ricaricare la pagina.",
+ "room_creation_restricted": "Impossibile creare la chiamata",
+ "room_creation_restricted_description": "La creazione di chiamate potrebbe essere limitata solo agli utenti autorizzati. Riprova più tardi o contatta l'amministratore del server se il problema persiste.",
+ "unexpected_ec_error": "Si è verificato un errore imprevisto (<0>Codice errore:0> <1>{{ errorCode }}1>). Contatta l'amministratore del tuo server."
+ },
+ "group_call_loader": {
+ "banned_body": "Sei stato bandito dalla stanza.",
+ "banned_heading": "Bandito",
+ "call_ended_body": "Sei stato rimosso dalla chiamata.",
+ "call_ended_heading": "Chiamata terminata",
+ "knock_reject_body": "I membri della stanza hanno rifiutato la tua richiesta di partecipazione.",
+ "knock_reject_heading": "Partecipazione non consentita",
+ "reason": "Motivo"
+ },
+ "handset": {
+ "overlay_back_button": "Torna alla modalità altoparlante",
+ "overlay_description": "Funziona solo mentre si usa l'app",
+ "overlay_title": "Modalità cornetta"
+ },
"hangup_button_label": "Termina chiamata",
"header_label": "Inizio di Element Call",
"header_participants_label": "Partecipanti",
@@ -57,15 +145,24 @@
"layout_grid_label": "Griglia",
"layout_spotlight_label": "In primo piano",
"lobby": {
+ "ask_to_join": "Chiedi di partecipare alla chiamata",
+ "join_as_guest": "Partecipa come ospite",
"join_button": "Entra in chiamata",
- "leave_button": "Torna ai recenti"
+ "leave_button": "Torna ai recenti",
+ "waiting_for_invite": "Richiesta inviata"
},
+ "log_in": "Accedi",
"logging_in": "Accesso…",
"login_auth_links": "<0>Crea un profilo0> o <2>Accedi come ospite2>",
+ "login_auth_links_prompt": "Non sei ancora registrato?",
+ "login_subheading": "Per continuare su Element",
"login_title": "Accedi",
"microphone_off": "Microfono spento",
"microphone_on": "Microfono acceso",
"mute_microphone_button_label": "Spegni il microfono",
+ "participant_count_one": "{{count, number}}",
+ "participant_count_other": "{{count, number}}",
+ "qr_code": "Codice QR",
"rageshake_button_error_caption": "Riprova l'invio dei registri",
"rageshake_request_modal": {
"body": "Un altro utente in questa chiamata sta avendo problemi. Per diagnosticare meglio questi problemi, vorremmo raccogliere un registro di debug.",
@@ -77,22 +174,58 @@
"rageshake_sent": "Grazie!",
"recaptcha_dismissed": "Recaptcha annullato",
"recaptcha_not_loaded": "Recaptcha non caricato",
+ "recaptcha_ssla_caption": "Questo sito è protetto da ReCAPTCHA e si applicano l'<2>informativa sulla privacy2> e i <6>termini di servizio6> di Google.<9>9>Cliccando \"Registra\", accetti il nostro <12>Software and Services License Agreement (SSLA)12>",
"register": {
"passwords_must_match": "Le password devono coincidere",
"registering": "Registrazione…"
},
"register_auth_links": "<0>Hai già un profilo?0><1><0>Accedi0> o <2>Accedi come ospite2>1>",
"register_confirm_password_label": "Conferma password",
+ "register_heading": "Crea il tuo account",
"return_home_button": "Torna alla schermata di iniziale",
+ "room_auth_view_continue_button": "Continua",
+ "room_auth_view_ssla_caption": "Cliccando \"Partecipa ora alla chiamata\", accetti il nostro <2>Software and Services License Agreement (SSLA)2>",
"screenshare_button_label": "Condividi schermo",
"settings": {
+ "audio_tab": {
+ "effect_volume_description": "Regola il volume delle reazioni e degli effetti di alzata di mani.",
+ "effect_volume_label": "Volume degli effetti sonori"
+ },
+ "background_blur_header": "Sfondo",
+ "background_blur_label": "Sfoca lo sfondo del video",
+ "blur_not_supported_by_browser": "(La sfocatura dello sfondo non è supportata da questo dispositivo.)",
"developer_tab_title": "Sviluppatore",
+ "devices": {
+ "camera": "Fotocamera",
+ "camera_numbered": "Fotocamera {{n}}",
+ "change_device_button": "Cambia dispositivo audio",
+ "default": "Predefinito",
+ "default_named": "Predefinito <2>({{name}})2>",
+ "handset": "Cornetta",
+ "loudspeaker": "Altoparlante",
+ "microphone": "Microfono",
+ "microphone_numbered": "Microfono {{n}}",
+ "speaker": "Altoparlante",
+ "speaker_numbered": "Altoparlante {{n}}"
+ },
"feedback_tab_body": "Se stai riscontrando problemi o semplicemente vuoi dare un'opinione, inviaci una breve descrizione qua sotto.",
"feedback_tab_description_label": "Il tuo commento",
"feedback_tab_h4": "Invia commento",
"feedback_tab_send_logs_label": "Includi registri di debug",
"feedback_tab_thank_you": "Grazie, abbiamo ricevuto il tuo commento!",
- "opt_in_description": "<0>0><1>1>Puoi revocare il consenso deselezionando questa casella. Se attualmente sei in una chiamata, avrà effetto al termine di essa."
+ "feedback_tab_title": "Commenti",
+ "opt_in_description": "<0>0><1>1>Puoi revocare il consenso deselezionando questa casella. Se attualmente sei in una chiamata, avrà effetto al termine di essa.",
+ "preferences_tab": {
+ "developer_mode_label": "Modalità sviluppatore",
+ "developer_mode_label_description": "Attiva la modalità sviluppatore e mostra la scheda di impostazioni sviluppatore.",
+ "introduction": "Qui puoi configurare opzioni extra per un'esperienza migliore.",
+ "reactions_play_sound_description": "Riprodurre un effetto sonoro quando qualcuno invia una reazione in una chiamata.",
+ "reactions_play_sound_label": "Riproduci suoni di reazione",
+ "reactions_show_description": "Mostra un'animazione quando qualcuno invia una reazione.",
+ "reactions_show_label": "Mostra reazioni",
+ "show_hand_raised_timer_description": "Mostra un contatore quando un partecipante alza la mano",
+ "show_hand_raised_timer_label": "Mostra la durata dell'alzata di mano"
+ }
},
"star_rating_input_label_one": "{{count}} stelle",
"star_rating_input_label_other": "{{count}} stelle",
@@ -101,8 +234,20 @@
"stop_screenshare_button_label": "Condivisione schermo",
"stop_video_button_label": "Ferma video",
"submitting": "Invio…",
+ "switch_camera": "Cambia fotocamera",
"unauthenticated_view_body": "Non hai ancora un profilo? <2>Creane uno2>",
"unauthenticated_view_login_button": "Accedi al tuo profilo",
+ "unauthenticated_view_ssla_caption": "Cliccando \"Vai\", accetti il nostro <2>Software and Services License Agreement (SSLA)2>",
"unmute_microphone_button_label": "Riaccendi il microfono",
- "version": "Versione: {{version}}"
+ "version": "Versione di {{productName}}: {{version}}",
+ "video_tile": {
+ "always_show": "Mostra sempre",
+ "camera_starting": "Caricamento del video...",
+ "collapse": "Riduci",
+ "expand": "Espandi",
+ "mute_for_me": "Disattiva l'audio per me",
+ "muted_for_me": "Muto per me",
+ "volume": "Volume",
+ "waiting_for_media": "In attesa dei media..."
+ }
}
diff --git a/locales/ja/app.json b/locales/ja/app.json
index 4f21b3001..239f048e1 100644
--- a/locales/ja/app.json
+++ b/locales/ja/app.json
@@ -4,61 +4,113 @@
},
"action": {
"close": "閉じる",
+ "copy_link": "リンクをコピー",
"go": "続行",
+ "invite": "招待",
"no": "いいえ",
"register": "登録",
"remove": "削除",
"sign_in": "サインイン",
- "sign_out": "サインアウト"
+ "sign_out": "サインアウト",
+ "submit": "送信"
},
+ "analytics_notice": "ベータ版への参加と同時に、製品の改善のために匿名データを収集することに同意したことになります。追跡するデータの詳細については、<2>プライバシーポリシー2>と<6>クッキーポリシー6>をご確認下さい。",
"call_ended_view": {
- "create_account_button": "アカウントを作成"
+ "create_account_button": "アカウントを作成",
+ "create_account_prompt": "<0>パスワードを設定してアカウント設定を保持してみませんか?0><1>名前とアバターの設定を次の通話に利用する事ができます。1>",
+ "feedback_done": "<0>フィードバックありがとうございます!0>",
+ "feedback_prompt": "<0>品質向上のため、皆様のフィードバックをお待ちしております。0>",
+ "headline": "{{displayName}} さんの通話は終了しました。",
+ "not_now_button": "終了せずホーム画面に戻る",
+ "reconnect_button": "再接続",
+ "survey_prompt": "通話はどうでしたか?"
},
+ "call_name": "通話名",
"common": {
+ "analytics": "分析",
"audio": "音声",
"avatar": "アバター",
"display_name": "表示名",
+ "encrypted": "暗号化済み",
"home": "ホーム",
"loading": "読み込んでいます…",
+ "options": "オプション",
"password": "パスワード",
"profile": "プロフィール",
"settings": "設定",
+ "unencrypted": "暗号化されていません",
"username": "ユーザー名",
"video": "ビデオ"
},
+ "disconnected_banner": "サーバーへの接続が失われました。",
+ "hangup_button_label": "通話終了",
"header_label": "Element Call ホーム",
+ "header_participants_label": "参加者",
+ "invite_modal": {
+ "link_copied_toast": "リンクがクリップボードにコピーされました",
+ "title": "この通話に招待する"
+ },
"join_existing_call_modal": {
"join_button": "はい、通話に参加",
"text": "この通話は既に存在します。参加しますか?",
"title": "既存の通話に参加しますか?"
},
+ "layout_grid_label": "グリッド",
"layout_spotlight_label": "スポットライト",
"lobby": {
- "join_button": "通話に参加"
+ "join_button": "通話に参加",
+ "leave_button": "最近に戻る"
},
+ "log_in": "ログイン",
"logging_in": "ログインしています…",
"login_auth_links": "<0>アカウントを作成0>または<2>ゲストとしてアクセス2>",
+ "login_auth_links_prompt": "登録はまだですか?",
+ "login_subheading": "Element を続けるには",
"login_title": "ログイン",
+ "microphone_off": "マイクオフ",
+ "microphone_on": "マイクオン",
+ "mute_microphone_button_label": "ミュート",
+ "rageshake_button_error_caption": "ログ送信の再試行",
"rageshake_request_modal": {
+ "body": "この通話に参加している別のユーザーに問題が発生しています。この問題のより良い診断のため、デバッグ ログを収集したいと考えています。",
"title": "デバッグログを要求"
},
"rageshake_send_logs": "デバッグログを送信",
"rageshake_sending": "送信しています…",
"rageshake_sending_logs": "デバッグログを送信しています…",
+ "rageshake_sent": "ありがとうございます!",
+ "recaptcha_dismissed": "Recaptcha は却下されました",
+ "recaptcha_not_loaded": "Recaptcha が読み込まれませんでした",
"register": {
"passwords_must_match": "パスワードが一致する必要があります",
"registering": "登録しています…"
},
"register_auth_links": "<0>既にアカウントをお持ちですか?0><1><0>ログイン0>または<2>ゲストとしてアクセス2>1>",
"register_confirm_password_label": "パスワードを確認",
+ "register_heading": "アカウントを作成",
"return_home_button": "ホーム画面に戻る",
"screenshare_button_label": "画面共有",
"settings": {
"developer_tab_title": "開発者",
+ "feedback_tab_body": "問題が発生している場合、もしくはフィードバックを提供したい場合は、以下に簡単な説明を入力してお送りください。",
+ "feedback_tab_description_label": "フィードバック",
"feedback_tab_h4": "フィードバックを送信",
- "feedback_tab_send_logs_label": "デバッグログを含める"
+ "feedback_tab_send_logs_label": "デバッグログを含める",
+ "feedback_tab_thank_you": "ありがとうございます。フィードバックを受け取りました!",
+ "feedback_tab_title": "フィードバック",
+ "opt_in_description": "<0>0><1>1>このボックスのチェックを外すと同意を取り消すことができます。現在通話中の場合、この変更は通話終了後に有効になります。"
},
+ "start_new_call": "新しい通話を開始",
+ "start_video_button_label": "ビデオを開始",
+ "stop_screenshare_button_label": "共有画面",
+ "stop_video_button_label": "ビデオを停止",
+ "submitting": "送信中…",
"unauthenticated_view_body": "アカウントがありませんか? <2>アカウントを作成2>",
"unauthenticated_view_login_button": "アカウントにログイン",
- "version": "バージョン:{{version}}"
+ "unmute_microphone_button_label": "マイクのミュート解除",
+ "version": "バージョン:{{version}}",
+ "video_tile": {
+ "mute_for_me": "ミュートする",
+ "volume": "ボリューム"
+ }
}
diff --git a/locales/lv/app.json b/locales/lv/app.json
index bc2814636..e87127f9d 100644
--- a/locales/lv/app.json
+++ b/locales/lv/app.json
@@ -4,15 +4,24 @@
},
"action": {
"close": "Aizvērt",
+ "copy_link": "Kopēt saiti",
+ "edit": "Labot",
"go": "Aiziet",
+ "invite": "Uzaicināt",
+ "lower_hand": "Nolaist roku",
"no": "Nē",
+ "pick_reaction": "Reaģēt",
+ "raise_hand": "Pacelt roku",
"register": "Reģistrēties",
"remove": "Noņemt",
+ "show_less": "Rādīt mazāk",
+ "show_more": "Rādīt vairāk",
"sign_in": "Pieteikties",
"sign_out": "Atteikties",
- "submit": "Iesniegt"
+ "submit": "Iesniegt",
+ "upload_file": "Augšupielādēt failu"
},
- "analytics_notice": "Piedalīšanās šajā beta apliecina piekrišanu anonīmu datu ievākšanai, ko mēs izmantojam, lai uzlabotu izstrādājumu. Vairāk informācijas par datiem, ko mēs ievācam, var atrast mūsu <2>privātuma nosacījumos2> un <5>sīkdatņu nosacījumos5>.",
+ "analytics_notice": "Piedaloties šajā beta versijā, jūs piekrītat anonīmu datu vākšanai, ko mēs izmantojam produkta uzlabošanai. Plašāku informāciju par to, kādus datus mēs izsekojam, varat atrast mūsu <2>konfidencialitātes politikā2> un mūsu <6>sīkfailu politikā6>.",
"call_ended_view": {
"create_account_button": "Izveidot kontu",
"create_account_prompt": "<0>Kādēļ nepabeigt ar paroles iestatīšanu, lai paturētu savu kontu?0><1>Būs iespējams paturēt savu vārdu un iestatīt attēlu izmantošanai turpmākajos zvanos1>",
@@ -23,31 +32,139 @@
"reconnect_button": "Atkārtoti savienoties",
"survey_prompt": "Kā Tev veicās?"
},
+ "call_name": "Zvana nosaukums",
"common": {
+ "analytics": "Analītika",
"audio": "Skaņa",
"avatar": "Attēls",
+ "back": "Atpakaļ",
"display_name": "Attēlojamais vārds",
+ "encrypted": "Šifrēts",
"home": "Sākums",
"loading": "Lādējas…",
+ "next": "Nākamais",
+ "options": "Opcijas",
"password": "Parole",
+ "preferences": "Iestatījumi",
"profile": "Profils",
+ "reaction": "Reakcija",
+ "reactions": "Reakcijas",
+ "reconnecting": "Notiek savienojuma atjaunošana...",
"settings": "Iestatījumi",
- "username": "Lietotājvārds"
+ "unencrypted": "Nav šifrēts",
+ "username": "Lietotājvārds",
+ "video": "Video"
+ },
+ "developer_mode": {
+ "always_show_iphone_earpiece": "Rādīt iPhone austiņu opciju visās platformās",
+ "crypto_version": "Crypto versija: {{version}}",
+ "custom_livekit_url": {
+ "current_url": "Iestatīts uz: ",
+ "from_config": "Šobrīd nav pārrakstīts. Tiek izmantots URL no well-known vai konfigurācijas.",
+ "label": "Pielāgots Livekit URL",
+ "reset": "Atiestatīt pārrakstīto",
+ "save": "Saglabāt",
+ "saving": "Saglabāju..."
+ },
+ "debug_tile_layout_label": "Vietu izkārtojuma atkļūdošana",
+ "device_id": "Ierīces ID: {{id}}",
+ "duplicate_tiles_label": "Papildu vietu kopiju skaits vienam dalībniekam",
+ "environment_variables": "Vides mainīgie",
+ "hostname": "Saimniekdatora nosaukums: {{hostname}}",
+ "livekit_server_info": "LiveKit Server informācija",
+ "livekit_sfu": "LiveKit SFU: {{url}}",
+ "matrixRTCMode": {
+ "Comptibility": {
+ "description": "Savietojams ar mājas serveriem, kas neatbalsta fiksētos notikumus (bet visi pārējie EC klienti ir v0.17.0 vai jaunāki)",
+ "label": "Savietojamība: state notikumi & ulti SFU"
+ },
+ "Legacy": {
+ "description": "Savietojams ar vecākām EC versijām, kas neatbalsta multi SFU",
+ "label": "Mantojums: state events & vecākā SFU dalība"
+ },
+ "Matrix_2_0": {
+ "description": "Savietojams tikai ar mājas serveriem, kas atbalsta fiksētos notikumus, un visiem EC klientiem v0.17.0 vai jaunāku versiju.",
+ "label": "Matrix 2.0: fiksētie notikumi un multi SFU"
+ },
+ "title": "MatrixRTC režīms"
+ },
+ "matrix_id": "Matrix ID: {{id}}",
+ "mute_all_audio": "Izslēgt visu audio (dalībnieku, reakciju, pievienošanās skaņu)",
+ "show_connection_stats": "Rādīt savienojuma statistiku",
+ "url_params": "URL parametri"
},
"disconnected_banner": "Ir zaudēts savienojums ar serveri.",
+ "error": {
+ "call_is_not_supported": "Zvans netiek atbalstīts",
+ "call_not_found": "Zvans nav atrasts",
+ "call_not_found_description": "<0>Šķiet, ka šī saite nepieder nevienam esošam zvaniem. Pārbaudiet, vai jums ir pareizā saite, vai <1> izveidojiet jaunu1>. 0>",
+ "connection_lost": "Savienojums zaudēts",
+ "connection_lost_description": "Jūs tikāt atvienots no zvana.",
+ "e2ee_unsupported": "Nesaderīgs pārlūks",
+ "e2ee_unsupported_description": "Jūsu tīmekļa pārlūkprogramma neatbalsta encrypted zvanus. Atbalstītās pārlūkprogrammas ir Chrome, Safari un Firefox 117+.",
+ "failed_to_start_livekit": "Neizdevās uzsākt Livekit savienojumu",
+ "generic": "Kaut kas nogāja greizi",
+ "generic_description": "Atkļūdošanas žurnālu iesniegšana palīdzēs mums izsekot problēmu.",
+ "insufficient_capacity": "Nepietiekama jauda",
+ "insufficient_capacity_description": "Serveris ir sasniedzis maksimālo ietilpību, un jūs šobrīd nevarat pievienoties zvanam. Mēģiniet vēlreiz vēlāk vai sazinieties ar servera administratoru, ja problēma joprojām pastāv.",
+ "matrix_rtc_transport_missing": "Serveris nav konfigurēts darbam ar{{brand}}. Lūdzu, sazinieties ar sava servera administratoru (Domēns: {{domain}}, Kļūdas kods: {{ errorCode }}).",
+ "membership_manager": "Dalības pārvaldnieka kļūda",
+ "membership_manager_description": "Dalības pārvaldnieks bija jāslēdz. To izraisīja daudzi secīgi, neveiksmīgi tīkla pieprasījumi.",
+ "no_matrix_2_authorization_service": "Jūsu multivides servera (SFU) autorizācijas pakalpojums ir novecojis.",
+ "open_elsewhere": "Atvērts citā cilnē",
+ "open_elsewhere_description": "{{brand}} ir atvērts citā cilnē. Ja tas neizklausās pareizi, mēģiniet atkārtoti ielādēt lapu.",
+ "room_creation_restricted": "Neizdevās izveidot zvanu",
+ "room_creation_restricted_description": "Zvanu izveide, iespējams, ir atļauta tikai pilnvarotiem lietotājiem. Mēģiniet vēlreiz vēlāk vai sazinieties ar servera administratoru, ja problēma joprojām pastāv.",
+ "unexpected_ec_error": "Negaidīta kļūda (<0>kļūdas kods: 0> <1> {{ errorCode }}1>). Lūdzu, sazinieties ar servera administratoru."
+ },
+ "group_call_loader": {
+ "banned_body": "Jums ir liegta ieeja šajā istabā.",
+ "banned_heading": "Aizliegts",
+ "call_ended_body": "Jūs esat noņemts no zvana.",
+ "call_ended_heading": "Zvans beidzies",
+ "knock_reject_body": "Jūsu pieteikums pievienoties tika noraidīts.",
+ "knock_reject_heading": "Piekļuve liegta",
+ "reason": "Iemesls: {{reason}}"
+ },
+ "handset": {
+ "overlay_back_button": "Atpakaļ uz skaļruņa režīmu",
+ "overlay_description": "Darbojas tikai lietotnes lietošanas laikā",
+ "overlay_title": "Klausules režīms"
+ },
+ "hangup_button_label": "Beigt zvanu",
"header_label": "Element Call sākums",
+ "header_participants_label": "Dalībnieki",
+ "invite_modal": {
+ "link_copied_toast": "Saite nokopēta",
+ "title": "Uzaicināt uz šo zvanu"
+ },
"join_existing_call_modal": {
"join_button": "Jā, pievienoties zvanam",
"text": "Šis zvans jau pastāv. Vai vēlies pievienoties?",
"title": "Pievienoties esošam zvanam?"
},
+ "layout_grid_label": "Režģis",
"layout_spotlight_label": "Starmešu gaisma",
"lobby": {
- "join_button": "Pievienoties zvanam"
+ "ask_to_join": "Pieprasīt pievienoties zvanam",
+ "join_as_guest": "Pievienojies kā viesis",
+ "join_button": "Pievienoties zvanam",
+ "leave_button": "Atpakaļ uz jaunākajiem",
+ "waiting_for_invite": "Pieprasījums nosūtīts! Gaida atļauju pievienoties..."
},
+ "log_in": "Pieslēgties",
"logging_in": "Piesakās…",
"login_auth_links": "<0>Izveidot kontu0> vai <2>Piekļūt kā viesim2>",
+ "login_auth_links_prompt": "Vēl neesi reģistrējies?",
+ "login_subheading": "Lai turpinātu uz Element",
"login_title": "Pieteikties",
+ "microphone_off": "Mikrofons izslēgts",
+ "microphone_on": "Mikrofons ieslēgts",
+ "mute_microphone_button_label": "Izslēgt mikrofonu",
+ "participant_count_zero": "{{count, number}}",
+ "participant_count_one": "{{count, number}}",
+ "participant_count_other": "{{count, number}}",
+ "qr_code": "QR kods",
"rageshake_button_error_caption": "Atkārtoti mēģināt žurnāla ierakstu nosūtīšanu",
"rageshake_request_modal": {
"body": "Citam lietotājam šajā zvanā ir sarežģījumi. Lai labāk atklātu šīs nepilnības, mēs gribētu iegūt atkļūdošanas žurnālu.",
@@ -59,28 +176,81 @@
"rageshake_sent": "Paldies!",
"recaptcha_dismissed": "ReCaptcha atmesta",
"recaptcha_not_loaded": "ReCaptcha nav ielādēta",
+ "recaptcha_ssla_caption": "Šo vietni aizsargā ReCAPTCHA un tiek piemēroti Google <2>konfidencialitātes politika2> un <6>Pakalpojuma noteikumi6>.<9>9>Noklikšķinot uz \"Reģistrēties\", jūs piekrītat mūsu <12>Programmatūras un pakalpojumu licences līgumam (SSLA)12>",
"register": {
"passwords_must_match": "Parolēm ir jāsakrīt",
"registering": "Reģistrē…"
},
"register_auth_links": "<0>Jau ir konts?0><1><0>Pieteikties0> vai <2>Piekļūt kā viesim2>1>",
"register_confirm_password_label": "Apstiprināt paroli",
+ "register_heading": "Izveido kontu",
"return_home_button": "Atgriezties sākuma ekrānā",
+ "room_auth_view_continue_button": "Turpināt",
+ "room_auth_view_ssla_caption": "Noklikšķinot uz “Pievienoties zvanam tūlīt”, jūs piekrītat mūsu <2> programmatūras un pakalpojumu licences līgumam (SSLA) 2>",
"screenshare_button_label": "Kopīgot ekrānu",
"settings": {
+ "audio_tab": {
+ "effect_volume_description": "Pielāgojiet skaļumu, kurā tiek atskaņotas reakcijas un paceltas rokas skaņas.",
+ "effect_volume_label": "Skaņas efektu skaļums"
+ },
+ "background_blur_header": "Fons",
+ "background_blur_label": "Izplūdināt video fonu",
+ "blur_not_supported_by_browser": "(Šī ierīce neatbalsta fona izplūšanu.)",
"developer_tab_title": "Izstrādātājs",
+ "devices": {
+ "camera": "Kamera",
+ "camera_numbered": "Kamera {{n}}",
+ "change_device_button": "Mainīt audio ierīci",
+ "default": "Noklusējums",
+ "default_named": "Noklusējums <2> ({{name}} )2>",
+ "handset": "Klausule",
+ "loudspeaker": "Skaļrunis",
+ "microphone": "Mikrofons",
+ "microphone_numbered": "Mikrofons {{n}}",
+ "speaker": "Skaļrunis",
+ "speaker_numbered": "Skaļrunis {{n}}"
+ },
"feedback_tab_body": "Ja tiek piedzīvoti sarežģījumi vai vienkārši ir vēlme sniegt kādu atsauksmi, lūgums zemāk nosūtīt mums īsu aprakstu.",
"feedback_tab_description_label": "Tava atsauksme",
"feedback_tab_h4": "Iesniegt atsauksmi",
"feedback_tab_send_logs_label": "Iekļaut atkļūdošanas žurnāla ierakstus",
"feedback_tab_thank_you": "Paldies, mēs saņēmām atsauksmi!",
"feedback_tab_title": "Atsauksmes",
- "opt_in_description": "<0>0><1>1>Savu piekrišanu var atsaukt ar atzīmes noņemšanu no šīs rūtiņas. Ja pašreiz atrodies zvanā, šis iestatījums stāsies spēkā zvana beigās."
+ "opt_in_description": "<0>0><1>1>Savu piekrišanu var atsaukt ar atzīmes noņemšanu no šīs rūtiņas. Ja pašreiz atrodies zvanā, šis iestatījums stāsies spēkā zvana beigās.",
+ "preferences_tab": {
+ "developer_mode_label": "Izstrādātāja režīms",
+ "developer_mode_label_description": "Iespējot izstrādātāja režīmu un rādīt cilni izstrādātāja iestatījumi.",
+ "introduction": "Šeit varat konfigurēt papildu opcijas, lai uzlabotu pieredzi.",
+ "reactions_play_sound_description": "Atskaņojiet skaņas efektu, kad kāds sūta reakciju uz zvanu.",
+ "reactions_play_sound_label": "Atskaņojiet reakcijas skaņas",
+ "reactions_show_description": "Rādīt animāciju, kad kāds nosūta reakciju.",
+ "reactions_show_label": "Rādīt reakcijas",
+ "show_hand_raised_timer_description": "Rādīt taimeri, kad dalībnieks paceļ roku",
+ "show_hand_raised_timer_label": "Rādīt rokas pacelšanas ilgumu"
+ }
},
+ "star_rating_input_label_zero": "{{count}} zvaigznes",
"star_rating_input_label_one": "{{count}} zvaigzne",
"star_rating_input_label_other": "{{count}} zvaigznes",
+ "start_new_call": "Sākt jaunu zvanu",
+ "start_video_button_label": "Sākt video",
+ "stop_screenshare_button_label": "Kopīgo ekrānu",
+ "stop_video_button_label": "Apturēt video",
"submitting": "Iesniedz…",
+ "switch_camera": "Pārslēgt kameru",
"unauthenticated_view_body": "Vēl neesi reģistrējies? <2>Izveidot kontu2>",
"unauthenticated_view_login_button": "Pieteikties kontā",
- "version": "Versija: {{version}}"
+ "unauthenticated_view_ssla_caption": "Noklikšķinot uz \"Aiziet\", jūs piekrītat mūsu <2>Programmatūras un pakalpojumu licences līgumam (SSLA)2>",
+ "unmute_microphone_button_label": "Ieslēgt mikrofonu",
+ "version": "{{productName}} versija: {{version}}",
+ "video_tile": {
+ "always_show": "Vienmēr rādīt",
+ "camera_starting": "Video ielāde...",
+ "collapse": "Sakļaut",
+ "expand": "Izvērst",
+ "mute_for_me": "Klusums man",
+ "muted_for_me": "Man izslēgts",
+ "volume": "Skaļums",
+ "waiting_for_media": "Gaida medijus..."
+ }
}
diff --git a/locales/nl/app.json b/locales/nl/app.json
new file mode 100644
index 000000000..107cae2d4
--- /dev/null
+++ b/locales/nl/app.json
@@ -0,0 +1,96 @@
+{
+ "a11y": {
+ "user_menu": "Gebruikersmenu"
+ },
+ "action": {
+ "close": "Sluiten",
+ "copy_link": "Link kopiëren",
+ "edit": "Bewerken",
+ "go": "Ga",
+ "invite": "Uitnodigen",
+ "lower_hand": "Hand laten zakken",
+ "no": "Nee",
+ "pick_reaction": "Reactie kiezen",
+ "raise_hand": "Hand opsteken",
+ "register": "Registreren",
+ "remove": "Verwijderen",
+ "show_less": "Minder weergeven",
+ "show_more": "Meer weergeven",
+ "sign_in": "Aanmelden",
+ "sign_out": "Afmelden",
+ "submit": "Indienen",
+ "upload_file": "Bestand uploaden"
+ },
+ "analytics_notice": "Door deel te nemen aan deze bètaversie stemt u in met het verzamelen van anonieme gegevens, die we gebruiken om het product te verbeteren. Meer informatie over welke gegevens we bijhouden, vindt u in ons privacybeleid <2>Privacybeleid2> en ons cookiebeleid <6>Cookiebeleid6>.",
+ "call_ended_view": {
+ "create_account_button": "Account aanmaken",
+ "create_account_prompt": "<0>Waarom sluit u niet af met het instellen van een wachtwoord om uw account te bewaren?0><1>U kunt uw naam behouden en een avatar instellen voor gebruik bij toekomstige gesprekken.1>",
+ "feedback_done": "<0>Bedankt voor je feedback!0>",
+ "feedback_prompt": "<0>We horen graag uw feedback, zodat we uw ervaring kunnen verbeteren.0>",
+ "headline": "{{displayName}}, uw gesprek is beëindigd.",
+ "not_now_button": "Niet nu, ga terug naar het startscherm.",
+ "reconnect_button": "Opnieuw verbinden",
+ "survey_prompt": "Hoe is het gegaan?"
+ },
+ "call_name": "Naam van de oproep",
+ "common": {
+ "analytics": "Statistieken",
+ "audio": "Audio",
+ "avatar": "Avatar",
+ "back": "Terug",
+ "display_name": "Weergavenaam",
+ "encrypted": "Versleuteld",
+ "home": "Startpagina",
+ "loading": "Bezig met laden...",
+ "next": "Volgende",
+ "options": "Opties",
+ "password": "Wachtwoord",
+ "preferences": "Voorkeuren",
+ "profile": "Profiel",
+ "reaction": "Reactie",
+ "reactions": "Reacties",
+ "reconnecting": "Opnieuw verbinden...",
+ "settings": "Instellingen",
+ "unencrypted": "Niet versleuteld",
+ "username": "Gebruikersnaam",
+ "video": "Video"
+ },
+ "developer_mode": {
+ "always_show_iphone_earpiece": "iPhone-oortelefoonoptie op alle platformen weergeven",
+ "custom_livekit_url": {
+ "save": "Opslaan",
+ "saving": "Bezig met opslaan..."
+ },
+ "matrixRTCMode": {
+ "title": "MatrixRTC modus"
+ },
+ "matrix_id": "Matrix ID:{{id}}",
+ "mute_all_audio": "Alle audio dempen (deelnemers, reacties, geluiden bij deelname)",
+ "show_connection_stats": "Verbindingsstatistieken weergeven"
+ },
+ "error": {
+ "matrix_rtc_transport_missing": "De server is niet geconfigureerd om te werken met {{brand}}. Neem contact op met uw serverbeheerder (Domein: {{domain}}, Foutcode: {{ errorCode }}).",
+ "no_matrix_2_authorization_service": "De autorisatieservice voor uw mediaserver (SFU) is verouderd."
+ },
+ "mute_microphone_button_label": "Microfoon dempen",
+ "settings": {
+ "preferences_tab": {
+ "developer_mode_label_description": "Schakel de ontwikkelaarsmodus is en geef het tabblad met ontwikkelaarsinstellingen weer.",
+ "reactions_show_description": "Geef een animatie weer wanneer iemand een reactie verstuurt.",
+ "reactions_show_label": "Reacties weergeven",
+ "show_hand_raised_timer_description": "Geef een timer weer wanneer een deelnemer zijn hand opsteekt",
+ "show_hand_raised_timer_label": "Duur van het opsteken van de hand weergeven"
+ }
+ },
+ "unmute_microphone_button_label": "Microfoon dempen opheffen",
+ "video_tile": {
+ "always_show": "Altijd weergeven",
+ "camera_starting": "Video wordt geladen...",
+ "collapse": "Samenvouwen",
+ "expand": "Uitbreiden",
+ "mute_for_me": "Dempen voor mij",
+ "muted_for_me": "Gedempt voor mij",
+ "volume": "Volume",
+ "waiting_for_media": "Wachten op media..."
+ }
+}
diff --git a/locales/pl/app.json b/locales/pl/app.json
index 7ea88fd51..5111eb03f 100644
--- a/locales/pl/app.json
+++ b/locales/pl/app.json
@@ -3,24 +3,26 @@
"user_menu": "Menu użytkownika"
},
"action": {
+ "blur_background": "Rozmycie tła",
"close": "Zamknij",
"copy_link": "Kopiuj link",
+ "edit": "Edytuj",
"go": "Przejdź",
"invite": "Zaproś",
+ "lower_hand": "Opuść rękę",
"no": "Nie",
+ "pick_reaction": "Wybierz reakcję",
+ "raise_hand": "Podnieś rękę",
"register": "Zarejestruj",
"remove": "Usuń",
+ "show_less": "Pokaż mniej",
+ "show_more": "Pokaż więcej",
"sign_in": "Zaloguj się",
"sign_out": "Wyloguj się",
- "submit": "Wyślij"
- },
- "analytics_notice": "Uczestnicząc w tej becie, upoważniasz nas do zbierania anonimowych danych, które wykorzystamy do ulepszenia produktu. Dowiedz się więcej na temat danych, które zbieramy w naszej <2>Polityce prywatności2> i <5>Polityce ciasteczek5>.",
- "app_selection_modal": {
- "continue_in_browser": "Kontynuuj w przeglądarce",
- "open_in_app": "Otwórz w aplikacji",
- "text": "Gotowy, by dołączyć?",
- "title": "Wybierz aplikację"
+ "submit": "Wyślij",
+ "upload_file": "Prześlij plik"
},
+ "analytics_notice": "Biorąc udział w wersji beta, wyrażasz zgodę na gromadzenie anonimowych danych, które wykorzystujemy w celu ulepszenia naszego produktu. Więcej informacji na temat danych, które śledzimy, znajdziesz w naszej <2>Polityce prywatności2> dla i <6>Polityce ciasteczek6>.",
"call_ended_view": {
"create_account_button": "Utwórz konto",
"create_account_prompt": "<0>Może zechcesz ustawić hasło, aby zachować swoje konto?0><1>Będziesz w stanie utrzymać swoją nazwę i ustawić awatar do wyświetlania podczas połączeń w przyszłości1>",
@@ -33,20 +35,109 @@
},
"call_name": "Nazwa połączenia",
"common": {
+ "analytics": "Dane analityczne",
"audio": "Dźwięk",
"avatar": "Awatar",
+ "back": "Wstecz",
"display_name": "Nazwa wyświetlana",
"encrypted": "Szyfrowane",
"home": "Strona domowa",
- "loading": "Ładowanie…",
+ "loading": "Wczytywanie…",
+ "next": "Dalej",
+ "options": "Opcje",
"password": "Hasło",
+ "preferences": "Preferencje",
"profile": "Profil",
+ "reaction": "Reakcja",
+ "reactions": "Reakcje",
+ "reconnecting": "Próba ponownego połączenia...",
"settings": "Ustawienia",
"unencrypted": "Nie szyfrowane",
"username": "Nazwa użytkownika",
"video": "Wideo"
},
+ "developer_mode": {
+ "always_show_iphone_earpiece": "Pokaż opcję słuchawki iPhone na wszystkich platformach",
+ "crypto_version": "Wersja krypto: {{version}}",
+ "custom_livekit_url": {
+ "current_url": "Aktualnie ustawione na: ",
+ "from_config": "Aktualnie nie nadpisano ustawienia. Używany jest adres URL z dobrego źródła lub konfiguracji.",
+ "label": "Własny Livekit-url",
+ "reset": "Zresetuj nadpisanie",
+ "save": "Zapisz",
+ "saving": "Zapisuję..."
+ },
+ "debug_tile_layout_label": "Układ kafelków Debug",
+ "device_id": "ID urządzenia: {{id}}",
+ "duplicate_tiles_label": "Liczba dodatkowych kopii kafelków na uczestnika",
+ "environment_variables": "Zmienne środowiskowe",
+ "hostname": "Nazwa hosta: {{hostname}}",
+ "livekit_server_info": "Informacje serwera LiveKit",
+ "livekit_sfu": "LiveKit SFU: {{url}}",
+ "matrixRTCMode": {
+ "Comptibility": {
+ "description": "Kompatybilny z serwerami domowymi, które nie obsługują sticky events (ale wszyscy inni klienci EC mają wersję v0.17.0 lub nowszą)",
+ "label": "Kompatybilność: state events & multi SFU"
+ },
+ "Legacy": {
+ "description": "Kompatybilny ze starszymi wersjami EC, które nie wspierają multi SFU",
+ "label": "Przestarzałe: state events & oldest membership SFU"
+ },
+ "Matrix_2_0": {
+ "description": "Kompatybilny tylko z serwerami domowymi obsługującymi sticky events i wszystkimi klientami EC w wersji v0.17.0 lub nowszej",
+ "label": "Matrix 2.0: sticky events & multi SFU"
+ },
+ "title": "Tryb MatrixRTC"
+ },
+ "matrix_id": "ID Matrix: {{id}}",
+ "mute_all_audio": "Wycisz cały dźwięk (uczestnicy, reakcje, dźwięki dołączenia)",
+ "show_connection_stats": "Pokaż statystyki połączenia",
+ "url_params": "Parametry URL"
+ },
"disconnected_banner": "Utracono połączenie z serwerem.",
+ "error": {
+ "call_is_not_supported": "Połączenie nie jest obsługiwane",
+ "call_not_found": "Nie znaleziono połączenia",
+ "call_not_found_description": "<0>Wygląda na to, że ten link nie należy do żadnego istniejącego połączenia. Sprawdź, czy masz prawidłowy link lub <2> utwórz nowy2>.0>",
+ "connection_lost": "Utracono połączenie",
+ "connection_lost_description": "Zostałeś rozłączony z rozmowy.",
+ "e2ee_unsupported": "Niekompatybilna przeglądarka",
+ "e2ee_unsupported_description": "Twoja przeglądarka nie wspiera szyfrowanych połączeń. Obsługiwane przeglądarki obejmują Chrome, Safari i Firefox 117+.",
+ "failed_to_start_livekit": "Nie udało się uruchomić połączenia Livekit",
+ "generic": "Coś poszło nie tak",
+ "generic_description": "Wysłanie dziennika debug, pozwoli nam namierzyć problem.",
+ "insufficient_capacity": "Za mało miejsca",
+ "insufficient_capacity_description": "Serwer osiągnął maksymalną pojemność, przez co nie możesz dołączyć do połączenia. Spróbuj ponownie później lub skontaktuj się z administratorem serwera, jeśli problem nie zniknie.",
+ "livekit_connection_error": "Nie udało się połączyć z serwerem Livekit",
+ "livekit_connection_error_description": "Wystąpił błąd podczas łączenia się z serwerem Livekit (<1>Przyczyna:1> <2>{{ reason }}2>).",
+ "matrix_rtc_transport_missing": "Serwer nie jest skonfigurowany do pracy z {{brand}}. Prosimy o kontakt z administratorem serwera (Domena: {{domain}}, Kod błędu: {{ errorCode }}).",
+ "membership_manager": "Błąd menedżera członkostwa",
+ "membership_manager_description": "Menedżer członkostwa został zamknięty przez zbyt wiele powtarzających się błędów połączenia.",
+ "no_matrix_2_authorization_service": "Usługa autoryzacji dla serwera multimediów (SFU) jest nieaktualna.",
+ "open_elsewhere": "Otwarto w innej karcie",
+ "open_elsewhere_description": "{{brand}} został otwarty w innej karcie. Jeśli tak nie jest, spróbuj odświeżyć stronę.",
+ "peer_connection_timeout": "Upłynął limit czasu połączenia",
+ "peer_connection_timeout_description": "Upłynął czas oczekiwania na połączenie z serwerem multimediów. Spróbuj połączyć się z inną siecią lub wyłączyć VPN. Jeśli problem nadal występuje, zapoznaj się z naszym <0>poradnikiem rozwiązywania problemów0> lub skontaktuj się z administratorem serwera.",
+ "room_creation_restricted": "Nie udało się utworzyć połączenia",
+ "room_creation_restricted_description": "Tworzenie połączeń mogło zostać ograniczone tylko do autoryzowanych użytkowników. Spróbuj ponownie później lub skontaktuj się z administratorem serwera, jeśli problem nie minie.",
+ "sticky_events_required": "Serwer domowy nie wspiera połączeń Matrix 2.0",
+ "sticky_events_required_description": "Wybrana konfiguracja została ustawiona na korzystanie z połączeń Matrix 2.0, lecz serwer domowy nie wspiera ogłaszania sticky events (MSC4354). Poproś administratora serwera o aktualizację lub zmień konfigurację.",
+ "unexpected_ec_error": "Wystąpił nieoczekiwany błąd (<0>Kod błędu:0> <1>{{ errorCode }}1>). Skontaktuj się z administratorem serwera."
+ },
+ "group_call_loader": {
+ "banned_body": "Zostałeś zbanowany z pokoju.",
+ "banned_heading": "Zbanowany",
+ "call_ended_body": "Zostałeś usunięty z połączenia.",
+ "call_ended_heading": "Połączenie zakończone",
+ "knock_reject_body": "Członkowie pokoju odrzucili Twoją prośbę o dołączenie.",
+ "knock_reject_heading": "Nie możesz dołączyć",
+ "reason": "Powód: {{reason}}"
+ },
+ "handset": {
+ "overlay_back_button": "Powrót do trybu głośnika",
+ "overlay_description": "Działa tylko podczas korzystania z aplikacji",
+ "overlay_title": "Tryb słuchawkowy"
+ },
"hangup_button_label": "Zakończ połączenie",
"header_label": "Strona główna Element Call",
"header_participants_label": "Uczestnicy",
@@ -56,21 +147,32 @@
},
"join_existing_call_modal": {
"join_button": "Tak, dołącz do połączenia",
- "text": "Te połączenie już istnieje, czy chcesz do niego dołączyć?",
+ "text": "Połączenie już istnieje, czy chcesz do niej dołączyć?",
"title": "Dołączyć do istniejącego połączenia?"
},
"layout_grid_label": "Siatka",
"layout_spotlight_label": "Centrum uwagi",
+ "layout_switch_label": "Układ",
"lobby": {
+ "ask_to_join": "Poproś o dołączenie do połączenia",
+ "join_as_guest": "Dołącz jako gość",
"join_button": "Dołącz do połączenia",
- "leave_button": "Wróć do ostatnie"
+ "leave_button": "Wróć do ostatnie",
+ "waiting_for_invite": "Prośba wysłana! Oczekiwanie na zatwierdzenie…"
},
+ "log_in": "Zaloguj",
"logging_in": "Logowanie…",
"login_auth_links": "<0>Utwórz konto0> lub <2>Dołącz jako gość2>",
+ "login_auth_links_prompt": "Nie masz konta?",
+ "login_subheading": "Aby przejść do Element",
"login_title": "Zaloguj się",
"microphone_off": "Mikrofon wyłączony",
"microphone_on": "Mikrofon włączony",
"mute_microphone_button_label": "Wycisz mikrofon",
+ "participant_count_one": "{{count, number}}",
+ "participant_count_few": "{{count, number}}",
+ "participant_count_many": "{{count, number}}",
+ "qr_code": "Kod QR",
"rageshake_button_error_caption": "Wyślij logi ponownie",
"rageshake_request_modal": {
"body": "Inny użytkownik w tym połączeniu napotkał problem. Aby lepiej zdiagnozować tę usterkę, chcielibyśmy zebrać dzienniki debugowania.",
@@ -82,33 +184,86 @@
"rageshake_sent": "Dziękujemy!",
"recaptcha_dismissed": "Recaptcha odrzucona",
"recaptcha_not_loaded": "Recaptcha nie została załadowana",
+ "recaptcha_ssla_caption": "Ta strona jest chroniona przez reCAPTCHA i obowiązują <2> Polityka prywatności Google 2> i <6>Warunki korzystania z usługi6>. <9>9>Klikając „Zarejestruj się”, wyrażasz zgodę na naszą <12>umowę licencyjną oprogramowania i usług (SSLA)12>",
"register": {
"passwords_must_match": "Hasła muszą pasować",
"registering": "Rejestrowanie…"
},
"register_auth_links": "<0>Masz już konto?0><1><0>Zaloguj się0> lub <2>Dołącz jako gość2>1>",
"register_confirm_password_label": "Potwierdź hasło",
+ "register_heading": "Utwórz konto",
"return_home_button": "Powróć do strony głównej",
+ "room_auth_view_continue_button": "Kontynuuj",
+ "room_auth_view_ssla_caption": "Klikając \"Dołącz teraz do połączenia\", wyrażasz zgodę na naszą <2>Umowę licencyjną oprogramowania i usług (SSLA)2>",
"screenshare_button_label": "Udostępnij ekran",
"settings": {
+ "audio_tab": {
+ "effect_volume_description": "Dostosuj głośność efektów reakcji i podniesienia ręki.",
+ "effect_volume_label": "Głośność efektów dźwiękowych"
+ },
+ "background_blur_header": "Tło",
+ "background_blur_label": "Rozmycie tła wideo",
+ "blur_not_supported_by_browser": "(Rozmycie tła nie jest wspierane przez to urządzenie.)",
"developer_tab_title": "Programista",
+ "devices": {
+ "activating": "Aktywuję…",
+ "camera": "Kamera",
+ "camera_numbered": "Kamera {{n}}",
+ "change_device_button": "Zmień urządzenie audio",
+ "default": "Domyślne",
+ "default_named": "Domyślne <2>({{name}})2>",
+ "handset": "Słuchawka",
+ "loudspeaker": "Głośnomówiący",
+ "microphone": "Mikrofon",
+ "microphone_numbered": "Mikrofon {{n}}",
+ "speaker": "Głośnik",
+ "speaker_numbered": "Głośnik {{n}}"
+ },
"feedback_tab_body": "Jeśli posiadasz problemy lub chciałbyś zgłosić swoją opinię, wyślij nam krótki opis.",
"feedback_tab_description_label": "Twoje opinie",
"feedback_tab_h4": "Prześlij opinię",
"feedback_tab_send_logs_label": "Dołącz dzienniki debugowania",
"feedback_tab_thank_you": "Dziękujemy, otrzymaliśmy Twoją opinię!",
"feedback_tab_title": "Opinia użytkownika",
- "opt_in_description": "<0>0><1>1>Możesz wycofać swoją zgodę poprzez odznaczenie tego pola. Jeśli już jesteś w trakcie rozmowy, opcja zostanie zastosowana po jej zakończeniu."
+ "opt_in_description": "<0>0><1>1>Możesz wycofać swoją zgodę poprzez odznaczenie tego pola. Jeśli już jesteś w trakcie rozmowy, opcja zostanie zastosowana po jej zakończeniu.",
+ "preferences_tab": {
+ "developer_mode_label": "Tryb programisty",
+ "developer_mode_label_description": "Włącz tryb programisty i wyświetl kartę ustawień programisty.",
+ "introduction": "Tutaj możesz skonfigurować dodatkowe opcje dla lepszego komfortu użytkowania.",
+ "reactions_play_sound_description": "Odtwórz efekt dźwiękowy, gdy ktoś wyślę reakcję w trakcie połączenia.",
+ "reactions_play_sound_label": "Odtwórz dźwięki reakcji",
+ "reactions_show_description": "Odtwórz animację, gdy ktoś wyślę reakcję.",
+ "reactions_show_label": "Pokaż reakcje",
+ "show_hand_raised_timer_description": "Pokaż licznik, gdy uczestnik podniesie rękę",
+ "show_hand_raised_timer_label": "Pokaż czas po podniesieniu ręki"
+ }
},
- "star_rating_input_label_one": "{{count}} gwiazdki",
- "star_rating_input_label_other": "{{count}} gwiazdki",
+ "star_rating_input_label_one": "{{count}} gwiazdka",
+ "star_rating_input_label_few": "{{count}} gwiazdki",
+ "star_rating_input_label_many": "{{count}} gwiazdek",
"start_new_call": "Rozpocznij nowe połączenie",
"start_video_button_label": "Rozpocznij wideo",
"stop_screenshare_button_label": "Udostępnianie ekranu",
"stop_video_button_label": "Zakończ wideo",
"submitting": "Wysyłanie…",
+ "switch_camera": "Przełącz kamerę",
+ "technical_details": "Szczegóły techniczne",
"unauthenticated_view_body": "Nie masz konta? <2>Utwórz je2>",
- "unauthenticated_view_login_button": "Zaloguj się do swojego konta",
- "unmute_microphone_button_label": "Odcisz mikrofon",
- "version": "Wersja: {{version}}"
+ "unauthenticated_view_login_button": "Zaloguj się na swoje konto",
+ "unauthenticated_view_ssla_caption": "Klikając \"Przejdź\", wyrażasz zgodę na naszą <2>Umowę licencyjną oprogramowania i usług (SSLA)2>",
+ "unmute_microphone_button_label": "Wyłącz wyciszenie mikrofonu",
+ "version": "{{productName}} wersja: {{version}}",
+ "video_tile": {
+ "always_show": "Zawsze pokazuj",
+ "call_ended": "Połączenie zakończone",
+ "calling": "Łączenie...",
+ "camera_starting": "Wczytywanie wideo...",
+ "collapse": "Zwiń",
+ "expand": "Rozwiń",
+ "mute_for_me": "Wycisz dla mnie",
+ "muted_for_me": "Wyciszone dla mnie",
+ "screen_share_volume": "Głośność udostępniania ekranu",
+ "volume": "Głośność",
+ "waiting_for_media": "Oczekiwanie na media..."
+ }
}
diff --git a/locales/ro/app.json b/locales/ro/app.json
index 1330bff56..8dcc0d2a2 100644
--- a/locales/ro/app.json
+++ b/locales/ro/app.json
@@ -4,49 +4,43 @@
},
"action": {
"close": "Închide",
- "copy_link": "Copiază linkul",
+ "copy_link": "Copiaţi linkul",
"edit": "Editare",
"go": "Du-te",
"invite": "Invită",
"lower_hand": "Mâna inferioară",
- "no": "No",
+ "no": "Nu",
"pick_reaction": "Alegeți reacția",
"raise_hand": "Ridicați mâna",
- "register": "Inregistrare",
+ "register": "Creaţi un cont",
"remove": "elimina",
"show_less": "Arată mai puțin",
"show_more": "Arată mai mult",
"sign_in": "Autentificare",
- "sign_out": "Sign out",
+ "sign_out": "Deconecta-ţi-vă",
"submit": "Trimiteți",
"upload_file": "Încărcați fișierul"
},
"analytics_notice": "Prin participarea la această versiune beta, sunteți de acord cu colectarea de date anonime, pe care le folosim pentru a îmbunătăți produsul. Puteți găsi mai multe informații despre datele pe care le urmărim în Politica noastră de <2> confidențialitate 2> și Politica noastră <6> privind cookie-urile6>.",
- "app_selection_modal": {
- "continue_in_browser": "Continuați în browser",
- "open_in_app": "Deschideți în aplicație",
- "text": "Sunteți gata să vă alăturați?",
- "title": "Selectați aplicația"
- },
"call_ended_view": {
- "create_account_button": "Creează cont",
+ "create_account_button": "Creaţi un cont",
"create_account_prompt": "<0>De ce să nu terminați prin configurarea unei parole pentru a vă păstra contul? 0><1>Veți putea să vă păstrați numele și să setați un avatar pentru a fi utilizat la apelurile viitoare 1>",
"feedback_done": "<0>Vă mulțumim pentru feedback! 0>",
"feedback_prompt": "<0>Ne-ar plăcea să auzim feedback-ul dvs., astfel încât să vă putem îmbunătăți experiența. 0>",
"headline": "{{displayName}}, apelul tău s-a încheiat.",
- "not_now_button": "Nu acum, reveniți la ecranul de pornire",
- "reconnect_button": "Reconecta",
- "survey_prompt": "Cum a mers?"
+ "not_now_button": "Nu acum, reveniți la ecranul principal",
+ "reconnect_button": "Reconectaţi-vă",
+ "survey_prompt": "Cum a fost?"
},
"call_name": "Numele apelului",
"common": {
"analytics": "Analiză",
"audio": "Audio",
- "avatar": "avatar",
+ "avatar": "Imaginea de profil",
"back": "Înapoi",
"display_name": "Nume afișat",
"encrypted": "Criptat",
- "home": "Acasa",
+ "home": "Acasă",
"loading": "Se încarcă...",
"next": "Urmator\n",
"options": "Opțiuni",
@@ -55,19 +49,46 @@
"profile": "Profil",
"reaction": "Reacție",
"reactions": "Reacții",
- "settings": "Settings",
+ "reconnecting": "Se restabilește conexiunea…",
+ "settings": "Setări",
"unencrypted": "Nu este criptat",
- "username": "Nume utilizator",
- "video": "Videoclip"
+ "username": "Numele utilizatorului",
+ "video": "Video"
},
"developer_mode": {
+ "always_show_iphone_earpiece": "Afișează opțiunea pentru căștile iPhone pe toate platformele",
"crypto_version": "Versiunea Crypto: {{version}}",
+ "debug_tile_layout_label": "Depanaţi aranjamentul cartonaşelor",
"device_id": "ID-ul dispozitivului: {{id}}",
"duplicate_tiles_label": "Numărul de exemplare suplimentare de cartonașe per participant",
+ "environment_variables": "Variabile de mediu",
"hostname": "Numele gazdei: {{hostname}}",
- "matrix_id": "ID-ul matricei: {{id}}"
+ "livekit_server_info": "Informaţii despre serverul livekit",
+ "livekit_sfu": "Unitate de expediere selectivă LiveKit: {{url}}",
+ "matrix_id": "ID-ul matricei: {{id}}",
+ "mute_all_audio": "Dezactivează toate sunetele (participanți, reacții, sunete de conectare)",
+ "show_connection_stats": "Afişaţi informaţii cu privire la starea conexiunii",
+ "url_params": "Parametrii linkului"
+ },
+ "disconnected_banner": "Conexiunea către server s-a încheiat abrupt",
+ "error": {
+ "call_is_not_supported": "Acest tip de apel nu este suportat",
+ "call_not_found": "Apelul nu a fost găsit",
+ "call_not_found_description": "<0>Acel link nu pare să aparţină unui apel existent. Verificaţi dacă aţi introdus linkul corect, sau <1>creaţi unul nou1>.0>",
+ "connection_lost": "Conexiunea s-a pierdut",
+ "connection_lost_description": "Aţi fost deconectat/ă de la apel",
+ "e2ee_unsupported": "Navigatorul dumneavoastră este incompatibil cu criptarea integrală",
+ "e2ee_unsupported_description": "Navigatorul/browserul dumneavoastră web nu suportă apeluri în conversaţii cu criptare integrală. Printre navigatoarele suportate, se numără Chrome, Safari şi Firefox 117+.",
+ "generic": "A apărut o eroare neaşteptată",
+ "generic_description": "Dacă ne trimiteţi jurnalele de depanare generate de aplicaţie, ne puteţi ajuta să rezolvăm problema.",
+ "insufficient_capacity": "Capacitate insuficientă",
+ "insufficient_capacity_description": "Serverul a ajuns la capacitatea maximă și nu vă puteți alătura apelului în acest moment. Încercați din nou in câteva minute, sau contactați administratorul serverului dumneavoastră dacă problema persistă.",
+ "open_elsewhere": "Aplicaţia este deschisă intr-o altă pagină",
+ "open_elsewhere_description": "{{brand}} a fost deschis într-o altă pagină. Dacă credeți că acest mesaj a fost emis in eroare, încercați să reîncărcați pagina.",
+ "room_creation_restricted": "Apelul nu a putut fi creat",
+ "room_creation_restricted_description": "Crearea apelurilor ar putea fi restricționată doar utilizatorilor autorizați. Încercați din nou mai târziu sau contactați administratorul serverului dacă problema persistă.",
+ "unexpected_ec_error": "A apărut o eroare neașteptată (Cod de <0> eroare: 0> <1> {{ errorCode }}1>). Vă rugăm să contactați administratorul serverului dumneavoastră."
},
- "disconnected_banner": "Conectivitatea la server a fost pierdută.",
"group_call_loader": {
"banned_body": "Ai fost interzis să ieși din cameră.",
"banned_heading": "Interzis",
@@ -77,6 +98,11 @@
"knock_reject_heading": "Acces refuzat",
"reason": "Motivul"
},
+ "handset": {
+ "overlay_back_button": "Înapoi la modul Difuzor",
+ "overlay_description": "Funcționează doar în timp ce se utilizează aplicația",
+ "overlay_title": "Mod telefon"
+ },
"hangup_button_label": "Încheiați apelul",
"header_label": "Element Call Home",
"header_participants_label": "Participanți",
@@ -107,6 +133,9 @@
"microphone_off": "Microfon oprit",
"microphone_on": "Microfon pornit",
"mute_microphone_button_label": "Dezactivați microfonul",
+ "participant_count_one": "{{count, number}}",
+ "participant_count_few": "{{count, number}}",
+ "participant_count_other": "{{count, number}}",
"qr_code": "COD QR",
"rageshake_button_error_caption": "Încearcă din nou trimiterea jurnalelor",
"rageshake_request_modal": {
@@ -119,6 +148,7 @@
"rageshake_sent": "Multumesc!",
"recaptcha_dismissed": "Recaptcha a fost respins",
"recaptcha_not_loaded": "Recaptcha nu a fost încărcat",
+ "recaptcha_ssla_caption": "Acest site este protejat de reCAPTCHA. Se aplică atât Politica de <2> confidențialitate Google 2> cât și <6> Termenii și condițiile. 6> <9>9>Făcând clic pe \"Înregistrare\", sunteți de acord cu Acordul <12> nostru de licență pentru software și servicii (SSLA) 12>",
"register": {
"passwords_must_match": "Parolele trebuie să se potrivească",
"registering": "Înregistrare..."
@@ -128,13 +158,30 @@
"register_heading": "Creează-ți contul",
"return_home_button": "Reveniți la ecranul de pornire",
"room_auth_view_continue_button": "Continuă",
+ "room_auth_view_ssla_caption": "Făcând clic pe „Alăturați-vă apelului acum”, sunteți de acord cu Acordul <2> nostru de licență pentru software și servicii (SSLA) 2>",
"screenshare_button_label": "Partajare ecran",
"settings": {
"audio_tab": {
"effect_volume_description": "Reglați volumul la care reacționează reacțiile și efectele ridicate de mână",
"effect_volume_label": "Volumul efectului sonor"
},
+ "background_blur_header": "Fundal",
+ "background_blur_label": "Estompează fundalul videoclipului",
+ "blur_not_supported_by_browser": "(Funcția de estompare a fundalului nu este acceptată de acest device.)",
"developer_tab_title": "dezvoltator",
+ "devices": {
+ "camera": "Cameră",
+ "camera_numbered": "Camera {{n}}",
+ "change_device_button": "Schimbați dispozitivul audio",
+ "default": "Implicit",
+ "default_named": "Dispozitiv implicit <2>({{name}})2>",
+ "handset": "Telefon",
+ "loudspeaker": "Difuzor",
+ "microphone": "Microfon",
+ "microphone_numbered": "Microfon {{n}}",
+ "speaker": "Difuzor",
+ "speaker_numbered": "Difuzor {{n}}"
+ },
"feedback_tab_body": "Dacă întâmpinați probleme sau pur și simplu doriți să oferiți feedback, vă rugăm să ne trimiteți o scurtă descriere mai jos.",
"feedback_tab_description_label": "Feedback-ul tău",
"feedback_tab_h4": "Trimiteți Feedback",
@@ -143,12 +190,20 @@
"feedback_tab_title": "Feedback",
"opt_in_description": "<0>0><1>1>Puteți retrage consimțământul debifând această casetă. Dacă sunteți în prezent la un apel, această setare va intra în vigoare la sfârșitul apelului.",
"preferences_tab": {
+ "developer_mode_label": "Modul dezvoltator",
+ "developer_mode_label_description": "Activați modul dezvoltator și afișați pagina specifică setărilor pentru dezvoltatori",
+ "introduction": "Aici puteți configura opțiuni suplimentare pentru o experiență îmbunătățită.",
"reactions_play_sound_description": "Redați un efect sonor atunci când cineva trimite o reacție la un apel.",
"reactions_play_sound_label": "Redați sunete de reacție",
"reactions_show_description": "Afișați o animație atunci când cineva trimite o reacție.",
- "reactions_show_label": "Afișați reacțiile"
+ "reactions_show_label": "Afișați reacțiile",
+ "show_hand_raised_timer_description": "Afișați un cronometru atunci când un participant ridică mâna.",
+ "show_hand_raised_timer_label": "Afișați durata ridicării mâinii"
}
},
+ "star_rating_input_label_one": "{{count}} stea",
+ "star_rating_input_label_few": "{{count}} stele",
+ "star_rating_input_label_other": "{{count}} stele",
"start_new_call": "Începe un nou apel",
"start_video_button_label": "Începeți videoclipul",
"stop_screenshare_button_label": "Partajarea ecranului",
@@ -157,15 +212,17 @@
"switch_camera": "Comutați camera",
"unauthenticated_view_body": "Nu sunteți încă înregistrat? <2>Creați un cont 2>",
"unauthenticated_view_login_button": "Conectați-vă la contul dvs.",
+ "unauthenticated_view_ssla_caption": "Făcând clic pe \"Înainte\", sunteți de acord cu Acordul nostru de licență pentru <2> software și servicii (SSLA) 2>",
"unmute_microphone_button_label": "Anulează microfonul",
"version": "{{productName}}Versiune: {{version}}",
"video_tile": {
"always_show": "Arată întotdeauna",
- "change_fit_contain": "Se potrivește cadrului",
+ "camera_starting": "Se încarcă fluxul video...",
"collapse": "colaps",
"expand": "Extindeți",
"mute_for_me": "Mute pentru mine",
"muted_for_me": "Dezactivat pentru mine",
- "volume": "VOLUM"
+ "volume": "VOLUM",
+ "waiting_for_media": "Flux multimedia în aşteptare"
}
}
diff --git a/locales/ru/app.json b/locales/ru/app.json
index 88a3252ac..ec68fd78d 100644
--- a/locales/ru/app.json
+++ b/locales/ru/app.json
@@ -4,15 +4,24 @@
},
"action": {
"close": "Закрыть",
+ "copy_link": "Скопировать ссылку",
+ "edit": "Редактировать",
"go": "Далее",
+ "invite": "Пригласить",
+ "lower_hand": "Опустить руку",
"no": "Нет",
+ "pick_reaction": "Выберите реакцию",
+ "raise_hand": "Поднять руку",
"register": "Зарегистрироваться",
"remove": "Удалить",
+ "show_less": "Показать меньше",
+ "show_more": "Показать больше",
"sign_in": "Войти",
"sign_out": "Выйти",
- "submit": "Отправить"
+ "submit": "Отправить",
+ "upload_file": "Загрузить файл"
},
- "analytics_notice": "Участвуя в этой бета-версии, вы соглашаетесь на сбор анонимных данных, которые мы используем для улучшения продукта. Более подробную информацию о том, какие данные мы отслеживаем, вы можете найти в нашей <2> Политике конфиденциальности2> и нашей <5> Политике использования файлов cookie5>.",
+ "analytics_notice": "Участвуя в этой бета-версии, вы соглашаетесь на сбор анонимных данных, которые мы используем для улучшения продукта. Дополнительную информацию о том, какие данные мы отслеживаем, можно найти в нашей <2> Политике конфиденциальности 2> и Политике <6> использования файлов cookie6>.",
"call_ended_view": {
"create_account_button": "Создать аккаунт",
"create_account_prompt": "<0>Почему бы не задать пароль, тем самым сохранив аккаунт?0><1>Так вы можете оставить своё имя и задать аватар для будущих звонков.1>",
@@ -20,33 +29,143 @@
"feedback_prompt": "<0>Мы будем рады видеть ваши отзывы, чтобы мы могли улучшить ваш опыт.0>",
"headline": "{{displayName}}, ваш звонок окончен.",
"not_now_button": "Не сейчас, вернуться в Начало",
+ "reconnect_button": "Переподключиться",
"survey_prompt": "Как всё прошло?"
},
+ "call_name": "Название звонка",
"common": {
+ "analytics": "Аналитика",
"audio": "Аудио",
"avatar": "Аватар",
+ "back": "Назад",
"display_name": "Видимое имя",
+ "encrypted": "Зашифровано",
"home": "Начало",
"loading": "Загрузка…",
+ "next": "Далее",
+ "options": "Параметры",
"password": "Пароль",
+ "preferences": "Настройки",
"profile": "Профиль",
+ "reaction": "Реакция",
+ "reactions": "Реакции",
+ "reconnecting": "Восстановление связи…",
"settings": "Настройки",
+ "unencrypted": "Не зашифровано",
"username": "Имя пользователя",
"video": "Видео"
},
+ "developer_mode": {
+ "always_show_iphone_earpiece": "Показать опцию наушников для iPhone на всех платформах",
+ "crypto_version": "Версия криптографии: {{version}}",
+ "custom_livekit_url": {
+ "current_url": "В настоящее время установлено: ",
+ "from_config": "В настоящее время перезапись не установлена. Используется URL из известного источника или конфигурации.",
+ "label": "Пользовательский Livekit-url",
+ "reset": "Сбросить перезапись",
+ "save": "Сохранить",
+ "saving": "Сохранение..."
+ },
+ "debug_tile_layout_label": "Отладка расположения плиток",
+ "device_id": "Идентификатор устройства: {{id}}",
+ "duplicate_tiles_label": "Количество дополнительных копий плиток на участника",
+ "environment_variables": "Переменные окружения",
+ "hostname": "Имя хоста: {{hostname}}",
+ "livekit_server_info": "Информация о сервере LiveKit",
+ "livekit_sfu": "LiveKit SFU: {{url}}",
+ "matrixRTCMode": {
+ "Comptibility": {
+ "description": "Совместимо с домашними серверами, которые не поддерживают закреплённые события (но все остальные клиенты EC имеют версию v0.17.0 или более позднюю)",
+ "label": "Совместимость: события состояния и множество SFU"
+ },
+ "Legacy": {
+ "description": "Совместимо со старыми версиями EC, не поддерживающими несколько SFU",
+ "label": "Legacy: события состояния и старые SFU членство"
+ },
+ "Matrix_2_0": {
+ "description": "Совместимо только с домашними серверами, поддерживающими «закреплённые события», и со всеми клиентами EC версии v0.17.0 или более поздней",
+ "label": "matrix 2.0: липкие события и multi SFU"
+ },
+ "title": "Режим MatrixRTC"
+ },
+ "matrix_id": "Matrix ID: {{id}}",
+ "mute_all_audio": "Отключить все звуки (участников, реакции, звуки присоединения)",
+ "show_connection_stats": "Показать статистику подключений",
+ "url_params": "Параметры URL-адреса"
+ },
+ "disconnected_banner": "Связь с сервером была потеряна.",
+ "error": {
+ "call_is_not_supported": "Вызов не поддерживается",
+ "call_not_found": "Звонок не найден",
+ "call_not_found_description": "<0>Похоже, эта ссылка не принадлежит ни одному существующему вызову. Убедитесь, что у вас правильная ссылка, или <2>создайте новую2>.0>",
+ "connection_lost": "Соединение потеряно",
+ "connection_lost_description": "Вы были отключены от звонка.",
+ "e2ee_unsupported": "Несовместимый браузер",
+ "e2ee_unsupported_description": "Ваш веб-браузер не поддерживает зашифрованные звонки. Поддерживаются следующие браузеры: Chrome, Safari и Firefox 117+.",
+ "failed_to_start_livekit": "Не удалось установить соединение с Livekit",
+ "generic": "Произошла ошибка",
+ "generic_description": "Отправка журналов отладки поможет нам отследить проблему.",
+ "insufficient_capacity": "Недостаточная пропускная способность",
+ "insufficient_capacity_description": "Сервер достиг максимальной пропускной способности, и вы не можете присоединиться к звонку в данный момент. Повторите попытку позже или обратитесь к администратору сервера, если проблема сохраняется.",
+ "matrix_rtc_transport_missing": "Сервер не настроен для работы с {{brand}}. Пожалуйста, свяжитесь с администратором вашего сервера (Домен: {{domain}}, Код ошибки: {{ errorCode }}).",
+ "membership_manager": "Ошибка менеджера участников",
+ "membership_manager_description": "Модуль «Memebership Manager» был вынужден завершить работу. Причиной этого стало большое количество последовательных неудачных сетевых запросов.",
+ "no_matrix_2_authorization_service": "Ваша служба авторизации для медиасервера (SFU) не обновлена до последней версии.",
+ "open_elsewhere": "Открыто в другой вкладке",
+ "open_elsewhere_description": "{{brand}} был открыт в другой вкладке. Если это неверно, попробуйте перезагрузить страницу.",
+ "room_creation_restricted": "Не удалось создать вызов",
+ "room_creation_restricted_description": "Создание вызовов может быть доступно только авторизованным пользователям. Повторите попытку позже или обратитесь к администратору сервера, если проблема не исчезнет.",
+ "unexpected_ec_error": "Произошла непредвиденная ошибка (<0> Код ошибки:0><1>{{ errorCode }}1> ). Обратитесь к администратору вашего сервера."
+ },
+ "group_call_loader": {
+ "banned_body": "Вас заблокировали в этой комнате",
+ "banned_heading": "Заблокирован",
+ "call_ended_body": "Вы были удалены из звонка.",
+ "call_ended_heading": "Вызов завершен",
+ "knock_reject_body": "Участники комнаты отклонили ваш запрос на присоединение.",
+ "knock_reject_heading": "Не разрешено присоединиться",
+ "reason": "Причина: {{reason}}"
+ },
+ "handset": {
+ "overlay_back_button": "Вернуться в режим динамика",
+ "overlay_description": "Работает только при использовании приложения",
+ "overlay_title": "Режим трубки"
+ },
+ "hangup_button_label": "Завершить звонок",
"header_label": "Главная Element Call",
+ "header_participants_label": "Участники",
+ "invite_modal": {
+ "link_copied_toast": "Ссылка скопирована в буфер обмена",
+ "title": "Пригласить в этот звонок"
+ },
"join_existing_call_modal": {
"join_button": "Да, присоединиться",
"text": "Этот звонок уже существует, хотите присоединиться?",
"title": "Присоединиться к существующему звонку?"
},
+ "layout_grid_label": "Сетка",
"layout_spotlight_label": "Внимание",
"lobby": {
- "join_button": "Присоединиться"
+ "ask_to_join": "Запрос на подключение к звонку",
+ "join_as_guest": "Присоединиться в качестве гостя",
+ "join_button": "Присоединиться",
+ "leave_button": "Вернуться к списку недавних",
+ "waiting_for_invite": "Запрос отправлен"
},
+ "log_in": "Войти",
"logging_in": "Вход…",
"login_auth_links": "<0>Создать аккаунт0> или <2>Зайти как гость2>",
+ "login_auth_links_prompt": "Еще не зарегистрированы?",
+ "login_subheading": "Продолжить в Element",
"login_title": "Вход",
+ "microphone_off": "Микрофон выключен",
+ "microphone_on": "Микрофон включен",
+ "mute_microphone_button_label": "Отключить микрофон",
+ "participant_count_one": "{{count, number}}",
+ "participant_count_few": "{{count, number}}",
+ "participant_count_many": "{{count, number}}",
+ "qr_code": "QR код",
+ "rageshake_button_error_caption": "Повторить отправку журналов",
"rageshake_request_modal": {
"body": "У одного из участников звонка есть неполадки. Чтобы лучше диагностировать похожие проблемы, нам нужен журнал отладки.",
"title": "Запрос журнала отладки"
@@ -54,30 +173,87 @@
"rageshake_send_logs": "Отправить журнал отладки",
"rageshake_sending": "Отправка…",
"rageshake_sending_logs": "Отправка журнала отладки…",
+ "rageshake_sent": "Спасибо!",
"recaptcha_dismissed": "Проверка не пройдена",
"recaptcha_not_loaded": "Невозможно начать проверку",
+ "recaptcha_ssla_caption": "Этот сайт защищен reCAPTCHA, и к нему применяются <2> Политика конфиденциальности 2> и <6> Условия обслуживания Google. 6> <9>9>Нажимая «Зарегистрироваться», вы соглашаетесь с нашим лицензионным соглашением на <12> программное обеспечение и услуги (SSLA) 12>",
"register": {
"passwords_must_match": "Пароли должны совпадать",
"registering": "Регистрация…"
},
"register_auth_links": "<0>Уже есть аккаунт?0><1><0>Войти с ним0> или <2>Зайти как гость2>1>",
"register_confirm_password_label": "Подтвердите пароль",
+ "register_heading": "Создать учетную запись",
"return_home_button": "Вернуться в Начало",
+ "room_auth_view_continue_button": "Продолжить",
+ "room_auth_view_ssla_caption": "Нажимая кнопку \"Присоединиться к звонку\", вы соглашаетесь с нашим <2>Лицензионное соглашение на программное обеспечение и услуги (SSLA)2>",
"screenshare_button_label": "Поделиться экраном",
"settings": {
+ "audio_tab": {
+ "effect_volume_description": "Отрегулируйте громкость воспроизведения реакций и эффектов поднятия руки.",
+ "effect_volume_label": "Громкость звукового эффекта"
+ },
+ "background_blur_header": "Фон",
+ "background_blur_label": "Размытие фона видео",
+ "blur_not_supported_by_browser": "(Размытие фона не поддерживается этим устройством.)",
"developer_tab_title": "Разработчику",
+ "devices": {
+ "camera": "Камера",
+ "camera_numbered": "Камера {{n}}",
+ "change_device_button": "Изменить аудиоустройство",
+ "default": "По умолчанию",
+ "default_named": "По умолчанию <2>({{name}})2>",
+ "handset": "Динамик телефона",
+ "loudspeaker": "Громкоговоритель",
+ "microphone": "Микрофон",
+ "microphone_numbered": "Микрофон {{n}}",
+ "speaker": "Динамик",
+ "speaker_numbered": "Динамик {{n}}"
+ },
"feedback_tab_body": "Если у вас возникли проблемы или вы просто хотите оставить отзыв, отправьте нам краткое описание ниже.",
"feedback_tab_description_label": "Ваш отзыв",
"feedback_tab_h4": "Отправить отзыв",
"feedback_tab_send_logs_label": "Приложить журнал отладки",
"feedback_tab_thank_you": "Спасибо. Мы получили ваш отзыв!",
"feedback_tab_title": "Отзыв",
- "opt_in_description": "<0>0><1>1>Вы можете отозвать согласие, сняв этот флажок. Если вы в данный момент находитесь в разговоре, эта настройка вступит в силу по окончании разговора."
+ "opt_in_description": "<0>0><1>1>Вы можете отозвать согласие, сняв этот флажок. Если вы в данный момент находитесь в разговоре, эта настройка вступит в силу по окончании разговора.",
+ "preferences_tab": {
+ "developer_mode_label": "Режим разработчика",
+ "developer_mode_label_description": "Включить режим разработчика и показать настройки.",
+ "introduction": "Здесь вы можете настроить дополнительные параметры для улучшения качества работы.",
+ "reactions_play_sound_description": "Воспроизведите звуковой эффект, когда кто-либо отреагирует на звонок.",
+ "reactions_play_sound_label": "Воспроизводить звуки реакции",
+ "reactions_show_description": "Показать реакции",
+ "reactions_show_label": "Показывать анимацию, когда кто-либо отправляет реакцию.",
+ "show_hand_raised_timer_description": "Показывать таймер, когда участник поднимает руку",
+ "show_hand_raised_timer_label": "Показать продолжительность поднятия руки"
+ }
},
- "star_rating_input_label_one": "{{count}} отмечен",
- "star_rating_input_label_other": "{{count}} отмеченных",
+ "star_rating_input_label_one": "{{count}} звезда",
+ "star_rating_input_label_few": "{{count}} звезды",
+ "star_rating_input_label_many": "{{count}} звезд",
+ "start_new_call": "Начать новый звонок",
+ "start_video_button_label": "Начать видео",
+ "stop_screenshare_button_label": "Демонстрация экрана",
+ "stop_video_button_label": "Остановить видео",
"submitting": "Отправляем…",
+ "switch_camera": "Переключить камеру",
"unauthenticated_view_body": "Ещё не зарегистрированы? <2>Создайте аккаунт2>",
"unauthenticated_view_login_button": "Войдите в свой аккаунт",
- "version": "Версия: {{version}}"
+ "unauthenticated_view_ssla_caption": "Нажимая «Перейти», вы соглашаетесь с нашим лицензионным соглашением на <2> программное обеспечение и услуги (SSLA) 2>",
+ "unmute_microphone_button_label": "Включить микрофон",
+ "version": "{{productName}} версия: {{version}}",
+ "video_tile": {
+ "always_show": "Показывать всегда",
+ "call_ended": "Вызов завершен",
+ "calling": "Вызов…",
+ "camera_starting": "Загрузка видео...",
+ "collapse": "Свернуть",
+ "expand": "Развернуть",
+ "mute_for_me": "Заглушить звук для меня",
+ "muted_for_me": "Приглушить для меня",
+ "screen_share_volume": "Громкость демонстрации экрана",
+ "volume": "Громкость",
+ "waiting_for_media": "В ожидании медиа..."
+ }
}
diff --git a/locales/sk/app.json b/locales/sk/app.json
index 726b9e5c2..b6ef89f9e 100644
--- a/locales/sk/app.json
+++ b/locales/sk/app.json
@@ -5,22 +5,23 @@
"action": {
"close": "Zatvoriť",
"copy_link": "Kopírovať odkaz",
+ "edit": "Upraviť",
"go": "Prejsť",
"invite": "Pozvať",
+ "lower_hand": "Dať dole ruku",
"no": "Nie",
+ "pick_reaction": "Vybrať reakciu",
+ "raise_hand": "Zdvihnúť ruku",
"register": "Registrovať sa",
"remove": "Odstrániť",
+ "show_less": "Zobraziť menej",
+ "show_more": "Zobraziť viac",
"sign_in": "Prihlásiť sa",
"sign_out": "Odhlásiť sa",
- "submit": "Odoslať"
- },
- "analytics_notice": "Účasťou v tejto beta verzii súhlasíte so zhromažďovaním anonymných údajov, ktoré použijeme na zlepšenie produktu. Viac informácií o tom, ktoré údaje sledujeme, nájdete v našich <2>Zásadách ochrany osobných údajov2> a <5>Zásadách používania súborov cookie5>.",
- "app_selection_modal": {
- "continue_in_browser": "Pokračovať v prehliadači",
- "open_in_app": "Otvoriť v aplikácii",
- "text": "Ste pripravení sa pridať?",
- "title": "Vybrať aplikáciu"
+ "submit": "Odoslať",
+ "upload_file": "Nahrať súbor"
},
+ "analytics_notice": "Účasťou v tejto beta verzii súhlasíte so zhromažďovaním anonymných údajov, ktoré použijeme na zlepšenie produktu. Viac informácií o tom, ktoré údaje sledujeme, nájdete v našich <2>Zásadách ochrany osobných údajov2> a <6>Zásadách používania súborov cookie6>.",
"call_ended_view": {
"create_account_button": "Vytvoriť účet",
"create_account_prompt": "<0>Prečo neskončiť nastavením hesla, aby ste si zachovali svoj účet? 0><1>Budete si môcť ponechať svoje meno a nastaviť obrázok, ktorý sa bude používať pri budúcich hovoroch1>",
@@ -33,18 +34,103 @@
},
"call_name": "Názov hovoru",
"common": {
+ "analytics": "Analytika",
+ "audio": "Zvuk",
"avatar": "Obrázok",
+ "back": "Späť",
"display_name": "Zobrazované meno",
"encrypted": "Šifrované",
"home": "Domov",
"loading": "Načítanie…",
+ "next": "Ďalej",
+ "options": "Možnosti",
"password": "Heslo",
+ "preferences": "Predvoľby",
"profile": "Profil",
+ "reaction": "Reakcia",
+ "reactions": "Reakcie",
+ "reconnecting": "Opätovné pripájanie...",
"settings": "Nastavenia",
"unencrypted": "Nie je zašifrované",
- "username": "Meno používateľa"
+ "username": "Meno používateľa",
+ "video": "Video"
+ },
+ "developer_mode": {
+ "always_show_iphone_earpiece": "Zobraziť možnosť slúchadla iPhone na všetkých platformách",
+ "crypto_version": "Krypto verzia: {{version}}",
+ "custom_livekit_url": {
+ "current_url": "Aktuálne nastavené na: ",
+ "from_config": "Momentálne nie je nastavené žiadne prepísanie. Používa sa URL adresa zo známeho zdroja alebo konfigurácie.",
+ "label": "Vlastná Livekit URL adresa",
+ "reset": "Obnoviť prepísanie",
+ "save": "Uložiť",
+ "saving": "Ukladá sa…"
+ },
+ "debug_tile_layout_label": "Ladenie rozloženia dlaždíc",
+ "device_id": "ID zariadenia: {{id}}",
+ "duplicate_tiles_label": "Počet ďalších kópií dlaždíc na účastníka",
+ "environment_variables": "Premenné prostredia",
+ "hostname": "Názov hostiteľa: {{hostname}}",
+ "livekit_server_info": "Informácie o serveri LiveKit",
+ "livekit_sfu": "LiveKit SFU: {{url}}",
+ "matrixRTCMode": {
+ "Comptibility": {
+ "description": "Kompatibilné s domovskými servermi, ktoré nepodporujú sticky udalosti (ale všetci ostatní EC klienti sú v0.17.0 alebo novší)",
+ "label": "Kompatibilita: stavové udalosti a multi SFU"
+ },
+ "Legacy": {
+ "description": "Kompatibilné so staršími verziami EC, ktoré nepodporujú viacero SFU",
+ "label": "Staršie: stavové udalosti a najstaršie členstvo SFU"
+ },
+ "Matrix_2_0": {
+ "description": "Kompatibilné iba s domovskými servermi podporujúcimi prilepené udalosti a všetkými EC klientmi v0.17.0 alebo novšími.",
+ "label": "Matrix 2.0: prilepené udalosti a viacero SFU"
+ },
+ "title": "Režim MatrixRTC"
+ },
+ "matrix_id": "Matrix ID: {{id}}",
+ "mute_all_audio": "Stlmiť všetky zvuky (účastníkov, reakcií, zvuky pripojenia)",
+ "show_connection_stats": "Zobraziť štatistiky pripojenia",
+ "url_params": "Parametre URL adresy"
},
"disconnected_banner": "Spojenie so serverom sa stratilo.",
+ "error": {
+ "call_is_not_supported": "Hovor nie je podporovaný",
+ "call_not_found": "Hovor nebol nájdený",
+ "call_not_found_description": "<0>Zdá sa, že tento odkaz nepatrí k žiadnemu existujúcemu hovoru. Skontrolujte, či máte správny odkaz, alebo <2>vytvorte nový2>.0>",
+ "connection_lost": "Strata spojenia",
+ "connection_lost_description": "Boli ste odpojení od hovoru.",
+ "e2ee_unsupported": "Nekompatibilný prehliadač",
+ "e2ee_unsupported_description": "Váš webový prehliadač nepodporuje šifrované hovory. Medzi podporované prehliadače patria Chrome, Safari a Firefox 117+.",
+ "failed_to_start_livekit": "Nepodarilo sa spustiť pripojenie Livekit",
+ "generic": "Niečo sa pokazilo",
+ "generic_description": "Odoslanie záznamov ladenia nám pomôže nájsť problém.",
+ "insufficient_capacity": "Nedostatočná kapacita",
+ "insufficient_capacity_description": "Server dosiahol svoju maximálnu kapacitu a momentálne sa nemôžete pripojiť k hovoru. Skúste to znova neskôr alebo kontaktujte správcu servera, ak problém pretrváva.",
+ "matrix_rtc_transport_missing": "Server nie je nastavený na prácu s aplikáciou {{brand}}. Kontaktujte prosím správcu svojho servera (Doména: {{domain}}, Kód chyby: {{ errorCode }}).",
+ "membership_manager": "Chyba správcu členstva",
+ "membership_manager_description": "Správca členstva musel byť vypnutý. Príčinou je mnoho po sebe idúcich neúspešných sieťových požiadaviek.",
+ "no_matrix_2_authorization_service": "Autorizačná služba pre váš mediálny server (SFU) je zastaraná.",
+ "open_elsewhere": "Otvorené na inej karte",
+ "open_elsewhere_description": "Aplikácia {{brand}} bola otvorená na inej karte. Ak sa vám to nezdá, skúste znovu načítať stránku.",
+ "room_creation_restricted": "Nepodarilo sa vytvoriť hovor",
+ "room_creation_restricted_description": "Uskutočňovanie hovorov môže byť obmedzené iba na autorizovaných používateľov. Skúste to znova neskôr alebo kontaktujte správcu servera, ak problém pretrváva.",
+ "unexpected_ec_error": "Vyskytla sa neočakávaná chyba (<0>Kód chyby:0> <1>{{ errorCode }}1>). Kontaktujte prosím správcu vášho servera."
+ },
+ "group_call_loader": {
+ "banned_body": "Dostali ste zákaz vstupu do miestnosti.",
+ "banned_heading": "Zakázané",
+ "call_ended_body": "Boli ste odstránení z hovoru.",
+ "call_ended_heading": "Hovor bol ukončený",
+ "knock_reject_body": "Členovia miestnosti odmietli vašu žiadosť o pripojenie.",
+ "knock_reject_heading": "Nie je povolené pripojiť sa",
+ "reason": "Dôvod"
+ },
+ "handset": {
+ "overlay_back_button": "Späť do režimu reproduktora",
+ "overlay_description": "Funguje iba pri používaní aplikácie",
+ "overlay_title": "Režim slúchadla"
+ },
"hangup_button_label": "Ukončiť hovor",
"header_label": "Domov Element Call",
"header_participants_label": "Účastníci",
@@ -60,15 +146,25 @@
"layout_grid_label": "Sieť",
"layout_spotlight_label": "Stredobod",
"lobby": {
+ "ask_to_join": "Požiadať o pripojenie k hovoru",
+ "join_as_guest": "Pripojiť sa ako hosť",
"join_button": "Pripojiť sa k hovoru",
- "leave_button": "Späť k nedávnym"
+ "leave_button": "Späť k nedávnym",
+ "waiting_for_invite": "Žiadosť odoslaná"
},
+ "log_in": "Prihlásiť sa",
"logging_in": "Prihlasovanie…",
"login_auth_links": "<0>Vytvoriť konto0> Alebo <2>Prihlásiť sa ako hosť2>",
+ "login_auth_links_prompt": "Nie ste ešte zaregistrovaní?",
+ "login_subheading": "Ak chcete pokračovať na Element",
"login_title": "Prihlásiť sa",
"microphone_off": "Mikrofón vypnutý",
"microphone_on": "Mikrofón zapnutý",
"mute_microphone_button_label": "Stlmiť mikrofón",
+ "participant_count_one": "{{count, number}}",
+ "participant_count_few": "{{count, number}}",
+ "participant_count_other": "{{count, number}}",
+ "qr_code": "QR kód",
"rageshake_button_error_caption": "Opakovať odoslanie záznamov",
"rageshake_request_modal": {
"body": "Ďalší používateľ v tomto hovore má problém. Aby sme mohli lepšie diagnostikovať tieto problémy, chceli by sme získať záznam o ladení.",
@@ -80,33 +176,81 @@
"rageshake_sent": "Ďakujeme!",
"recaptcha_dismissed": "Recaptcha zamietnutá",
"recaptcha_not_loaded": "Recaptcha sa nenačítala",
+ "recaptcha_ssla_caption": "Táto stránka je chránená reCAPTCHA a platia <2>Zásady ochrany osobných údajov2> a <6>Podmienky služby6> spoločnosti Google. <9>9>Kliknutím na tlačidlo „Registrovať“ súhlasíte s našou <12>Licenčnou zmluvou o softvéri a službách (SSLA)12>",
"register": {
"passwords_must_match": "Heslá sa musia zhodovať",
"registering": "Registrácia…"
},
"register_auth_links": "<0>Už máte konto?0><1><0>Prihláste sa0> Alebo <2>Prihlásiť sa ako hosť2>1>",
"register_confirm_password_label": "Potvrdiť heslo",
+ "register_heading": "Vytvorte si účet",
"return_home_button": "Návrat na domovskú obrazovku",
+ "room_auth_view_continue_button": "Pokračovať",
+ "room_auth_view_ssla_caption": "Kliknutím na „Pripojiť sa k hovoru teraz“ súhlasíte s našou <2>Licenčnou zmluvou o softvéri a službách (SSLA)2>",
"screenshare_button_label": "Zdieľať obrazovku",
"settings": {
+ "audio_tab": {
+ "effect_volume_description": "Upraviť hlasitosť, pri ktorej sa prehrávajú reakcie a efekty zdvihnutia ruky.",
+ "effect_volume_label": "Hlasitosť zvukového efektu"
+ },
+ "background_blur_header": "Pozadie",
+ "background_blur_label": "Rozmazať pozadie videa",
+ "blur_not_supported_by_browser": "(Rozmazanie pozadia nie je podporované týmto zariadením.)",
"developer_tab_title": "Vývojár",
+ "devices": {
+ "camera": "Kamera",
+ "camera_numbered": "Kamera {{n}}",
+ "change_device_button": "Zmeniť zvukové zariadenie",
+ "default": "Predvolené",
+ "default_named": "Predvolené <2>({{name}})2>",
+ "handset": "Slúchadlo",
+ "loudspeaker": "Reproduktor",
+ "microphone": "Mikrofón",
+ "microphone_numbered": "Mikrofón {{n}}",
+ "speaker": "Reproduktor",
+ "speaker_numbered": "Reproduktor {{n}}"
+ },
"feedback_tab_body": "Ak máte problémy alebo jednoducho chcete poskytnúť spätnú väzbu, pošlite nám krátky popis nižšie.",
"feedback_tab_description_label": "Vaša spätná väzba",
"feedback_tab_h4": "Odoslať spätnú väzbu",
"feedback_tab_send_logs_label": "Zahrnúť záznamy o ladení",
"feedback_tab_thank_you": "Ďakujeme, dostali sme vašu spätnú väzbu!",
"feedback_tab_title": "Spätná väzba",
- "opt_in_description": "<0>0><1>1>Súhlas môžete odvolať zrušením označenia tohto políčka. Ak práve prebieha hovor, toto nastavenie nadobudne platnosť po skončení hovoru."
+ "opt_in_description": "<0>0><1>1>Súhlas môžete odvolať zrušením označenia tohto políčka. Ak práve prebieha hovor, toto nastavenie nadobudne platnosť po skončení hovoru.",
+ "preferences_tab": {
+ "developer_mode_label": "Režim vývojára",
+ "developer_mode_label_description": "Povoliť režim vývojára a zobraziť kartu Nastavenia vývojára.",
+ "introduction": "Tu môžete nastaviť ďalšie možnosti pre lepší zážitok.",
+ "reactions_play_sound_description": "Prehrať zvukový efekt, keď niekto odošle reakciu na hovor.",
+ "reactions_play_sound_label": "Prehrať zvuky reakcie",
+ "reactions_show_description": "Zobraziť animáciu, keď niekto odošle reakciu.",
+ "reactions_show_label": "Zobraziť reakcie",
+ "show_hand_raised_timer_description": "Zobraziť časovač, keď účastník zdvihne ruku",
+ "show_hand_raised_timer_label": "Zobraziť trvanie zdvihnutia ruky"
+ }
},
"star_rating_input_label_one": "{{count}} hviezdička",
+ "star_rating_input_label_few": "{{count}} hviezdičky",
"star_rating_input_label_other": "{{count}} hviezdičiek",
"start_new_call": "Spustiť nový hovor",
"start_video_button_label": "Spustiť video",
"stop_screenshare_button_label": "Zdieľanie obrazovky",
"stop_video_button_label": "Zastaviť video",
"submitting": "Odosielanie…",
+ "switch_camera": "Prepnúť fotoaparát",
"unauthenticated_view_body": "Ešte nie ste zaregistrovaný? <2>Vytvorte si účet2>",
"unauthenticated_view_login_button": "Prihláste sa do svojho konta",
+ "unauthenticated_view_ssla_caption": "Kliknutím na tlačidlo „Prejsť“ súhlasítes našou <2>Licenčnou zmluvou o softvéri a službách (SSLA)2>",
"unmute_microphone_button_label": "Zrušiť stlmenie mikrofónu",
- "version": "Verzia: {{version}}"
+ "version": "Verzia {{productName}}: {{version}}",
+ "video_tile": {
+ "always_show": "Vždy zobraziť",
+ "camera_starting": "Načítavanie videa...",
+ "collapse": "Zbaliť",
+ "expand": "Rozbaliť",
+ "mute_for_me": "Pre mňa stlmiť",
+ "muted_for_me": "Pre mňa stlmené",
+ "volume": "Hlasitosť",
+ "waiting_for_media": "Čaká sa na médiá..."
+ }
}
diff --git a/locales/sv/app.json b/locales/sv/app.json
index 76b7d2d84..8e27e5cad 100644
--- a/locales/sv/app.json
+++ b/locales/sv/app.json
@@ -1,7 +1,254 @@
{
+ "a11y": {
+ "user_menu": "Användarmeny"
+ },
+ "action": {
+ "close": "Stäng",
+ "copy_link": "Kopiera länk",
+ "edit": "Redigera",
+ "go": "Gå",
+ "invite": "Bjud in",
+ "lower_hand": "Sänk handen",
+ "no": "Nej",
+ "pick_reaction": "Välj reaktion",
+ "raise_hand": "Räck upp handen",
+ "register": "Registrera",
+ "remove": "Ta bort",
+ "show_less": "Visa mindre",
+ "show_more": "Visa mer",
+ "sign_in": "Logga in",
+ "sign_out": "Logga ut",
+ "submit": "Skicka",
+ "upload_file": "Ladda upp fil"
+ },
+ "analytics_notice": "Genom att delta i denna beta samtycker du till insamling av anonyma uppgifter, som vi använder för att förbättra produkten. Du kan hitta mer information om vilka data vi spårar i vår <2>integritetspolicy2> och vår <5>cookiepolicy5>.",
"call_ended_view": {
- "headline": "{{displayName}}, ditt samtal har avslutats."
+ "create_account_button": "Skapa konto",
+ "create_account_prompt": "<0>Varför inte avsluta genom att skapa ett lösenord för att behålla ditt konto?0><1>Du kommer att kunna behålla ditt namn och ställa in en avatar för användning vid framtida samtal1>",
+ "feedback_done": "<0>Tack för din feedback! 0>",
+ "feedback_prompt": "<0>Vi vill gärna höra din feedback så att vi kan förbättra din upplevelse. 0>",
+ "headline": "{{displayName}}, ditt samtal har avslutats.",
+ "not_now_button": "Inte nu, återgå till startskärmen",
+ "reconnect_button": "Återanslut",
+ "survey_prompt": "Hur gick det?"
+ },
+ "call_name": "Namn på samtal",
+ "common": {
+ "analytics": "Analysdata",
+ "audio": "Ljud",
+ "avatar": "Avatar",
+ "back": "Tillbaka",
+ "display_name": "Visningsnamn",
+ "encrypted": "Krypterad",
+ "home": "Hem",
+ "loading": "Laddar …",
+ "next": "Nästa",
+ "options": "Alternativ",
+ "password": "Lösenord",
+ "preferences": "Alternativ",
+ "profile": "Profil",
+ "reaction": "Reaktion",
+ "reactions": "Reaktioner",
+ "reconnecting": "Återansluter …",
+ "settings": "Inställningar",
+ "unencrypted": "Inte krypterad",
+ "username": "Användarnamn",
+ "video": "Video"
+ },
+ "developer_mode": {
+ "always_show_iphone_earpiece": "Visa iPhone-hörsnäckealternativ på alla plattformar",
+ "crypto_version": "Kryptoversion: {{version}}",
+ "custom_livekit_url": {
+ "current_url": "För närvarande inställd på: ",
+ "from_config": "För närvarande är ingen överskrivning inställd. URL från well-known eller konfig används.",
+ "label": "Anpassad Livekit-url",
+ "reset": "Återställ överskrivning",
+ "save": "Spara",
+ "saving": "Sparar…"
+ },
+ "debug_tile_layout_label": "Felsök panelarrangemang",
+ "device_id": "Enhets-ID: {{id}}",
+ "duplicate_tiles_label": "Antal ytterligare panelkopior per deltagare",
+ "environment_variables": "Miljövariabler",
+ "hostname": "Värdnamn: {{hostname}}",
+ "livekit_server_info": "LiveKit-serverinfo",
+ "livekit_sfu": "LiveKit SFU: {{url}}",
+ "matrixRTCMode": {
+ "Comptibility": {
+ "description": "Kompatibel med hemservrar som inte stöder sticky events (men alla andra EC-klienter är v0.17.0 eller senare)",
+ "label": "Kompatibilitet: tillståndshändelser och multi-SFU"
+ },
+ "Legacy": {
+ "description": "Kompatibel med äldre versioner av EC som inte stöder multi SFU",
+ "label": "Legacy: state events och oldest membership SFU"
+ },
+ "Matrix_2_0": {
+ "description": "Endast kompatibel med hemservrar som stöder sticky events och alla EC-klienter v0.17.0 eller senare",
+ "label": "Matrix 2.0: sticky events & multi SFU"
+ },
+ "title": "MatrixRTC-läge"
+ },
+ "matrix_id": "Matrix-ID: {{id}}",
+ "mute_all_audio": "Tysta allt ljud (deltagare, reaktioner, anslutningsljud)",
+ "show_connection_stats": "Visa anslutningsstatistik",
+ "url_params": "URL-parametrar"
+ },
+ "disconnected_banner": "Anslutningen till servern har brutits.",
+ "error": {
+ "call_is_not_supported": "Call stöds inte",
+ "call_not_found": "Samtal hittades inte",
+ "call_not_found_description": "<0>Den länken verkar inte tillhöra något befintligt samtal. Kontrollera att du har rätt länk, eller <2>skapa en ny2>.0>",
+ "connection_lost": "Anslutning förlorad",
+ "connection_lost_description": "Du kopplades bort från samtalet.",
+ "e2ee_unsupported": "Inkompatibel webbläsare",
+ "e2ee_unsupported_description": "Din webbläsare stöder inte krypterade samtal. Webbläsare som stöds inkluderar Chrome, Safari och Firefox 117+.",
+ "failed_to_start_livekit": "Misslyckades att starta Livekit-anslutning",
+ "generic": "Något gick fel",
+ "generic_description": "Att skicka felsökningsloggar hjälper oss att spåra problemet.",
+ "insufficient_capacity": "Otillräcklig kapacitet",
+ "insufficient_capacity_description": "Servern har nått sin maximala kapacitet och du kan inte gå med i samtalet just nu. Försök igen senare, eller kontakta serveradministratören om problemet kvarstår.",
+ "matrix_rtc_transport_missing": "Servern är inte konfigurerad för att fungera med {{brand}}. Vänligen kontakta din serveradministratör (Domän: {{domain}}, Felkod: {{ errorCode }}).",
+ "membership_manager": "Fel i medlemskapshanteraren",
+ "membership_manager_description": "Medlemskapshanteraren var tvungen att stängas av. Detta orsakas av många misslyckade nätverksförfrågningar i rad.",
+ "no_matrix_2_authorization_service": "Auktoriseringstjänsten för din medieserver (SFU) är föråldrad.",
+ "open_elsewhere": "Öppnades i en annan flik",
+ "open_elsewhere_description": "{{brand}} har öppnats i en annan flik. Om det inte låter rätt, pröva att ladda om sidan.",
+ "room_creation_restricted": "Misslyckades att skapa samtal",
+ "room_creation_restricted_description": "Samtalsskapande kan vara begränsat till endast behöriga användare. Försök igen senare eller kontakta serveradministratören om problemet kvarstår.",
+ "unexpected_ec_error": "Ett oväntat fel inträffade (<0>Felkod:0> <1>{{ errorCode }}1>). Kontakta din serveradministratör."
+ },
+ "group_call_loader": {
+ "banned_body": "Du har bannats från rummet.",
+ "banned_heading": "Bannad",
+ "call_ended_body": "Du har har tagits bort från samtalet.",
+ "call_ended_heading": "Samtal avslutat",
+ "knock_reject_body": "Rumsmedlemmarna avslog din begäran om att gå med.",
+ "knock_reject_heading": "Inte tillåten att gå med",
+ "reason": "Anledning"
+ },
+ "handset": {
+ "overlay_back_button": "Tillbaka till högtalarläge",
+ "overlay_description": "Fungerar bara när appen används",
+ "overlay_title": "Telefonläge"
+ },
+ "hangup_button_label": "Avsluta samtal",
+ "header_label": "Element Call Hem",
+ "header_participants_label": "Deltagare",
+ "invite_modal": {
+ "link_copied_toast": "Länk kopierad till klippbordet",
+ "title": "Bjud in till det här samtalet"
+ },
+ "join_existing_call_modal": {
+ "join_button": "Ja, gå med i samtal",
+ "text": "Det här samtalet finns redan, vill du gå med?",
+ "title": "Gå med i befintligt samtal?"
+ },
+ "layout_grid_label": "Rutnät",
+ "layout_spotlight_label": "Spotlight",
+ "lobby": {
+ "ask_to_join": "Be om att delta i samtalet",
+ "join_as_guest": "Gå med som gäst",
+ "join_button": "Anslut till samtal",
+ "leave_button": "Tillbaka till senaste",
+ "waiting_for_invite": "Begäran skickad"
+ },
+ "log_in": "Logga in",
+ "logging_in": "Loggar in …",
+ "login_auth_links": "<0>Skapa ett konto0> eller <2>Kom åt som gäst2>",
+ "login_auth_links_prompt": "Inte registrerad än?",
+ "login_subheading": "För att fortsätta till Element",
+ "login_title": "Logga in",
+ "microphone_off": "Mikrofon av",
+ "microphone_on": "Mikrofon på",
+ "mute_microphone_button_label": "Tysta mikrofonen",
+ "participant_count_one": "{{count, number}}",
+ "participant_count_other": "{{count, number}}",
+ "qr_code": "QR-kod",
+ "rageshake_button_error_caption": "Försök att skicka loggar igen",
+ "rageshake_request_modal": {
+ "body": "En annan användare i det här samtalet har ett problem. För att bättre kunna diagnostisera dessa problem vill vi samla in en felsökningslogg.",
+ "title": "Begäran om felsökningslogg"
+ },
+ "rageshake_send_logs": "Skicka felsökningsloggar",
+ "rageshake_sending": "Skickar …",
+ "rageshake_sending_logs": "Skickar felsökningsloggar …",
+ "rageshake_sent": "Tack!",
+ "recaptcha_dismissed": "Recaptcha avvisad",
+ "recaptcha_not_loaded": "Recaptcha laddades inte",
+ "recaptcha_ssla_caption": "Denna webbplats skyddas av ReCAPTCHA och Googles <2>sekretesspolicy2> och <6>användarvillkor6> gäller.<9>9>Genom att klicka på ”Registrera” godkänner du vårt <12>licensavtal för programvara och tjänster12>",
+ "register": {
+ "passwords_must_match": "Lösenorden måste överensstämma",
+ "registering": "Registrerar …"
+ },
+ "register_auth_links": "<0>Har du redan ett konto?0><1><0>Logga in0> eller <2>kom åt som en gäst2>1>",
+ "register_confirm_password_label": "Bekräfta lösenord",
+ "register_heading": "Skapa ditt konto",
+ "return_home_button": "Återgå till startskärmen",
+ "room_auth_view_continue_button": "Fortsätt",
+ "room_auth_view_ssla_caption": "Genom att klicka på ”Anslut till samtal nu” godkänner du vårt <2>licensavtal för programvara och tjänster2>",
+ "screenshare_button_label": "Dela skärm",
+ "settings": {
+ "audio_tab": {
+ "effect_volume_description": "Justera volymen vid vilken reaktioner och handuppräckningseffekter spelas",
+ "effect_volume_label": "Ljudeffektsvolym"
+ },
+ "background_blur_header": "Bakgrund",
+ "background_blur_label": "Gör bakgrunden i videon suddig",
+ "blur_not_supported_by_browser": "(Bakgrundssuddighet stöds inte av den här enheten.)",
+ "developer_tab_title": "Utvecklare",
+ "devices": {
+ "camera": "Kamera",
+ "camera_numbered": "Kamera {{n}}",
+ "change_device_button": "Byt ljudenhet",
+ "default": "Förval",
+ "default_named": "Förval <2>({{name}})2>",
+ "handset": "Telefonlur",
+ "loudspeaker": "Högtalare",
+ "microphone": "Mikrofon",
+ "microphone_numbered": "Mikrofon {{n}}",
+ "speaker": "Högtalare",
+ "speaker_numbered": "Högtalare {{n}}"
+ },
+ "feedback_tab_body": "Om du har problem eller bara vill ge lite återkoppling, skicka oss en kort beskrivning nedan.",
+ "feedback_tab_description_label": "Din återkoppling",
+ "feedback_tab_h4": "Skicka återkoppling",
+ "feedback_tab_send_logs_label": "Inkludera felsökningsloggar",
+ "feedback_tab_thank_you": "Tack, vi har tagit emot din återkoppling!",
+ "feedback_tab_title": "Återkoppling",
+ "opt_in_description": "<0>0><1>1>Du kan återkalla ditt samtycke genom att avmarkera den här rutan. Om du för närvarande är i ett samtal träder den här inställningen i kraft vid slutet av samtalet.",
+ "preferences_tab": {
+ "developer_mode_label": "Utvecklarläge",
+ "developer_mode_label_description": "Aktivera utvecklarläger och visa fliken utvecklarinställningar.",
+ "introduction": "Här kan du konfigurera extra alternativ för en förbättrad upplevelse.",
+ "reactions_play_sound_description": "Spela en ljudeffekt när någon skickar in en reaktion i ett samtal.",
+ "reactions_play_sound_label": "Spela reaktionsljud",
+ "reactions_show_description": "Visa en animering när någon skickar en reaktion.",
+ "reactions_show_label": "Visa reaktioner",
+ "show_hand_raised_timer_description": "Visa en timer när en deltagare räcker upp handen",
+ "show_hand_raised_timer_label": "Visa varaktighet för handuppräckning"
+ }
},
"star_rating_input_label_one": "{{count}} stjärna",
- "star_rating_input_label_other": "{{count}} stjärnor"
+ "star_rating_input_label_other": "{{count}} stjärnor",
+ "start_new_call": "Starta ett nytt samtal",
+ "start_video_button_label": "Starta video",
+ "stop_screenshare_button_label": "Delar skärm",
+ "stop_video_button_label": "Stoppa video",
+ "submitting": "Skickar …",
+ "switch_camera": "Byt kamera",
+ "unauthenticated_view_body": "Inte registrerad än? <2>Skapa ett konto2>",
+ "unauthenticated_view_login_button": "Logga in på ditt konto",
+ "unauthenticated_view_ssla_caption": "Genom att klicka på ”Kör” godkänner du vårt <2>licensavtal för programvara och tjänster2>",
+ "unmute_microphone_button_label": "Sluta tysta mikrofonen",
+ "version": "Version: {{version}}",
+ "video_tile": {
+ "always_show": "Visa alltid",
+ "camera_starting": "Video laddar …",
+ "collapse": "Kollapsa",
+ "expand": "Expandera",
+ "mute_for_me": "Tysta för mig",
+ "muted_for_me": "Tystad för mig",
+ "volume": "Volym",
+ "waiting_for_media": "Väntar på media …"
+ }
}
diff --git a/locales/tr/app.json b/locales/tr/app.json
index 67a9b7e86..6fd605d33 100644
--- a/locales/tr/app.json
+++ b/locales/tr/app.json
@@ -1,42 +1,134 @@
{
+ "a11y": {
+ "user_menu": "Kullanıcı menüsü"
+ },
"action": {
"close": "Kapat",
+ "copy_link": "Bağlantıyı kopyala",
+ "edit": "Düzenle",
"go": "Git",
+ "invite": "Davet et",
+ "lower_hand": "Elini indir",
"no": "Hayır",
+ "pick_reaction": "Tepki seç",
+ "raise_hand": "Elini kaldır",
"register": "Kaydol",
"remove": "Çıkar",
+ "show_less": "Daha az göster",
+ "show_more": "Daha fazla göster",
"sign_in": "Gir",
- "sign_out": "Çık"
+ "sign_out": "Çık",
+ "submit": "Gönder",
+ "upload_file": "Dosya Yükle"
},
+ "analytics_notice": "Bu beta sürümüne katılarak, ürünü geliştirmek için kullandığımız anonim verilerin toplanmasına izin vermiş olursunuz. Hangi verileri izlediğimiz hakkında daha fazla bilgiyi <2>Gizlilik Politikamızda2> ve <6>Çerez Politikamızda bulabilirsiniz6>..",
"call_ended_view": {
"create_account_button": "Hesap aç",
"create_account_prompt": "<0>Hesabınızı tutmak için niye bir parola açmıyorsunuz?0><1>Böylece ileriki aramalarda adınızı ve avatarınızı kullanabileceksiniz1>",
- "not_now_button": "Şimdi değil, ev ekranına dön"
+ "feedback_done": "<0>Geri bildiriminiz için teşekkürler!0>",
+ "feedback_prompt": "<0>Deneyiminizi geliştirebilmemiz için geri bildirimlerinizi duymak isteriz.0>",
+ "headline": "{{displayName}}, çağrınız sona erdi.",
+ "not_now_button": "Şimdi değil, ev ekranına dön",
+ "reconnect_button": "Yeniden bağlan",
+ "survey_prompt": "Nasıl geçti?"
},
+ "call_name": "Aramanın adı",
"common": {
+ "analytics": "Analiz",
"audio": "Ses",
+ "avatar": "Avatar",
+ "back": "Geri",
"display_name": "Ekran adı",
+ "encrypted": "Şifrelenmiş",
"home": "Ev",
"loading": "Yükleniyor…",
+ "next": "İleri",
+ "options": "Seçenekler",
"password": "Parola",
- "settings": "Ayarlar"
+ "preferences": "Tercihler",
+ "profile": "Profil",
+ "reaction": "Tepki",
+ "reactions": "Tepkiler",
+ "settings": "Ayarlar",
+ "unencrypted": "Şifrelenmemiş",
+ "username": "Kullanıcı adı",
+ "video": "Video"
+ },
+ "developer_mode": {
+ "crypto_version": "Şifreleme sürümü: {{version}}",
+ "debug_tile_layout_label": "Hata ayıklama döşeme düzeni",
+ "device_id": "Cihaz Kimliği: {{id}}",
+ "duplicate_tiles_label": "Katılımcı başına ek döşeme sayısı",
+ "hostname": "Sunucu adı: {{hostname}}",
+ "livekit_server_info": "LiveKit Sunucu Bilgisi",
+ "livekit_sfu": "LiveKit SFU: {{url}}",
+ "matrix_id": "Matrix Kimliği: {{id}}",
+ "show_connection_stats": "Bağlantı istatistiklerini göster"
+ },
+ "disconnected_banner": "Sunucuyla bağlantı kesildi.",
+ "error": {
+ "call_not_found": "Çağrı bulunamadı",
+ "call_not_found_description": "<0>Bu bağlantı mevcut herhangi bir çağrıya ait görünmüyor. Doğru bağlantıya sahip olduğunuzu kontrol edin veya <1> yeni bir bağlantı oluşturun1>. 0>",
+ "connection_lost": "Bağlantı kesildi",
+ "connection_lost_description": "Çağrıdan bağlantınız kesildi.",
+ "e2ee_unsupported": "Uyumsuz Tarayıcı",
+ "e2ee_unsupported_description": "İnternet tarayıcınız şifreli aramaları desteklemiyor. Desteklenen tarayıcılar arasında Chrome, Safari ve Firefox 117+ bulunur.",
+ "generic": "Bir şeyler ters gitti",
+ "generic_description": "Hata ayıklama günlüklerini göndermeniz sorunu tespit etmemizde yardımcı olacaktır.",
+ "open_elsewhere": "Başka bir sekmede açıldı",
+ "open_elsewhere_description": "{{brand}} başka bir sekmede açıldı. Bu doğru değilse, sayfayı yeniden yüklemeyi deneyin."
+ },
+ "group_call_loader": {
+ "banned_body": "Odaya girmeniz yasaklandı.",
+ "banned_heading": "Yasaklandı",
+ "call_ended_body": "Aramadan çıkarıldınız.",
+ "call_ended_heading": "Arama sonlandırıldı",
+ "knock_reject_body": "Katılma isteğiniz reddedildi.",
+ "knock_reject_heading": "Erişim reddedildi",
+ "reason": "Neden: {{reason}}"
+ },
+ "hangup_button_label": "Aramayı sonlandır",
+ "header_label": "Element Call Ana Sayfa",
+ "header_participants_label": "Katılımcılar",
+ "invite_modal": {
+ "link_copied_toast": "Bağlantı panoya kopyalandı",
+ "title": "Bu görüşmeye davet edin"
},
"join_existing_call_modal": {
+ "join_button": "Evet, aramaya katıl",
"text": "Bu arama zaten var, katılmak ister misiniz?",
"title": "Mevcut aramaya katıl?"
},
+ "layout_grid_label": "Izgara",
+ "layout_spotlight_label": "İlgi Odağı",
"lobby": {
- "join_button": "Aramaya katıl"
+ "ask_to_join": "Aramaya katılma isteği gönder",
+ "join_as_guest": "Misafir olarak katıl",
+ "join_button": "Aramaya katıl",
+ "leave_button": "Son aramalara dön",
+ "waiting_for_invite": "İstek gönderildi! Katılmak için izin verilmesi bekleniyor…"
},
+ "log_in": "Giriş yap",
"logging_in": "Giriliyor…",
"login_auth_links": "<0>Hesap oluştur0> yahut <2>Konuk olarak gir2>",
+ "login_auth_links_prompt": "Henüz kaydolmadınız mı?",
+ "login_subheading": "Element'e devam etmek için",
"login_title": "Gir",
+ "microphone_off": "Mikrofon kapalı",
+ "microphone_on": "Mikrofon açık",
+ "mute_microphone_button_label": "Mikrofonu sessize al",
+ "participant_count_one": "{{count, number}}",
+ "participant_count_other": "{{count, number}}",
+ "qr_code": "QR Kodu",
+ "rageshake_button_error_caption": "Günlükleri göndermeyi yeniden dene",
"rageshake_request_modal": {
"body": "Bu aramadaki başka bir kullanıcı sorun yaşıyor. Sorunu daha iyi çözebilmemiz için hata ayıklama kütüğünü almak isteriz.",
"title": "Hata ayıklama kütük istemi"
},
"rageshake_send_logs": "Hata ayıklama kütüğünü gönder",
"rageshake_sending": "Gönderiliyor…",
+ "rageshake_sending_logs": "Hata ayıklama günlükleri gönderiliyor...",
+ "rageshake_sent": "Teşekkürler!",
"recaptcha_dismissed": "reCAPTCHA atlandı",
"recaptcha_not_loaded": "reCAPTCHA yüklenmedi",
"register": {
@@ -45,13 +137,65 @@
},
"register_auth_links": "<0>Mevcut hesabınız mı var?0><1><0>Gir0> yahut <2>Konuk girişi2>1>",
"register_confirm_password_label": "Parolayı tekrar edin",
+ "register_heading": "Hesabınızı Oluşturun",
"return_home_button": "Ev ekranına geri dön",
+ "room_auth_view_continue_button": "Devam et",
"screenshare_button_label": "Ekran paylaş",
"settings": {
+ "audio_tab": {
+ "effect_volume_description": "Tepkilerin ve el kaldırmaların çaldığı ses düzeyini ayarlayın.",
+ "effect_volume_label": "Ses efekti sesi"
+ },
"developer_tab_title": "Geliştirici",
+ "devices": {
+ "camera": "Kamera",
+ "camera_numbered": "Kamera {{n}}",
+ "default": "Varsayılan",
+ "default_named": "Varsayılan <2>({{name}})2>",
+ "microphone": "Mikrofon",
+ "microphone_numbered": "Mikrofon {{n}}",
+ "speaker": "Hoparlör",
+ "speaker_numbered": "Hoparlör {{n}}"
+ },
+ "feedback_tab_body": "Sorun yaşıyorsanız veya yalnızca geri bildirimde bulunmak istiyorsanız, lütfen bize aşağıdan kısa bir açıklama gönderin.",
+ "feedback_tab_description_label": "Görüşleriniz",
"feedback_tab_h4": "Geri bildirim ver",
- "feedback_tab_send_logs_label": "Hata ayıklama kütüğünü dahil et"
+ "feedback_tab_send_logs_label": "Hata ayıklama kütüğünü dahil et",
+ "feedback_tab_thank_you": "Teşekkürler, geri bildiriminizi aldık!",
+ "feedback_tab_title": "Geri Bildirim",
+ "opt_in_description": "<0>0><1>1>Bu kutunun işaretini kaldırarak onayınızı geri çekebilirsiniz. Şu anda bir aramadaysanız, bu ayar aramanın sonunda geçerli olacaktır.",
+ "preferences_tab": {
+ "developer_mode_label": "Geliştirici modu",
+ "developer_mode_label_description": "Geliştirici modunu etkinleştir ve geliştirici ayarları sekmesini göster.",
+ "introduction": "Burada daha iyi bir deneyim için ek seçenekleri yapılandırabilirsiniz.",
+ "reactions_play_sound_description": "Birisi aramada tepki gönderdiğinde ses efekti çal.",
+ "reactions_play_sound_label": "Tepki seslerini çal",
+ "reactions_show_description": "Biri tepki gönderdiğinde animasyon göster.",
+ "reactions_show_label": "Tepkileri göster",
+ "show_hand_raised_timer_description": "Bir katılımcı elini kaldırdığında bir zamanlayıcı göster",
+ "show_hand_raised_timer_label": "El kaldırma süresini göster"
+ }
},
+ "star_rating_input_label_one": "{{count}} yıldız",
+ "star_rating_input_label_other": "{{count}} yıldız",
+ "start_new_call": "Yeni arama başlat",
+ "start_video_button_label": "Videoy paylaşımı Başlat",
+ "stop_screenshare_button_label": "Ekran paylaşılıyor",
+ "stop_video_button_label": "Video paylaşımını durdur",
+ "submitting": "Gönderiliyor...",
+ "switch_camera": "Kamerayı değiştir",
"unauthenticated_view_body": "Kaydolmadınız mı? <2>Hesap açın2>",
- "unauthenticated_view_login_button": "Hesabınıza girin"
+ "unauthenticated_view_login_button": "Hesabınıza girin",
+ "unmute_microphone_button_label": "Mikrofonun sesini aç",
+ "version": "{{productName}} sürüm: {{version}}",
+ "video_tile": {
+ "always_show": "Her zaman göster",
+ "camera_starting": "Video paylaşımı başlatılıyor...",
+ "collapse": "Daralt",
+ "expand": "Genişlet",
+ "mute_for_me": "Benim için sessize al",
+ "muted_for_me": "Benim için susturulanlar",
+ "volume": "Ses",
+ "waiting_for_media": "Ortam bekleniyor..."
+ }
}
diff --git a/locales/uk/app.json b/locales/uk/app.json
index ad0e2bd59..e82b2dece 100644
--- a/locales/uk/app.json
+++ b/locales/uk/app.json
@@ -5,22 +5,23 @@
"action": {
"close": "Закрити",
"copy_link": "Скопіювати посилання",
+ "edit": "Редагувати",
"go": "Далі",
"invite": "Запросити",
+ "lower_hand": "Опустити руку",
"no": "Ні",
+ "pick_reaction": "Виберіть реакцію",
+ "raise_hand": "Підняти руку",
"register": "Зареєструватися",
"remove": "Вилучити",
+ "show_less": "Показувати менше",
+ "show_more": "Показати більше",
"sign_in": "Увійти",
"sign_out": "Вийти",
- "submit": "Надіслати"
- },
- "analytics_notice": "Користуючись дочасним доступом, ви даєте згоду на збір анонімних даних, які ми використовуємо для вдосконалення продукту. Ви можете знайти більше інформації про те, які дані ми відстежуємо в нашій <2>Політиці Приватності2> і нашій <5>Політиці про куки5>.",
- "app_selection_modal": {
- "continue_in_browser": "Продовжити у браузері",
- "open_in_app": "Відкрити у застосунку",
- "text": "Готові приєднатися?",
- "title": "Вибрати застосунок"
+ "submit": "Надіслати",
+ "upload_file": "Завантажити файл"
},
+ "analytics_notice": "Користуючись дочасним доступом, ви даєте згоду на збір анонімних даних, які ми використовуємо для вдосконалення продукту. Ви можете знайти більше інформації про те, які дані ми відстежуємо в нашій <2>Політиці Приватності2> і нашій <6>Політиці про файли cookie6>.",
"call_ended_view": {
"create_account_button": "Створити обліковий запис",
"create_account_prompt": "<0>Чому б не завершити, налаштувавши пароль для збереження свого облікового запису?0><1>Ви зможете зберегти своє ім'я та встановити аватарку для подальшого користування під час майбутніх викликів1>",
@@ -33,20 +34,103 @@
},
"call_name": "Назва виклику",
"common": {
+ "analytics": "Аналітика",
"audio": "Звук",
"avatar": "Аватар",
+ "back": "Назад",
"display_name": "Псевдонім",
"encrypted": "Зашифровано",
"home": "Домівка",
"loading": "Завантаження…",
+ "next": "Далі",
+ "options": "Налаштування",
"password": "Пароль",
+ "preferences": "Уподобання",
"profile": "Профіль",
+ "reaction": "Реакція",
+ "reactions": "Реакції",
+ "reconnecting": "Повторне з'єднання…",
"settings": "Налаштування",
"unencrypted": "Не зашифровано",
"username": "Ім'я користувача",
"video": "Відео"
},
+ "developer_mode": {
+ "always_show_iphone_earpiece": "Показувати опцію виводу звуку в динамік iPhone на всіх платформах",
+ "crypto_version": "Крипто-версія: {{version}}",
+ "custom_livekit_url": {
+ "current_url": "Наразі налаштовано: ",
+ "from_config": "Наразі перезапис не налаштовано. Використовується URL-адреса з відомого ресурсу або конфігурації.",
+ "label": "Власний Livekit-url",
+ "reset": "Скинути перезапис",
+ "save": "Зберегти",
+ "saving": "Збереження..."
+ },
+ "debug_tile_layout_label": "Налагоджування макету плиток",
+ "device_id": "ID пристрою: {{id}}",
+ "duplicate_tiles_label": "Кількість додаткових копій плиток на одного учасника",
+ "environment_variables": "Змінні середовища",
+ "hostname": "Ім'я хоста: {{hostname}}",
+ "livekit_server_info": "Інформація про сервер LiveKit",
+ "livekit_sfu": "LiveKit SFU: {{url}}",
+ "matrixRTCMode": {
+ "Comptibility": {
+ "description": "Сумісно з домашніми серверами, які не підтримують закріплені події (але всі інші клієнти EC мають версію 0.17.0 або новішу)",
+ "label": "Сумісність: події стану та кілька SFU"
+ },
+ "Legacy": {
+ "description": "Сумісно з давнішими версіями EC, які не підтримують кілька SFU",
+ "label": "Застаріле: події стану та найдавніше членство SFU"
+ },
+ "Matrix_2_0": {
+ "description": "Сумісно лише з домашніми серверами, що підтримують закріплені події, та всіма клієнтами EC версії 0.17.0 або новіших.",
+ "label": "Matrix 2.0: закріплені події та мульти-SFU"
+ },
+ "title": "Режим MatrixRTC"
+ },
+ "matrix_id": "Matrix ID: {{id}}",
+ "mute_all_audio": "Вимкнути всі звуки (учасників, реакцій, звуків приєднання)",
+ "show_connection_stats": "Показувати статистику підключення",
+ "url_params": "Параметри URL"
+ },
"disconnected_banner": "Втрачено зв'язок з сервером.",
+ "error": {
+ "call_is_not_supported": "Виклик не підтримується",
+ "call_not_found": "Виклик не знайдено",
+ "call_not_found_description": "<0>Схоже, що це посилання не належить до жодного існуючого дзвінка. Перевірте, чи посилання правильне, або <1> створіть нове1>. 0>",
+ "connection_lost": "Зв'язок втрачено",
+ "connection_lost_description": "Вас було відключено від дзвінка.",
+ "e2ee_unsupported": "Несумісний браузер",
+ "e2ee_unsupported_description": "Ваш веб-браузер не підтримує зашифровані дзвінки. Підтримувані браузери включають Chrome, Safari та Firefox 117+.",
+ "failed_to_start_livekit": "Не вдалося розпочати з’єднання Livekit",
+ "generic": "Щось пішло не так",
+ "generic_description": "Надсилання журналів налагодження допоможе нам відстежити проблему.",
+ "insufficient_capacity": "Недостатньо обсягу",
+ "insufficient_capacity_description": "Сервер досяг максимального обсягу, і ви на разі не можете приєднатися до виклику. Спробуйте пізніше або зверніться до адміністратора сервера, якщо проблема не зникне.",
+ "matrix_rtc_transport_missing": "Сервер не налаштовано для роботи з{{brand}}. Зверніться до адміністратора вашого сервера (домен: {{domain}} , Код помилки: {{ errorCode }}).",
+ "membership_manager": "Помилка менеджера членства",
+ "membership_manager_description": "Менеджер членства був змушений припинити роботу. Це сталося через численні послідовні невдалі мережеві запити.",
+ "no_matrix_2_authorization_service": "Служба авторизації для вашого медіасервера (SFU) застаріла.",
+ "open_elsewhere": "Відкрито в іншій вкладці",
+ "open_elsewhere_description": "{{brand}} було відкрито в іншій вкладці. Якщо це звучить неправильно, спробуйте перезавантажити сторінку.",
+ "room_creation_restricted": "Не вдалося створити виклик",
+ "room_creation_restricted_description": "Створення викликів може бути обмежено лише для авторизованих користувачів. Спробуйте пізніше або зверніться до адміністратора сервера, якщо проблема не зникне.",
+ "unexpected_ec_error": "Сталася несподівана помилка (<0>Код помилки: 0> <1> {{ errorCode }}1>). Будь ласка, зв'яжіться з адміністратором сервера."
+ },
+ "group_call_loader": {
+ "banned_body": "Вас було забанено в цій кімнаті.",
+ "banned_heading": "Забанено",
+ "call_ended_body": "Вас вилучено з виклику.",
+ "call_ended_heading": "Виклик завершено",
+ "knock_reject_body": "Ваш запит на приєднання було відхилено.",
+ "knock_reject_heading": "Доступ заборонено",
+ "reason": "Причина: {{reason}}"
+ },
+ "handset": {
+ "overlay_back_button": "Повернутися до режиму динаміка",
+ "overlay_description": "Працює лише під час використання застосунку",
+ "overlay_title": "Режим гарнітури"
+ },
"hangup_button_label": "Завершити виклик",
"header_label": "Домівка Element Call",
"header_participants_label": "Учасники",
@@ -62,15 +146,25 @@
"layout_grid_label": "Сітка",
"layout_spotlight_label": "У центрі уваги",
"lobby": {
+ "ask_to_join": "Запит на приєднання до виклику",
+ "join_as_guest": "Приєднатись як гість",
"join_button": "Приєднатися до виклику",
- "leave_button": "Повернутися до недавніх"
+ "leave_button": "Повернутися до недавніх",
+ "waiting_for_invite": "Запит надіслано! Чекаємо дозволу на приєднання..."
},
+ "log_in": "Увійти",
"logging_in": "Вхід…",
"login_auth_links": "<0>Створити обліковий запис0> або <2>Отримати доступ як гість2>",
+ "login_auth_links_prompt": "Ще не зареєстровані?",
+ "login_subheading": "Продовжити в Element",
"login_title": "Увійти",
"microphone_off": "Мікрофон вимкнено",
"microphone_on": "Мікрофон увімкнено",
"mute_microphone_button_label": "Вимкнути мікрофон",
+ "participant_count_one": "{{count, number}}",
+ "participant_count_few": "{{count, number}}",
+ "participant_count_many": "{{count, number}}",
+ "qr_code": "QR-код",
"rageshake_button_error_caption": "Повторити надсилання журналів",
"rageshake_request_modal": {
"body": "Інший користувач у цьому виклику має проблему. Щоб краще визначити ці проблеми, ми хотіли б зібрати журнал налагодження.",
@@ -82,33 +176,81 @@
"rageshake_sent": "Дякуємо!",
"recaptcha_dismissed": "Recaptcha не пройдено",
"recaptcha_not_loaded": "Recaptcha не завантажено",
+ "recaptcha_ssla_caption": "Цей сайт захищений ReCAPTCHA та Google<2>Політикою конфіденційності2> і <6>Умови обслуговування6> застосовуються.<9>9> Натискаючи «Зареєструватися», ви погоджуєтеся з нашою<12> Ліцензійна угодою про програмне забезпечення та послуги (SSLA)12>",
"register": {
"passwords_must_match": "Паролі відрізняються",
"registering": "Реєстрація…"
},
"register_auth_links": "<0>Уже маєте обліковий запис?0><1><0>Увійти0> Or <2>Отримати доступ як гість2>1>",
"register_confirm_password_label": "Підтвердити пароль",
+ "register_heading": "Створити свій акаунт",
"return_home_button": "Повернутися на екран домівки",
+ "room_auth_view_continue_button": "Продовжити",
+ "room_auth_view_ssla_caption": "Натиснувши «Приєднатися до виклику зараз», ви погоджуєтеся з нашою <2>Ліцензійною угодою на програмне забезпечення та послуги (SSLA) 2>",
"screenshare_button_label": "Поділитися екраном",
"settings": {
+ "audio_tab": {
+ "effect_volume_description": "Змінити гучність реакцій і ефекту підіймання руки.",
+ "effect_volume_label": "Гучність звукових ефектів"
+ },
+ "background_blur_header": "Фон",
+ "background_blur_label": "Розмиття фону відео",
+ "blur_not_supported_by_browser": "(Розмиття фону не підтримується цим пристроєм.)",
"developer_tab_title": "Розробнику",
+ "devices": {
+ "camera": "Камера",
+ "camera_numbered": "Камера {{n}}",
+ "change_device_button": "Змінити аудіопристрій",
+ "default": "За замовчуванням",
+ "default_named": "За замовчуванням <2> ({{name}}) 2>",
+ "handset": "Гарнітура",
+ "loudspeaker": "Гучномовець",
+ "microphone": "Мікрофон",
+ "microphone_numbered": "Мікрофон {{n}}",
+ "speaker": "Динамік",
+ "speaker_numbered": "Динамік {{n}}"
+ },
"feedback_tab_body": "Якщо у вас виникли проблеми або ви просто хочете залишити відгук, надішліть нам короткий опис нижче.",
"feedback_tab_description_label": "Ваш відгук",
"feedback_tab_h4": "Надіслати відгук",
"feedback_tab_send_logs_label": "Долучити журнали налагодження",
"feedback_tab_thank_you": "Дякуємо, ми отримали ваш відгук!",
"feedback_tab_title": "Відгук",
- "opt_in_description": "<0>0><1>1>Ви можете відкликати згоду, прибравши цей прапорець. Якщо ви зараз розмовляєте, це налаштування застосується після завершення виклику."
+ "opt_in_description": "<0>0><1>1>Ви можете відкликати згоду, прибравши цей прапорець. Якщо ви зараз розмовляєте, це налаштування застосується після завершення виклику.",
+ "preferences_tab": {
+ "developer_mode_label": "Режим розробника",
+ "developer_mode_label_description": "Увімкнути режим розробника та показати вкладку налаштувань розробника.",
+ "introduction": "Тут ви можете налаштувати додаткові параметри для кращого досвіду.",
+ "reactions_play_sound_description": "Відтворювати звуковий ефект, коли хтось надсилає реакцію у виклик.",
+ "reactions_play_sound_label": "Відтворювати звуки реакції",
+ "reactions_show_description": "Показувати анімацію, коли хтось надсилає реакцію.",
+ "reactions_show_label": "Показувати реакції",
+ "show_hand_raised_timer_description": "Показувати таймер, коли учасник піднімає руку",
+ "show_hand_raised_timer_label": "Показувати тривалість підняття руки"
+ }
},
- "star_rating_input_label_one": "{{count}} зірок",
- "star_rating_input_label_other": "{{count}} зірок",
+ "star_rating_input_label_one": "{{count}} зірка",
+ "star_rating_input_label_few": "{{count}} зірки",
+ "star_rating_input_label_many": "{{count}} зірок",
"start_new_call": "Розпочати новий виклик",
"start_video_button_label": "Розпочати відео",
"stop_screenshare_button_label": "Презентація екрана",
"stop_video_button_label": "Зупинити відео",
"submitting": "Надсилання…",
+ "switch_camera": "Переключити камеру",
"unauthenticated_view_body": "Ще не зареєстровані? <2>Створіть обліковий запис2>",
"unauthenticated_view_login_button": "Увійдіть до свого облікового запису",
+ "unauthenticated_view_ssla_caption": "Натискаючи \"Перейти\", ви погоджуєтеся з нашою <2>Ліцензійною угодою на програмне забезпечення та послуги (SSLA) 2>",
"unmute_microphone_button_label": "Увімкнути мікрофон",
- "version": "Версія: {{version}}"
+ "version": "{{productName}} версія: {{version}}",
+ "video_tile": {
+ "always_show": "Показувати завжди",
+ "camera_starting": "Завантаження відео...",
+ "collapse": "Згорнути",
+ "expand": "Розгорнути",
+ "mute_for_me": "Вимкнути звук для мене",
+ "muted_for_me": "Вимкнено звук для мене",
+ "volume": "Гучність",
+ "waiting_for_media": "Очікування медіа..."
+ }
}
diff --git a/locales/zh-Hans/app.json b/locales/zh-Hans/app.json
index f2433e16f..55684bc8a 100644
--- a/locales/zh-Hans/app.json
+++ b/locales/zh-Hans/app.json
@@ -4,21 +4,24 @@
},
"action": {
"close": "关闭",
+ "copy_link": "复制链接",
+ "edit": "编辑",
"go": "开始",
+ "invite": "邀请",
+ "lower_hand": "放手",
"no": "否",
+ "pick_reaction": "选择反应",
+ "raise_hand": "举手",
"register": "注册",
"remove": "移除",
+ "show_less": "显示更少",
+ "show_more": "显示更多",
"sign_in": "登录",
"sign_out": "登出",
- "submit": "提交"
- },
- "analytics_notice": "参与测试即表示您同意我们收集匿名数据,用于改进产品。您可以在我们的<2>隐私政策2>和<5>Cookie政策5>中找到有关我们跟踪哪些数据以及更多信息。",
- "app_selection_modal": {
- "continue_in_browser": "在浏览器中继续",
- "open_in_app": "在应用中打开",
- "text": "准备好加入了吗?",
- "title": "选择应用程序"
+ "submit": "提交",
+ "upload_file": "上传文件"
},
+ "analytics_notice": "参与本次测试即表示您同意我们收集匿名数据,这些数据将用于改进产品。有关我们收集的数据的更多信息,请参阅我们的<2>隐私政策2> 以及我们的<6>Cookie 政策6> 。",
"call_ended_view": {
"create_account_button": "创建账户",
"create_account_prompt": "<0>为何不设置密码来保留你的账户?0><1>保留昵称并设置头像,以便在未来的通话中使用。1>",
@@ -31,22 +34,110 @@
},
"call_name": "通话名称",
"common": {
+ "analytics": "分析",
"audio": "音频",
"avatar": "头像",
+ "back": "返回",
"display_name": "显示名称",
"encrypted": "已加密",
"home": "主页",
"loading": "加载中……",
+ "next": "下一步",
+ "options": "选项",
"password": "密码",
+ "preferences": "偏好",
"profile": "个人信息",
+ "reaction": "反应",
+ "reactions": "反应",
+ "reconnecting": "正在重新连接…",
"settings": "设置",
"unencrypted": "未加密",
"username": "用户名",
"video": "视频"
},
+ "developer_mode": {
+ "always_show_iphone_earpiece": "在所有平台上显示 iPhone 听筒选项",
+ "crypto_version": "加密组件版本:{{version}}",
+ "custom_livekit_url": {
+ "current_url": "当前设置为: ",
+ "from_config": "当前未设置任何覆盖值。使用来自 well-known 或配置文件中的 URL。",
+ "label": "自定义 LiveKit URL",
+ "reset": "重置覆盖值",
+ "save": "保存",
+ "saving": "正在保存…"
+ },
+ "debug_tile_layout_label": "调试图块布局",
+ "device_id": "设备 ID:{{id}}",
+ "duplicate_tiles_label": "每个参与者的图块副本数量",
+ "environment_variables": "环境变量",
+ "hostname": "主机名:{{hostname}}",
+ "livekit_server_info": "LiveKit 服务器信息",
+ "livekit_sfu": "LiveKit SFU:{{url}}",
+ "matrixRTCMode": {
+ "Comptibility": {
+ "description": "兼容不支持黏着事件的主服务器(但要求所有其它 EC 客户端均为 v0.17.0 或更高版本)",
+ "label": "兼容性:状态事件 & 多重 SFU"
+ },
+ "Legacy": {
+ "description": "兼容不支持多重 SFU 的旧版本 EC",
+ "label": "旧版: 状态事件 & 传统人际 SFU"
+ },
+ "Matrix_2_0": {
+ "description": "仅兼容支持黏着事件的主服务器及所有 EC v0.17.0 或更高版本的参与者客户端",
+ "label": "Matrix 2.0:黏着事件 & 多重 SFU"
+ },
+ "title": "MatrixRTC 模式"
+ },
+ "matrix_id": "Matrix ID:{{id}}",
+ "mute_all_audio": "静默所有声音(参与者、反应与加入音效)",
+ "show_connection_stats": "显示连接统计信息",
+ "url_params": "URL 参数"
+ },
"disconnected_banner": "与服务器的连接中断。",
+ "error": {
+ "call_is_not_supported": "不支持的通话",
+ "call_not_found": "未找到通话",
+ "call_not_found_description": "<0>该链接似乎不属于任何现有通话. 请检查链接是否正确,或<1>创建新链接1>。0>",
+ "connection_lost": "连接已丢失",
+ "connection_lost_description": "你已断开通话。",
+ "e2ee_unsupported": "不兼容的浏览器",
+ "e2ee_unsupported_description": "你的浏览器不支持加密通话。支持的浏览器包括 Chrome、Safari 与 Firefox 117+。",
+ "failed_to_start_livekit": "LiveKit 连接启动失败",
+ "generic": "出现问题",
+ "generic_description": "提交调试日志将有助于我们调查问题。",
+ "insufficient_capacity": "容量不足",
+ "insufficient_capacity_description": "服务器已达到其最大容量,你目前无法加入通话。请稍后再试,或问题仍然存在时请联系服务器管理员。",
+ "matrix_rtc_transport_missing": "服务器未配置为用于 {{brand}}。请联系服务器管理员(域名:{{domain}},错误代码:{{ errorCode }} )。",
+ "membership_manager": "人际管理器错误",
+ "membership_manager_description": "人际管理器已关闭。这是由于连续多次网络请求失败造成的。",
+ "no_matrix_2_authorization_service": "媒体服务器(SFU)的授权服务已过期。",
+ "open_elsewhere": "在另一标签页打开",
+ "open_elsewhere_description": "{{brand}} 已在另一标签页中打开。如果这并非预期,请重载页面。",
+ "room_creation_restricted": "通话创建失败",
+ "room_creation_restricted_description": "可能仅限被授权的用户创建通话。请于稍候重试,或问题仍然存在的情况下联系服务器管理员。",
+ "unexpected_ec_error": "出现未知错误(<0>错误代码:0><1>{{ errorCode }}1>)。请联系服务器管理员。"
+ },
+ "group_call_loader": {
+ "banned_body": "你已被房间封禁",
+ "banned_heading": "已被封禁",
+ "call_ended_body": "你已被移出通话",
+ "call_ended_heading": "通话结束",
+ "knock_reject_body": "房间成员拒绝了你的加入请求",
+ "knock_reject_heading": "拒绝访问",
+ "reason": "原因:{{reason}}"
+ },
+ "handset": {
+ "overlay_back_button": "返回扬声器模式",
+ "overlay_description": "仅在使用 app 时有效",
+ "overlay_title": "听筒模式"
+ },
"hangup_button_label": "通话结束",
"header_label": "Element Call主页",
+ "header_participants_label": "参与者",
+ "invite_modal": {
+ "link_copied_toast": "链接已复制到剪贴板",
+ "title": "邀请参加此次通话"
+ },
"join_existing_call_modal": {
"join_button": "是,加入通话",
"text": "该通话已存在,你想加入吗?",
@@ -55,15 +146,23 @@
"layout_grid_label": "网格",
"layout_spotlight_label": "聚焦模式",
"lobby": {
+ "ask_to_join": "请求加入通话",
+ "join_as_guest": "以访客身份加入",
"join_button": "加入通话",
- "leave_button": "返回最近通话"
+ "leave_button": "返回最近通话",
+ "waiting_for_invite": "请求已发送!正在等待加入许可……"
},
+ "log_in": "登录",
"logging_in": "登录中……",
"login_auth_links": "<0>创建账户0> Or <2>以访客身份继续2>",
+ "login_auth_links_prompt": "还未注册?",
+ "login_subheading": "继续使用 Element",
"login_title": "登录",
"microphone_off": "麦克风关闭",
"microphone_on": "麦克风开启",
"mute_microphone_button_label": "静音麦克风",
+ "participant_count_other": "{{count, number}}",
+ "qr_code": "二维码",
"rageshake_button_error_caption": "重传日志",
"rageshake_request_modal": {
"body": "这个通话中的另一个用户出现了问题。为了更好地诊断这些问题,我们想收集调试日志。",
@@ -75,33 +174,82 @@
"rageshake_sent": "谢谢!",
"recaptcha_dismissed": "人机验证失败",
"recaptcha_not_loaded": "recaptcha未加载",
+ "recaptcha_ssla_caption": "此站点受 ReCAPTCHA 保护,并且适用于 Google <2>隐私政策2>与<6>服务条款6> 。<9>9>点击“注册”即表示你同意<12>软件与服务许可条款(SSLA)12>",
"register": {
"passwords_must_match": "密码必须匹配",
"registering": "正在注册……"
},
"register_auth_links": "<0>已有账户?0><1><0>登录0> Or <2>以访客身份继续2>1>",
"register_confirm_password_label": "确认密码",
+ "register_heading": "创建您的账户",
"return_home_button": "返回主页",
+ "room_auth_view_continue_button": "继续",
+ "room_auth_view_ssla_caption": "点击“立即加入通话”即表示你同意我们的<2>软件与服务许可条款(SSLA)2>",
"screenshare_button_label": "屏幕共享",
"settings": {
+ "audio_tab": {
+ "effect_volume_description": "调整反应与举手时播放的音效的音量。",
+ "effect_volume_label": "音效音量"
+ },
+ "background_blur_header": "背景",
+ "background_blur_label": "模糊视频背景",
+ "blur_not_supported_by_browser": "(此设备不支持背景模糊)",
"developer_tab_title": "开发者",
+ "devices": {
+ "camera": "摄像头",
+ "camera_numbered": "摄像头 {{n}}",
+ "change_device_button": "更改音频设备",
+ "default": "默认",
+ "default_named": "默认 <2>({{name}})2>",
+ "handset": "听筒",
+ "loudspeaker": "扬声器",
+ "microphone": "麦克风",
+ "microphone_numbered": "麦克风 {{n}}",
+ "speaker": "扬声器",
+ "speaker_numbered": "扬声器 {{n}}"
+ },
"feedback_tab_body": "如果遇到问题或想提供一些反馈意见,请在下面向我们发送简短描述。",
"feedback_tab_description_label": "您的反馈",
"feedback_tab_h4": "提交反馈",
"feedback_tab_send_logs_label": "包含调试日志",
"feedback_tab_thank_you": "谢谢,我们收到了反馈!",
"feedback_tab_title": "反馈",
- "opt_in_description": "<0>0><1>1>您可以取消选中复选框来撤回同意。如果正在通话中,此设置将在通话结束时生效。"
+ "opt_in_description": "<0>0><1>1>您可以取消选中复选框来撤回同意。如果正在通话中,此设置将在通话结束时生效。",
+ "preferences_tab": {
+ "developer_mode_label": "开发者模式",
+ "developer_mode_label_description": "启用开发者模式并显示开发者设置标签",
+ "introduction": "你可以配置此处的额外选项以改善体验。",
+ "reactions_play_sound_description": "当任何人在通话中发送反应时播放音效",
+ "reactions_play_sound_label": "播放反应音效",
+ "reactions_show_description": "当任何人发送反应时显示动画效果。",
+ "reactions_show_label": "显示反应",
+ "show_hand_raised_timer_description": "当有参与者举手时显示计时器",
+ "show_hand_raised_timer_label": "显示举手持续时间"
+ }
},
- "star_rating_input_label_one": "{{count}} 个星",
"star_rating_input_label_other": "{{count}} 个星",
"start_new_call": "开始新通话",
"start_video_button_label": "开始视频",
"stop_screenshare_button_label": "屏幕共享",
"stop_video_button_label": "停止视频",
"submitting": "提交中…",
+ "switch_camera": "切换摄像头",
"unauthenticated_view_body": "还没有注册? <2>创建账户<2>",
"unauthenticated_view_login_button": "登录你的账户",
+ "unauthenticated_view_ssla_caption": "点击“开始”即表示你同意我们的 <2>软件与服务许可条款(SSLA)2>",
"unmute_microphone_button_label": "取消麦克风静音",
- "version": "版本:{{version}}"
+ "version": "{{productName}} 版本:{{version}}",
+ "video_tile": {
+ "always_show": "始终显示",
+ "call_ended": "通话结束",
+ "calling": "呼叫中……",
+ "camera_starting": "视频加载中……",
+ "collapse": "折叠",
+ "expand": "展开",
+ "mute_for_me": "为我静音",
+ "muted_for_me": "为我静音",
+ "screen_share_volume": "屏幕共享音量",
+ "volume": "音量",
+ "waiting_for_media": "正在等待媒体…"
+ }
}
diff --git a/locales/zh-Hant/app.json b/locales/zh-Hant/app.json
index 8d474be51..06cf1e4a7 100644
--- a/locales/zh-Hant/app.json
+++ b/locales/zh-Hant/app.json
@@ -15,12 +15,6 @@
"submit": "遞交"
},
"analytics_notice": "參與此測試版即表示您同意蒐集匿名資料,我們使用這些資料來改進產品。您可以在我們的<2>隱私政策2>與我們的 <5>Cookie 政策5> 中找到關於我們追蹤哪些資料的更多資訊。",
- "app_selection_modal": {
- "continue_in_browser": "在瀏覽器中繼續",
- "open_in_app": "在應用程式中開啟",
- "text": "準備好加入了?",
- "title": "選取應用程式"
- },
"call_ended_view": {
"create_account_button": "建立帳號",
"create_account_prompt": "<0>何不設定密碼以保留此帳號?0><1>您可以保留暱稱並設定頭像,以便未來通話時使用1>",
diff --git a/package.json b/package.json
index b3b57a47e..b63acd348 100644
--- a/package.json
+++ b/package.json
@@ -3,135 +3,131 @@
"version": "0.0.0",
"type": "module",
"scripts": {
- "dev": "yarn dev:full",
+ "dev": "pnpm dev:full",
"dev:full": "vite",
"dev:embedded": "vite --config vite-embedded.config.js",
- "build": "yarn build:full",
+ "build": "pnpm build:full",
"build:full": "NODE_OPTIONS=--max-old-space-size=16384 vite build",
- "build:embedded": "yarn build:full --config vite-embedded.config.js",
+ "build:full:production": "pnpm build:full",
+ "build:full:development": "pnpm build:full --mode development",
+ "build:embedded": "pnpm build:full --config vite-embedded.config.js",
+ "build:embedded:production": "pnpm build:embedded",
+ "build:embedded:development": "pnpm build:embedded --mode development",
+ "build:sdk:development": "pnpm build:sdk --mode development",
+ "build:sdk": "pnpm build:full --config vite-sdk.config.js",
+ "build:sdk:production": "pnpm build:sdk",
"serve": "vite preview",
- "prettier:check": "prettier -c .",
- "prettier:format": "prettier -w .",
- "lint": "yarn lint:types && yarn lint:eslint && yarn lint:knip",
- "lint:eslint": "eslint --max-warnings 0 src playwright",
- "lint:eslint-fix": "eslint --max-warnings 0 src playwright --fix",
+ "format": "oxfmt",
+ "format:check": "oxfmt --check; rc=$?; [[ $rc -ne 0 ]] && printf '\\033[46;30m INFO \\033[0m To fix, run: pnpm format\\n' >&2; exit $rc",
+ "lint": "pnpm lint:types && pnpm lint:oxlint && pnpm lint:knip",
+ "lint:oxlint": "oxlint src playwright",
+ "lint:oxlint-fix": "oxlint --fix src playwright",
"lint:knip": "knip",
"lint:types": "tsc",
- "i18n": "i18next",
- "i18n:check": "i18next --fail-on-warnings --fail-on-update",
+ "i18n": "npx i18next-cli extract",
+ "i18n:check": "npx i18next-cli extract --ci",
"test": "vitest",
+ "test:storybook": "vitest --project=storybook",
+ "test:unit": "vitest --project=unit",
"test:coverage": "vitest --coverage",
- "backend": "docker-compose -f dev-backend-docker-compose.yml up",
+ "backend": "docker-compose -f docker-compose-dev.yml up",
+ "backend-playwright": "docker-compose -f docker-compose-dev.yml -f docker-compose-playwright.yml up",
"test:playwright": "playwright test",
- "test:playwright:open": "yarn test:playwright --ui",
- "links:enable": "mv .links.disabled.yaml .links.yaml & touch .links.yaml",
- "links:disable": "mv .links.yaml .links.disabled.yaml"
+ "test:playwright:open": "pnpm test:playwright --ui",
+ "links:on": "cp scripts/.pnpmfile.cjs .pnpmfile.cjs & pnpm install",
+ "links:off": "rm .pnpmfile.cjs & pnpm install",
+ "storybook": "storybook dev -p 6006",
+ "build-storybook": "storybook build"
},
"devDependencies": {
- "@babel/core": "^7.16.5",
- "@babel/preset-env": "^7.22.20",
- "@babel/preset-react": "^7.22.15",
- "@babel/preset-typescript": "^7.23.0",
"@codecov/vite-plugin": "^1.3.0",
"@fontsource/inconsolata": "^5.1.0",
"@fontsource/inter": "^5.1.0",
- "@formatjs/intl-durationformat": "^0.7.0",
+ "@formatjs/intl-durationformat": "^0.10.0",
"@formatjs/intl-segmenter": "^11.7.3",
"@livekit/components-core": "^0.12.0",
"@livekit/components-react": "^2.0.0",
- "@livekit/protocol": "^1.33.0",
- "@opentelemetry/api": "^1.4.0",
- "@opentelemetry/core": "^1.25.1",
- "@opentelemetry/exporter-trace-otlp-http": "^0.57.0",
- "@opentelemetry/resources": "^1.25.1",
- "@opentelemetry/sdk-trace-base": "^1.25.1",
- "@opentelemetry/sdk-trace-web": "^1.9.1",
- "@opentelemetry/semantic-conventions": "^1.25.1",
- "@playwright/test": "^1.51.0",
+ "@livekit/track-processors": "^0.7.1",
+ "@mediapipe/tasks-vision": "^0.10.18",
+ "@playwright/test": "^1.60.0",
"@radix-ui/react-dialog": "^1.0.4",
"@radix-ui/react-slider": "^1.1.2",
"@radix-ui/react-visually-hidden": "^1.0.3",
- "@react-spring/web": "^9.4.4",
+ "@react-spring/web": "^10.0.0",
"@sentry/react": "^8.0.0",
"@sentry/vite-plugin": "^3.0.0",
- "@stylistic/eslint-plugin": "^3.0.0",
+ "@storybook/addon-docs": "^10.3.6",
+ "@storybook/addon-vitest": "^10.3.6",
+ "@storybook/react-vite": "^10.3.6",
"@testing-library/dom": "^10.1.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.0.0",
"@testing-library/user-event": "^14.5.1",
- "@types/content-type": "^1.1.5",
+ "@types/eslint": "^9.6.1",
"@types/grecaptcha": "^3.0.9",
"@types/jsdom": "^21.1.7",
"@types/lodash-es": "^4.17.12",
- "@types/node": "^22.0.0",
+ "@types/node": "^24.0.0",
"@types/pako": "^2.0.3",
"@types/qrcode": "^1.5.5",
- "@types/react": "^18.3.0",
- "@types/react-dom": "^18.3.0",
+ "@types/react": "^19.0.0",
+ "@types/react-dom": "^19.0.0",
"@types/sdp-transform": "^2.4.5",
- "@types/uuid": "10",
- "@typescript-eslint/eslint-plugin": "^8.0.0",
- "@typescript-eslint/parser": "^8.0.0",
+ "@typescript-eslint/utils": "^8.61.0",
"@use-gesture/react": "^10.2.11",
- "@vector-im/compound-design-tokens": "^3.0.0",
- "@vector-im/compound-web": "^7.2.0",
- "@vitejs/plugin-basic-ssl": "^1.0.1",
- "@vitejs/plugin-react": "^4.0.1",
- "@vitest/coverage-v8": "^3.0.0",
- "babel-plugin-transform-vite-meta-env": "^1.0.3",
+ "@vector-im/compound-design-tokens": "^10.0.0",
+ "@vector-im/compound-web": "^9.3.0",
+ "@vitejs/plugin-react": "^6.0.2",
+ "@vitest/browser-playwright": "^4.1.5",
+ "@vitest/coverage-v8": "^4.0.18",
+ "@vitest/ui": "4.1.9",
"classnames": "^2.3.1",
- "eslint": "^8.14.0",
- "eslint-config-google": "^0.14.0",
- "eslint-config-prettier": "^10.0.0",
- "eslint-plugin-deprecate": "^0.8.2",
- "eslint-plugin-import": "^2.26.0",
- "eslint-plugin-jsx-a11y": "^6.5.1",
- "eslint-plugin-matrix-org": "^2.0.0",
- "eslint-plugin-react": "^7.29.4",
- "eslint-plugin-react-hooks": "^5.0.0",
- "eslint-plugin-rxjs": "^5.0.3",
- "eslint-plugin-unicorn": "^56.0.0",
- "global-jsdom": "^26.0.0",
- "i18next": "^24.0.0",
+ "copy-to-clipboard": "^3.3.3",
+ "eslint-plugin-element-call": "link:eslint",
+ "eslint-plugin-storybook": "^10.3.6",
+ "fetch-mock": "11.1.5",
+ "i18next": "^25.0.0",
"i18next-browser-languagedetector": "^8.0.0",
- "i18next-parser": "^9.1.0",
+ "i18next-cli": "^1.61.0",
"jsdom": "^26.0.0",
- "knip": "^5.27.2",
- "livekit-client": "2.9.1",
+ "knip": "^5.86.0",
+ "livekit-client": "^2.18.1",
"lodash-es": "^4.17.21",
"loglevel": "^1.9.1",
- "matrix-js-sdk": "github:matrix-org/matrix-js-sdk#8395919f0fd1af7cab1e793d736f2cdf18ef7686",
- "matrix-widget-api": "1.11.0",
+ "matrix-js-sdk": "github:matrix-org/matrix-js-sdk#develop",
+ "matrix-widget-api": "^1.16.1",
+ "node-stdlib-browser": "^1.3.1",
"normalize.css": "^8.0.1",
"observable-hooks": "^4.2.3",
+ "oxfmt": "^0.56.0",
+ "oxlint": "^1.70.0",
+ "oxlint-tsgolint": "^0.23.0",
"pako": "^2.0.4",
"postcss": "^8.4.41",
"postcss-preset-env": "^10.0.0",
- "posthog-js": "1.160.3",
- "prettier": "^3.0.0",
+ "posthog-js": "1.374.0",
"qrcode": "^1.5.4",
- "react": "18",
- "react-dom": "18",
- "react-i18next": "^15.0.0",
+ "react": "19",
+ "react-dom": "19",
+ "react-i18next": "^16.0.0 <16.7.0",
"react-router-dom": "^7.0.0",
- "react-use-clipboard": "^1.0.7",
"react-use-measure": "^2.1.1",
"rxjs": "^7.8.1",
"sass": "^1.42.1",
- "typescript": "^5.1.6",
- "typescript-eslint-language-service": "^5.0.5",
+ "storybook": "^10.3.6",
+ "typescript": "^5.8.3",
"unique-names-generator": "^4.6.0",
+ "uuid": "^14.0.0",
"vaul": "^1.0.0",
- "vite": "^6.0.0",
- "vite-plugin-generate-file": "^0.2.0",
+ "vite": "^8.0.0",
+ "vite-plugin-generate-file": "^0.3.0",
"vite-plugin-html": "^3.2.2",
+ "vite-plugin-node-polyfills": "^0.28.0",
+ "vite-plugin-node-stdlib-browser": "^0.2.1",
"vite-plugin-svgr": "^4.0.0",
- "vitest": "^3.0.0",
+ "vite-plugin-wasm": "^3.6.0",
+ "vitest": "^4.1.5",
"vitest-axe": "^1.0.0-pre.3"
},
- "resolutions": {
- "@livekit/components-core/rxjs": "^7.8.1",
- "matrix-widget-api": "1.11.0"
- },
- "packageManager": "yarn@4.7.0"
+ "packageManager": "pnpm@11.6.0+sha512.9a36518224080c6fe5165afdcfe79bfa118c29be703f3f462b1e32efe1e98e47e8750b148e08286250aad4113cc7993ca413c4e2cd447752708c2ee5751bc95f"
}
diff --git a/playwright-backend-docker-compose.yml b/playwright-backend-docker-compose.yml
deleted file mode 100644
index e5cf12b50..000000000
--- a/playwright-backend-docker-compose.yml
+++ /dev/null
@@ -1,97 +0,0 @@
-networks:
- ecbackend:
-
-services:
- auth-service:
- image: ghcr.io/element-hq/lk-jwt-service:latest-ci
- hostname: auth-server
- environment:
- - LK_JWT_PORT=8080
- - LIVEKIT_URL=ws://localhost:7880
- - LIVEKIT_KEY=devkey
- - LIVEKIT_SECRET=secret
- # If the configured homeserver runs on localhost, it'll probably be using
- # a self-signed certificate
- - LIVEKIT_INSECURE_SKIP_VERIFY_TLS=YES_I_KNOW_WHAT_I_AM_DOING
- deploy:
- restart_policy:
- condition: on-failure
- ports:
- # HOST_PORT:CONTAINER_PORT
- - 8009:8080
- networks:
- - ecbackend
-
- livekit:
- image: livekit/livekit-server:latest
- command: --dev --config /etc/livekit.yaml
- restart: unless-stopped
- # The SFU seems to work far more reliably when we let it share the host
- # network rather than opening specific ports (but why?? we're not missing
- # any…)
- ports:
- # HOST_PORT:CONTAINER_PORT
- - 7880:7880/tcp
- - 7881:7881/tcp
- - 7882:7882/tcp
- - 50100-50200:50100-50200/udp
- volumes:
- - ./backend/dev_livekit.yaml:/etc/livekit.yaml:Z
- networks:
- - ecbackend
-
- redis:
- image: redis:6-alpine
- command: redis-server /etc/redis.conf
- ports:
- # HOST_PORT:CONTAINER_PORT
- - 6379:6379
- volumes:
- - ./backend/redis.conf:/etc/redis.conf:Z
- networks:
- - ecbackend
-
- element-web:
- image: ghcr.io/element-hq/element-web:develop
- volumes:
- - ./backend/ew.test.config.json:/app/config.json
- environment:
- ELEMENT_WEB_PORT: 81
- ports:
- - "8081:81"
- networks:
- - ecbackend
-
- synapse:
- hostname: homeserver
- image: docker.io/matrixdotorg/synapse:latest
- environment:
- - SYNAPSE_CONFIG_PATH=/data/cfg/homeserver.yaml
- # Needed for rootless podman-compose such that the uid/gid mapping does
- # fit local user uid. If the container runs as root (uid 0) it is fine as
- # it actually maps to your non-root user on the host (e.g. 1000).
- # Otherwise uid mapping will not match your non-root user.
- - UID=0
- - GID=0
- volumes:
- - ./backend/synapse_tmp:/data:Z
- - ./backend/playwright_homeserver.yaml:/data/cfg/homeserver.yaml:Z
- networks:
- - ecbackend
-
- nginx:
- # openssl req -x509 -nodes -days 3650 -newkey rsa:2048 -keyout tls_localhost_key.pem -out tls_localhost_cert.pem -subj "/C=GB/ST=London/L=London/O=Alros/OU=IT Department/CN=localhost"
- hostname: synapse.localhost
- image: nginx:latest
- volumes:
- - ./backend/tls_localhost_nginx.conf:/etc/nginx/conf.d/default.conf:Z
- - ./backend/tls_localhost_key.pem:/root/ssl/key.pem:Z
- - ./backend/tls_localhost_cert.pem:/root/ssl/cert.pem:Z
- ports:
- # HOST_PORT:CONTAINER_PORT
- - "8008:80"
- - "4443:443"
- depends_on:
- - synapse
- networks:
- - ecbackend
diff --git a/playwright.config.ts b/playwright.config.ts
index cdb8ec237..85e65e13f 100644
--- a/playwright.config.ts
+++ b/playwright.config.ts
@@ -1,11 +1,27 @@
/*
Copyright 2025 New Vector Ltd.
+Copyright 2026 Element Creations Ltd.
SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
Please see LICENSE in the repository root for full details.
*/
import { defineConfig, devices } from "@playwright/test";
+import { join } from "path";
+import path from "node:path";
+import { fileURLToPath } from "node:url";
+
+const baseURL = process.env.USE_DOCKER
+ ? "http://localhost:8080"
+ : "https://localhost:3000";
+
+const __dirname = path.dirname(fileURLToPath(import.meta.url));
+
+// Needed by the synapse admin API called in fixtures
+process.env.NODE_EXTRA_CA_CERTS = join(
+ __dirname,
+ "backend/dev_tls_local-ca.crt",
+);
/**
* See https://playwright.dev/docs/test-configuration.
@@ -25,7 +41,7 @@ export default defineConfig({
/* Shared settings for all the projects below. See https://playwright.dev/docs/api/class-testoptions. */
use: {
/* Base URL to use in actions like `await page.goto('/')`. */
- baseURL: "https://localhost:3000",
+ baseURL,
/* Collect trace when retrying the failed test. See https://playwright.dev/docs/trace-viewer */
trace: "on-first-retry",
@@ -34,6 +50,7 @@ export default defineConfig({
projects: [
{
name: "chromium",
+ testIgnore: "**/mobile/**",
use: {
...devices["Desktop Chrome"],
permissions: [
@@ -52,9 +69,9 @@ export default defineConfig({
},
},
},
-
{
name: "firefox",
+ testIgnore: "**/mobile/**",
use: {
...devices["Desktop Firefox"],
ignoreHTTPSErrors: true,
@@ -62,10 +79,36 @@ export default defineConfig({
firefoxUserPrefs: {
"permissions.default.microphone": 1,
"permissions.default.camera": 1,
+ // Equivalent to Chromium's --use-fake-device-for-media-stream:
+ // feeds a synthetic media stream so getUserMedia and
+ // enumerateDevices work on CI runners without real hardware.
+ "media.navigator.streams.fake": true,
+ "media.navigator.permission.disabled": true,
},
},
},
},
+ {
+ name: "mobile",
+ testMatch: "**/mobile/**",
+ use: {
+ ...devices["Pixel 7"],
+ ignoreHTTPSErrors: true,
+ permissions: [
+ "clipboard-write",
+ "clipboard-read",
+ "microphone",
+ "camera",
+ ],
+ launchOptions: {
+ args: [
+ "--use-fake-ui-for-media-stream",
+ "--use-fake-device-for-media-stream",
+ "--mute-audio",
+ ],
+ },
+ },
+ },
// No safari for now, until I find a solution to fix `Not allowed to request resource` due to calling
// clear http to the homeserver
@@ -73,9 +116,13 @@ export default defineConfig({
/* Run your local dev server before starting the tests */
webServer: {
- command: "yarn dev",
- url: "https://localhost:3000",
+ command: "./scripts/playwright-webserver-command.sh",
+ url: baseURL,
reuseExistingServer: !process.env.CI,
ignoreHTTPSErrors: true,
+ gracefulShutdown: {
+ signal: "SIGTERM",
+ timeout: 500,
+ },
},
});
diff --git a/playwright/access.spec.ts b/playwright/access.spec.ts
index 14a708739..01ca700ff 100644
--- a/playwright/access.spec.ts
+++ b/playwright/access.spec.ts
@@ -7,6 +7,8 @@ Please see LICENSE in the repository root for full details.
import { expect, test } from "@playwright/test";
+import { SpaHelpers } from "./spa-helpers.ts";
+
test("Sign up a new account, then login, then logout", async ({ browser }) => {
const userId = `test_user-id_${Date.now()}`;
@@ -49,7 +51,7 @@ test("Sign up a new account, then login, then logout", async ({ browser }) => {
// logout
await returningUserPage.getByTestId("usermenu_open").click();
- await returningUserPage.locator('[data-test-id="usermenu_logout"]').click();
+ await returningUserPage.locator('[data-testid="usermenu_logout"]').click();
await expect(
returningUserPage.getByRole("link", { name: "Log In" }),
@@ -69,12 +71,7 @@ test("As a guest, create a call, share link and other join", async ({
// ========
// ARRANGE: The first user creates a call as guest, join it, then click the invite button to copy the invite link
// ========
- await creatorPage.getByTestId("home_callName").click();
- await creatorPage.getByTestId("home_callName").fill("Welcome");
- await creatorPage.getByTestId("home_displayName").click();
- await creatorPage.getByTestId("home_displayName").fill("Inviter");
- await creatorPage.getByTestId("home_go").click();
- await expect(creatorPage.locator("video")).toBeVisible();
+ await SpaHelpers.createCall(creatorPage, "Inviter", "Welcome");
// join
await creatorPage.getByTestId("lobby_joinCall").click();
@@ -82,19 +79,7 @@ test("As a guest, create a call, share link and other join", async ({
await creatorPage.getByRole("radio", { name: "Spotlight" }).check();
// Get the invite link
- await creatorPage.getByRole("button", { name: "Invite" }).click();
- await expect(
- creatorPage.getByRole("heading", { name: "Invite to this call" }),
- ).toBeVisible();
- await expect(creatorPage.getByRole("img", { name: "QR Code" })).toBeVisible();
- await expect(creatorPage.getByTestId("modal_inviteLink")).toBeVisible();
- await expect(creatorPage.getByTestId("modal_inviteLink")).toBeVisible();
- await creatorPage.getByTestId("modal_inviteLink").click();
-
- const inviteLink = (await creatorPage.evaluate(
- "navigator.clipboard.readText()",
- )) as string;
- expect(inviteLink).toContain("room/#/");
+ const inviteLink = await SpaHelpers.getCallInviteLink(creatorPage);
// ========
// ACT: The other user use the invite link to join the call as a guest
@@ -103,13 +88,7 @@ test("As a guest, create a call, share link and other join", async ({
reducedMotion: "reduce",
});
const guestPage = await guestInviteeContext.newPage();
-
- await guestPage.goto(inviteLink);
- await guestPage.getByTestId("joincall_displayName").fill("Invitee");
- await expect(guestPage.getByTestId("joincall_joincall")).toBeVisible();
- await guestPage.getByTestId("joincall_joincall").click();
- await guestPage.getByTestId("lobby_joinCall").click();
- await guestPage.getByRole("radio", { name: "Spotlight" }).check();
+ await SpaHelpers.joinCallFromInviteLink(guestPage, inviteLink);
// ========
// ASSERT: check that there are two members in the call
diff --git a/playwright/create-call.spec.ts b/playwright/create-call.spec.ts
index 759cd2db7..1a483f07a 100644
--- a/playwright/create-call.spec.ts
+++ b/playwright/create-call.spec.ts
@@ -22,8 +22,8 @@ test("Start a new call then leave and show the feedback screen", async ({
await expect(page.getByTestId("lobby_joinCall")).toBeVisible();
// Check the button toolbar
- // await expect(page.getByRole('button', { name: 'Mute microphone' })).toBeVisible();
- // await expect(page.getByRole('button', { name: 'Stop video' })).toBeVisible();
+ // await expect(page.getByRole('switch', { name: 'Mute microphone' })).toBeVisible();
+ // await expect(page.getByRole('switch', { name: 'Stop video' })).toBeVisible();
await expect(page.getByRole("button", { name: "Settings" })).toBeVisible();
await expect(page.getByRole("button", { name: "End call" })).toBeVisible();
@@ -40,6 +40,11 @@ test("Start a new call then leave and show the feedback screen", async ({
// The tooltip with the name should be visible
await expect(page.getByTestId("name_tag")).toContainText("John Doe");
+ // Resize the window to resemble a small mobile phone
+ await page.setViewportSize({ width: 350, height: 660 });
+ // We should still be able to send reactions at this screen size
+ await expect(page.getByRole("button", { name: "Reactions" })).toBeVisible();
+
// leave the call
await page.getByTestId("incall_leave").click();
await expect(page.getByRole("heading")).toContainText(
@@ -53,3 +58,41 @@ test("Start a new call then leave and show the feedback screen", async ({
page.getByRole("link", { name: "Not now, return to home screen" }),
).toBeVisible();
});
+
+test("BugFix: When unmuting in lobby, you had to click twice to unmute in call", async ({
+ page,
+}) => {
+ await page.goto("/");
+
+ await page.getByTestId("home_callName").click();
+ await page.getByTestId("home_callName").fill("DoubleUnMute");
+ await page.getByTestId("home_displayName").click();
+ await page.getByTestId("home_displayName").fill("me");
+ await page.getByTestId("home_go").click();
+
+ const microphoneButton = page.getByTestId("incall_mute");
+ const cameraButton = page.getByTestId("incall_videomute");
+
+ // Wait for devices to enumerate before the button enables.
+ await expect(microphoneButton).toBeEnabled({ timeout: 10_000 });
+
+ await microphoneButton.click();
+ await cameraButton.click();
+
+ // Should be muted now
+ await expect(microphoneButton).toHaveAccessibleName("Unmute microphone");
+ await expect(cameraButton).toHaveAccessibleName("Start video");
+
+ // Create the call and join
+ await page.getByTestId("lobby_joinCall").click();
+
+ // Give sometime for the all to be connected
+ // Check the number of participants
+ await expect(page.locator("div").filter({ hasText: /^1$/ })).toBeVisible();
+
+ // Click again on the mute button. it should unmute
+ await microphoneButton.click();
+ await expect(microphoneButton).toHaveAccessibleName("Mute microphone");
+ await cameraButton.click();
+ await expect(cameraButton).toHaveAccessibleName("Stop video");
+});
diff --git a/playwright/errors.spec.ts b/playwright/errors.spec.ts
index 7671c103c..23f6e29f3 100644
--- a/playwright/errors.spec.ts
+++ b/playwright/errors.spec.ts
@@ -7,6 +7,8 @@ Please see LICENSE in the repository root for full details.
import { expect, test } from "@playwright/test";
+import { createJTWToken } from "./fixtures/jwt-token";
+
test("Should show error screen if fails to get JWT token", async ({ page }) => {
await page.goto("/");
@@ -72,3 +74,63 @@ test("Should automatically retry non fatal JWT errors", async ({
await hasRetriedPromise;
await expect(page.getByTestId("video").first()).toBeVisible();
});
+
+test("Should show error screen if call creation is restricted", async ({
+ page,
+ browserName,
+}) => {
+ test.skip(
+ browserName === "firefox",
+ "The is test is not working on firefox CI environment.",
+ );
+ await page.goto("/");
+
+ // We need the socket connection to fail, but this cannot be done by using the websocket route.
+ // Instead, we will trick the app by returning a bad URL for the SFU that will not be reachable an error out.
+ await page.route(
+ "**/matrix-rtc.m.localhost/livekit/jwt/sfu/get",
+ async (route) =>
+ await route.fulfill({
+ status: 200,
+ contentType: "application/json",
+ body: JSON.stringify({
+ url: "wss://badurltotricktest/livekit/sfu",
+ jwt: createJTWToken("@fake:user", "!fake:room"),
+ }),
+ }),
+ );
+
+ // Then if the socket connection fails, livekit will try to validate the token!
+ // Livekit will not auto_create anymore and will return a 404 error.
+ // Note the regex is required as livekit-client is nowasays trying two
+ // differnt APIs
+ await page.route(
+ /.*\/badurltotricktest\/livekit\/sfu\/rtc(\/v1)?\/validate?.*/,
+ async (route) =>
+ await route.fulfill({
+ status: 404,
+ contentType: "text/plain",
+ body: "requested room does not exist",
+ }),
+ );
+
+ await page.pause();
+
+ await page.getByTestId("home_callName").click();
+ await page.getByTestId("home_callName").fill("HelloCall");
+ await page.getByTestId("home_displayName").click();
+ await page.getByTestId("home_displayName").fill("John Doe");
+ await page.getByTestId("home_go").click();
+
+ // Join the call
+ await page.getByTestId("lobby_joinCall").click();
+
+ await page.pause();
+ // Should fail
+ await expect(page.getByText("Failed to create call")).toBeVisible();
+ await expect(
+ page.getByText(
+ /Call creation might be restricted to authorized users only/,
+ ),
+ ).toBeVisible();
+});
diff --git a/playwright/fixtures/fixture-mobile-create.ts b/playwright/fixtures/fixture-mobile-create.ts
new file mode 100644
index 000000000..8b729e4c5
--- /dev/null
+++ b/playwright/fixtures/fixture-mobile-create.ts
@@ -0,0 +1,70 @@
+/*
+Copyright 2025 New Vector Ltd.
+
+SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
+Please see LICENSE in the repository root for full details.
+*/
+
+import { type Browser, type Page, test, expect } from "@playwright/test";
+
+export interface MobileCreateFixtures {
+ asMobile: {
+ creatorPage: Page;
+ inviteLink: string;
+ };
+}
+
+export const mobileTest = test.extend({
+ asMobile: async ({ browser }, pUse) => {
+ const fixtures = await createCallAndInvite(browser);
+ await pUse({
+ creatorPage: fixtures.page,
+ inviteLink: fixtures.inviteLink,
+ });
+ },
+});
+
+/**
+ * Create a call and generate an invite link
+ */
+async function createCallAndInvite(
+ browser: Browser,
+): Promise<{ page: Page; inviteLink: string }> {
+ const creatorContext = await browser.newContext({ reducedMotion: "reduce" });
+ const creatorPage = await creatorContext.newPage();
+
+ await creatorPage.goto("/");
+
+ // ========
+ // ARRANGE: The first user creates a call as guest, join it, then click the invite button to copy the invite link
+ // ========
+ await creatorPage.getByTestId("home_callName").click();
+ await creatorPage.getByTestId("home_callName").fill("Welcome");
+ await creatorPage.getByTestId("home_displayName").click();
+ await creatorPage.getByTestId("home_displayName").fill("Inviter");
+ await creatorPage.getByTestId("home_go").click();
+ await expect(creatorPage.locator("video")).toBeVisible();
+
+ // join
+ await creatorPage.getByTestId("lobby_joinCall").click();
+
+ // Get the invite link
+ await creatorPage.getByRole("button", { name: "Invite" }).click();
+ await expect(
+ creatorPage.getByRole("heading", { name: "Invite to this call" }),
+ ).toBeVisible();
+ await expect(creatorPage.getByRole("img", { name: "QR Code" })).toBeVisible();
+ await expect(creatorPage.getByTestId("modal_inviteLink")).toBeVisible();
+ await expect(creatorPage.getByTestId("modal_inviteLink")).toBeVisible();
+ await creatorPage.getByTestId("modal_inviteLink").click();
+
+ const inviteLink = (await creatorPage.evaluate(
+ "navigator.clipboard.readText()",
+ )) as string;
+ expect(inviteLink).toContain("room/#/");
+
+ return {
+ page: creatorPage,
+ inviteLink,
+ };
+}
diff --git a/playwright/fixtures/jwt-token.ts b/playwright/fixtures/jwt-token.ts
new file mode 100644
index 000000000..18119c7e0
--- /dev/null
+++ b/playwright/fixtures/jwt-token.ts
@@ -0,0 +1,22 @@
+/*
+Copyright 2025 New Vector Ltd.
+
+SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
+Please see LICENSE in the repository root for full details.
+*/
+
+export function createJTWToken(sub: string, room: string): string {
+ return [
+ {}, // header
+ {
+ // payload
+ sub,
+ video: {
+ room,
+ },
+ },
+ {}, // signature
+ ]
+ .map((d) => global.btoa(JSON.stringify(d)))
+ .join(".");
+}
diff --git a/playwright/fixtures/widget-user.ts b/playwright/fixtures/widget-user.ts
index 0a422d201..2c43ee1b3 100644
--- a/playwright/fixtures/widget-user.ts
+++ b/playwright/fixtures/widget-user.ts
@@ -1,5 +1,6 @@
/*
Copyright 2025 New Vector Ltd.
+Copyright 2026 Element Creations Ltd.
SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
Please see LICENSE in the repository root for full details.
@@ -8,9 +9,11 @@ Please see LICENSE in the repository root for full details.
import { type Page, test, expect, type JSHandle } from "@playwright/test";
import type { MatrixClient } from "matrix-js-sdk";
+import { HOST1, TestHelpers } from "../widget/test-helpers.ts";
export type UserBaseFixture = {
mxId: string;
+ displayName: string;
page: Page;
clientHandle: JSHandle;
};
@@ -22,16 +25,16 @@ export type BaseWidgetSetup = {
export interface MyFixtures {
asWidget: BaseWidgetSetup;
+ callType: "room" | "dm";
+ addUser: (username: string, host: string) => Promise;
}
-const PASSWORD = "foobarbaz1!";
-
// Minimal config.json for the local element-web instance
const CONFIG_JSON = {
default_server_config: {
"m.homeserver": {
- base_url: "http://synapse.localhost:8008",
- server_name: "synapse.localhost",
+ base_url: "https://synapse.m.localhost",
+ server_name: "synapse.m.localhost",
},
},
@@ -59,114 +62,100 @@ const CONFIG_JSON = {
},
};
-/**
- * Set the Element Call URL in the dev tool settings using `window.mxSettingsStore` via `page.evaluate`.
- * @param page
- */
-async function setDevToolElementCallDevUrl(page: Page): Promise {
- await page.evaluate(() => {
- window.mxSettingsStore.setValue(
- "Developer.elementCallUrl",
- null,
- "device",
- "https://localhost:3000/room",
- );
- });
-}
-
export const widgetTest = test.extend({
- asWidget: async ({ browser, context }, pUse) => {
+ // allow per-test override: `widgetTest.use({ callType: "dm" })`
+ callType: ["room", { option: true }],
+ asWidget: async ({ browser, context, callType }, pUse) => {
await context.route(`http://localhost:8081/config.json*`, async (route) => {
await route.fulfill({ json: CONFIG_JSON });
});
- const userA = `brooks_${Date.now()}`;
- const userB = `whistler_${Date.now()}`;
+ const brooksDisplayName = `brooks_${Date.now()}`;
+ const whistlerDisplayName = `whistler_${Date.now()}`;
- const user1Context = await browser.newContext({
- reducedMotion: "reduce",
- });
- const ewPage1 = await user1Context.newPage();
- // Register the first user
- await ewPage1.goto("http://localhost:8081/#/welcome");
- await ewPage1.getByRole("link", { name: "Create Account" }).click();
- await ewPage1.getByRole("textbox", { name: "Username" }).fill(userA);
- await ewPage1
- .getByRole("textbox", { name: "Password", exact: true })
- .fill(PASSWORD);
- await ewPage1.getByRole("textbox", { name: "Confirm password" }).click();
- await ewPage1
- .getByRole("textbox", { name: "Confirm password" })
- .fill(PASSWORD);
- await ewPage1.getByRole("button", { name: "Register" }).click();
- await expect(
- ewPage1.getByRole("heading", { name: `Welcome ${userA}` }),
- ).toBeVisible();
- await setDevToolElementCallDevUrl(ewPage1);
-
- const brooksClientHandle = await ewPage1.evaluateHandle(() =>
- window.mxMatrixClientPeg.get(),
- );
- const brooksMxId = (await brooksClientHandle.evaluate((cli) => {
- return cli.getUserId();
- }, brooksClientHandle))!;
-
- const user2Context = await browser.newContext({
- reducedMotion: "reduce",
- });
- const ewPage2 = await user2Context.newPage();
- // Register the second user
- await ewPage2.goto("http://localhost:8081/#/welcome");
- await ewPage2.getByRole("link", { name: "Create Account" }).click();
- await ewPage2.getByRole("textbox", { name: "Username" }).fill(userB);
- await ewPage2
- .getByRole("textbox", { name: "Password", exact: true })
- .fill(PASSWORD);
- await ewPage2.getByRole("textbox", { name: "Confirm password" }).click();
- await ewPage2
- .getByRole("textbox", { name: "Confirm password" })
- .fill(PASSWORD);
- await ewPage2.getByRole("button", { name: "Register" }).click();
- await expect(
- ewPage2.getByRole("heading", { name: `Welcome ${userB}` }),
- ).toBeVisible();
- await setDevToolElementCallDevUrl(ewPage2);
-
- const whistlerClientHandle = await ewPage2.evaluateHandle(() =>
- window.mxMatrixClientPeg.get(),
- );
- const whistlerMxId = (await whistlerClientHandle.evaluate((cli) => {
- return cli.getUserId();
- }, whistlerClientHandle))!;
+ // Register users
+ const {
+ page: ewPage1,
+ clientHandle: brooksClientHandle,
+ mxId: brooksMxId,
+ } = await TestHelpers.registerUser(browser, brooksDisplayName);
+ const {
+ page: ewPage2,
+ clientHandle: whistlerClientHandle,
+ mxId: whistlerMxId,
+ } = await TestHelpers.registerUser(browser, whistlerDisplayName);
// Invite the second user
- await ewPage1.getByRole("button", { name: "Add room" }).click();
- await ewPage1.getByText("New room").click();
- await ewPage1.getByRole("textbox", { name: "Name" }).fill("Welcome Room");
- await ewPage1.getByRole("button", { name: "Create room" }).click();
- await expect(ewPage1.getByText("You created this room.")).toBeVisible();
- await expect(ewPage1.getByText("Encryption enabled")).toBeVisible();
+ if (callType === "room") {
+ await TestHelpers.createRoom("Welcome Room", ewPage1);
- await ewPage1
- .getByRole("button", { name: "Invite to this room", exact: true })
- .click();
- await expect(
- ewPage1.getByRole("heading", { name: "Invite to Welcome Room" }),
- ).toBeVisible();
+ await ewPage1
+ .getByRole("button", { name: "Invite to this room", exact: true })
+ .click({
+ timeout: 10000,
+ });
+ await expect(
+ ewPage1.getByRole("heading", { name: "Invite to Welcome Room" }),
+ ).toBeVisible();
- await ewPage1.getByRole("textbox").fill(whistlerMxId);
- await ewPage1.getByRole("textbox").click();
- await ewPage1.getByRole("button", { name: "Invite" }).click();
+ // To get the invite textbox we need to specifically select within the
+ // dialog, since there is another textbox in the background (the message
+ // composer). In theory the composer shouldn't be visible to Playwright at
+ // all because the invite dialog has trapped focus, but the focus trap
+ // doesn't quite work right on Firefox.
+ await ewPage1.getByRole("dialog").getByRole("textbox").fill(whistlerMxId);
+ await ewPage1.getByRole("dialog").getByRole("textbox").click();
+ await ewPage1.getByRole("button", { name: "Invite" }).click();
+ await TestHelpers.dismissInviteUnknownUserModal(ewPage1);
- // Accept the invite
- await expect(
- ewPage2.getByRole("treeitem", { name: "Welcome Room" }),
- ).toBeVisible();
- await ewPage2.getByRole("treeitem", { name: "Welcome Room" }).click();
- await ewPage2.getByRole("button", { name: "Accept" }).click();
- await expect(
- ewPage2.getByRole("main").getByRole("heading", { name: "Welcome Room" }),
- ).toBeVisible();
+ // Accept the invite
+ await expect(
+ ewPage2.getByRole("option", { name: "Welcome Room" }),
+ ).toBeVisible();
+ await ewPage2.getByRole("option", { name: "Welcome Room" }).click();
+ await ewPage2.getByRole("button", { name: "Accept" }).click();
+ await expect(
+ ewPage2
+ .getByRole("main")
+ .getByRole("heading", { name: "Welcome Room" }),
+ ).toBeVisible();
+ } else if (callType === "dm") {
+ await TestHelpers.closeReleaseAnnouncement(
+ ewPage1,
+ "Introducing Sections",
+ );
+
+ await ewPage1
+ .getByRole("navigation", { name: "Room list" })
+ .getByRole("button", { name: "New conversation" })
+ .click();
+
+ await ewPage1.getByRole("menuitem", { name: "Start chat" }).click();
+ await ewPage1.getByRole("textbox", { name: "Search" }).click();
+ await ewPage1.getByRole("textbox", { name: "Search" }).fill(whistlerMxId);
+ await ewPage1.getByRole("button", { name: "Go" }).click();
+ await TestHelpers.dismissInviteUnknownUserModalDM(ewPage1);
+
+ // Wait and send the first message to create the DM
+ await expect(
+ ewPage1.getByText(/Send your first message to invite/),
+ ).toBeVisible();
+
+ await ewPage1.locator(".mx_BasicMessageComposer_input > div").click();
+ await ewPage1
+ .getByRole("textbox", { name: "Send a message…" })
+ .fill("Hello!");
+ await ewPage1.getByRole("button", { name: "Send message" }).click();
+
+ await expect(
+ ewPage1.getByText("This is the beginning of your"),
+ ).toBeVisible();
+
+ // Accept the DM invite from brooks
+ // This how playwright record selects the DM invite in the room list
+ await ewPage2.getByRole("option", { name: "Open room" }).click();
+ await ewPage2.getByRole("button", { name: "Start chatting" }).click();
+ }
// Renamed use to pUse, as a workaround for eslint error that was thinking this use was a react use.
await pUse({
@@ -174,12 +163,40 @@ export const widgetTest = test.extend({
mxId: brooksMxId,
page: ewPage1,
clientHandle: brooksClientHandle,
+ displayName: brooksDisplayName,
},
whistler: {
mxId: whistlerMxId,
page: ewPage2,
clientHandle: whistlerClientHandle,
+ displayName: whistlerDisplayName,
},
});
},
+
+ /**
+ * Provide a way to add additional users within a test.
+ * The returned user will be registered on the default homeserver, the name will be made unique by appending a timestamp.
+ */
+ addUser: async ({ browser }, use) => {
+ await use(
+ async (
+ username: string,
+ host: string = HOST1,
+ ): Promise => {
+ const uniqueSuffix = Date.now();
+ const { page, clientHandle, mxId } = await TestHelpers.registerUser(
+ browser,
+ `${username.toLowerCase()}_${uniqueSuffix}`,
+ host,
+ );
+ return {
+ mxId,
+ displayName: username,
+ page,
+ clientHandle,
+ };
+ },
+ );
+ },
});
diff --git a/playwright/mobile/create-call-mobile.spec.ts b/playwright/mobile/create-call-mobile.spec.ts
new file mode 100644
index 000000000..f07793f7e
--- /dev/null
+++ b/playwright/mobile/create-call-mobile.spec.ts
@@ -0,0 +1,118 @@
+/*
+Copyright 2025 Element Creations Ltd.
+
+SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
+Please see LICENSE in the repository root for full details.
+*/
+
+import { expect, test } from "@playwright/test";
+
+import { mobileTest } from "../fixtures/fixture-mobile-create.ts";
+
+test("@mobile Start a new call then leave and show the feedback screen", async ({
+ page,
+}) => {
+ await page.goto("/");
+
+ await page.getByTestId("home_callName").click();
+ await page.getByTestId("home_callName").fill("HelloCall");
+ await page.getByTestId("home_displayName").click();
+ await page.getByTestId("home_displayName").fill("John Doe");
+ await page.getByTestId("home_go").click();
+
+ // await page.pause();
+ await expect(page.locator("video")).toBeVisible();
+ await expect(page.getByTestId("lobby_joinCall")).toBeVisible();
+ // Join the call
+ await page.getByTestId("lobby_joinCall").click();
+
+ // Ensure that the call is connected
+ await page
+ .locator("div")
+ .filter({ hasText: /^HelloCall$/ })
+ .click();
+ // Check the number of participants
+ await expect(page.locator("div").filter({ hasText: /^1$/ })).toBeVisible();
+ // The tooltip with the name should be visible
+ await expect(page.getByTestId("name_tag")).toContainText("John Doe");
+
+ // leave the call
+ await page.getByTestId("incall_leave").click();
+ await expect(page.getByRole("heading")).toContainText(
+ "John Doe, your call has ended. How did it go?",
+ );
+ await expect(page.getByRole("main")).toContainText(
+ "Why not finish by setting up a password to keep your account?",
+ );
+
+ await expect(
+ page.getByRole("link", { name: "Not now, return to home screen" }),
+ ).toBeVisible();
+});
+
+mobileTest(
+ "Test earpiece overlay in controlledAudioDevices mode",
+ async ({ asMobile, browser }) => {
+ const { creatorPage, inviteLink } = asMobile;
+
+ // ========
+ // ACT: The other user use the invite link to join the call as a guest
+ // ========
+ const guestInviteeContext = await browser.newContext({
+ reducedMotion: "reduce",
+ });
+ const guestPage = await guestInviteeContext.newPage();
+ await guestPage.goto(inviteLink + "&controlledAudioDevices=true");
+
+ await guestPage.getByTestId("joincall_displayName").fill("Invitee");
+ await expect(guestPage.getByTestId("joincall_joincall")).toBeVisible();
+ await guestPage.getByTestId("joincall_joincall").click();
+ await guestPage.getByTestId("lobby_joinCall").click();
+
+ // ========
+ // ASSERT: check that there are two members in the call
+ // ========
+
+ // There should be two participants now
+ await expect(
+ guestPage.getByTestId("roomHeader_participants_count"),
+ ).toContainText("2");
+ await expect(guestPage.getByTestId("videoTile")).toHaveCount(2);
+
+ // Same in creator page
+ await expect(
+ creatorPage.getByTestId("roomHeader_participants_count"),
+ ).toContainText("2");
+ await expect(creatorPage.getByTestId("videoTile")).toHaveCount(2);
+
+ // TEST: control audio devices from the invitee page
+
+ await guestPage.evaluate(() => {
+ window.controls.setAvailableAudioDevices([
+ { id: "speaker", name: "Speaker", isSpeaker: true },
+ { id: "earpiece", name: "Handset", isEarpiece: true },
+ { id: "headphones", name: "Headphones" },
+ ]);
+ });
+
+ // Open settings to select earpiece
+ await guestPage.getByRole("button", { name: "Settings" }).click();
+ await guestPage
+ .getByRole("radio", { name: "Handset", exact: true })
+ .click();
+
+ // dismiss settings
+ await guestPage.locator("#root").press("Escape");
+
+ await guestPage.pause();
+ await expect(
+ guestPage.getByRole("heading", { name: "Handset Mode" }),
+ ).toBeVisible();
+ await expect(
+ guestPage.getByRole("button", { name: "Back to Speaker Mode" }),
+ ).toBeVisible();
+
+ // Should auto-mute the video when earpiece is selected
+ await expect(guestPage.getByTestId("incall_videomute")).toBeDisabled();
+ },
+);
diff --git a/playwright/reconnect.spec.ts b/playwright/reconnect.spec.ts
new file mode 100644
index 000000000..bd4dd1996
--- /dev/null
+++ b/playwright/reconnect.spec.ts
@@ -0,0 +1,62 @@
+/*
+Copyright 2025 New Vector Ltd.
+
+SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
+Please see LICENSE in the repository root for full details.
+*/
+
+import { expect, test } from "@playwright/test";
+
+// Skip test for Firefox, due to page.keyboard.press("Tab") not reliable on headless mode
+test.skip(
+ ({ browserName }) => browserName === "firefox",
+ 'This test is not working on firefox, page.keyboard.press("Tab") not reliable in headless mode',
+);
+
+test("can only interact with header and footer while reconnecting", async ({
+ page,
+}) => {
+ await page.goto("/");
+ await page.getByTestId("home_callName").click();
+ await page.getByTestId("home_callName").fill("Test call");
+ await page.getByTestId("home_displayName").click();
+ await page.getByTestId("home_displayName").fill("Test user");
+ // If we do not call fastForward here, we end up with Date.now() returning an actual timestamp
+ // but once we call `await page.clock.fastForward(20000);` later this will reset Date.now() to 0
+ // and we will never get into probablyDisconnected state?
+ await page.clock.fastForward(10);
+ await page.getByTestId("home_go").click();
+
+ await expect(page.locator("video")).toBeVisible();
+ await expect(page.getByTestId("lobby_joinCall")).toBeVisible();
+
+ // Join the call
+ await page.getByTestId("lobby_joinCall").click();
+
+ // The media tile for the local user should become visible
+ await new Promise((resolve) => setTimeout(resolve, 1500));
+ await expect(page.getByTestId("name_tag")).toContainText("Test user");
+
+ // Now disconnect from the internet
+ await page.route("https://synapse.m.localhost/**/*", async (route) => {
+ await new Promise((resolve) => setTimeout(resolve, 10000));
+ await route.continue();
+ });
+ await page.clock.fastForward(20000);
+
+ await expect(
+ page.getByRole("dialog", { name: "Reconnecting…" }),
+ ).toBeVisible();
+
+ // Tab order should jump directly from header to footer, skipping media tiles
+ await page.getByRole("switch", { name: "Mute microphone" }).focus();
+ await expect(
+ page.getByRole("switch", { name: "Mute microphone" }),
+ ).toBeFocused();
+ await page.keyboard.press("Tab");
+ await expect(page.getByRole("button", { name: "Microphone" })).toBeFocused();
+ await page.keyboard.press("Tab");
+ await expect(page.getByRole("switch", { name: "Stop video" })).toBeFocused();
+ // Most critically, we should be able to press the hangup button
+ await page.getByRole("button", { name: "End call" }).click();
+});
diff --git a/playwright/restricted-sfu.spec.ts b/playwright/restricted-sfu.spec.ts
new file mode 100644
index 000000000..a9e07d386
--- /dev/null
+++ b/playwright/restricted-sfu.spec.ts
@@ -0,0 +1,75 @@
+/*
+Copyright 2025 New Vector Ltd.
+
+SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
+Please see LICENSE in the repository root for full details.
+*/
+
+import { expect, test } from "@playwright/test";
+import { sleep } from "matrix-js-sdk/lib/utils.js";
+
+test("Should request JWT token before starting the call", async ({ page }) => {
+ await page.goto("/");
+
+ let sfGetTimestamp = 0;
+ let sendStateEventTimestamp = 0;
+ await page.route(
+ "**/matrix-rtc.m.localhost/livekit/jwt/sfu/get",
+ async (route) => {
+ await sleep(2000); // Simulate very slow request
+ await route.continue();
+ sfGetTimestamp = Date.now();
+ },
+ );
+
+ await page.route(
+ "**/state/org.matrix.msc3401.call.member/**",
+ async (route) => {
+ await route.continue();
+ sendStateEventTimestamp = Date.now();
+ },
+ );
+
+ await page.getByTestId("home_callName").click();
+ await page.getByTestId("home_callName").fill("HelloCall");
+ await page.getByTestId("home_displayName").click();
+ await page.getByTestId("home_displayName").fill("John Doe");
+ await page.getByTestId("home_go").click();
+
+ // Join the call
+ await page.getByTestId("lobby_joinCall").click();
+ await page.waitForTimeout(4000);
+ // Ensure that the call is connected
+ await page
+ .locator("div")
+ .filter({ hasText: /^HelloCall$/ })
+ .click();
+
+ expect(sfGetTimestamp).toBeGreaterThan(0);
+ expect(sendStateEventTimestamp).toBeGreaterThan(0);
+ expect(sfGetTimestamp).toBeLessThan(sendStateEventTimestamp);
+});
+
+test("Error when pre-warming the focus are caught by the ErrorBoundary", async ({
+ page,
+}) => {
+ await page.goto("/");
+
+ await page.route("**/openid/request_token", async (route) => {
+ await route.fulfill({
+ status: 418, // Simulate an error not retryable
+ });
+ });
+
+ await page.getByTestId("home_callName").click();
+ await page.getByTestId("home_callName").fill("HelloCall");
+ await page.getByTestId("home_displayName").click();
+ await page.getByTestId("home_displayName").fill("John Doe");
+ await page.getByTestId("home_go").click();
+
+ // Join the call
+ await page.getByTestId("lobby_joinCall").click();
+
+ // Should fail
+ await expect(page.getByText("Something went wrong")).toBeVisible();
+});
diff --git a/playwright/sfu-reconnect-bug.spec.ts b/playwright/sfu-reconnect-bug.spec.ts
new file mode 100644
index 000000000..5d13e2bc1
--- /dev/null
+++ b/playwright/sfu-reconnect-bug.spec.ts
@@ -0,0 +1,105 @@
+/*
+Copyright 2025 New Vector Ltd.
+
+SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
+Please see LICENSE in the repository root for full details.
+*/
+
+import { expect, test } from "@playwright/test";
+
+test("When creator left, avoid reconnect to the same SFU", async ({
+ browser,
+ browserName,
+}) => {
+ test.skip(browserName === "firefox", "Browser independent");
+ // Use reduce motion to disable animations that are making the tests a bit flaky
+ const creatorContext = await browser.newContext({ reducedMotion: "reduce" });
+ const creatorPage = await creatorContext.newPage();
+
+ await creatorPage.goto("/");
+
+ // ========
+ // ARRANGE: The first user creates a call as guest, join it, then click the invite button to copy the invite link
+ // ========
+ await creatorPage.getByTestId("home_callName").click();
+ await creatorPage.getByTestId("home_callName").fill("Welcome");
+ await creatorPage.getByTestId("home_displayName").click();
+ await creatorPage.getByTestId("home_displayName").fill("Inviter");
+ await creatorPage.getByTestId("home_go").click();
+ await expect(creatorPage.locator("video")).toBeVisible();
+
+ // join
+ await creatorPage.getByTestId("lobby_joinCall").click();
+ // Spotlight mode to make checking the test visually clearer
+ await creatorPage.getByRole("radio", { name: "Spotlight" }).check();
+
+ // Get the invite link
+ await creatorPage.getByRole("button", { name: "Invite" }).click();
+ await expect(
+ creatorPage.getByRole("heading", { name: "Invite to this call" }),
+ ).toBeVisible();
+ await expect(creatorPage.getByRole("img", { name: "QR Code" })).toBeVisible();
+ await expect(creatorPage.getByTestId("modal_inviteLink")).toBeVisible();
+ await expect(creatorPage.getByTestId("modal_inviteLink")).toBeVisible();
+ await creatorPage.getByTestId("modal_inviteLink").click();
+
+ const inviteLink = (await creatorPage.evaluate(
+ "navigator.clipboard.readText()",
+ )) as string;
+ expect(inviteLink).toContain("room/#/");
+
+ // ========
+ // ACT: The other user use the invite link to join the call as a guest
+ // ========
+ const guestB = await browser.newContext({
+ reducedMotion: "reduce",
+ });
+ const guestBPage = await guestB.newPage();
+
+ await guestBPage.goto(inviteLink);
+ await guestBPage.getByTestId("joincall_displayName").fill("Invitee");
+ await expect(guestBPage.getByTestId("joincall_joincall")).toBeVisible();
+ await guestBPage.getByTestId("joincall_joincall").click();
+ await guestBPage.getByTestId("lobby_joinCall").click();
+ await guestBPage.getByRole("radio", { name: "Spotlight" }).check();
+
+ // ========
+ // ACT: add a third user to the call to reproduce the bug
+ // ========
+ const guestC = await browser.newContext({
+ reducedMotion: "reduce",
+ });
+ const guestCPage = await guestC.newPage();
+ // Track WebSocket connections
+ let wsConnectionCount = 0;
+ await guestCPage.routeWebSocket("**", (ws) => {
+ // For some reason the interception is not working with the **
+ if (ws.url().includes("livekit/sfu/rtc")) {
+ wsConnectionCount++;
+ }
+ ws.connectToServer();
+ });
+
+ await guestCPage.goto(inviteLink);
+ await guestCPage.getByTestId("joincall_displayName").fill("Invitee");
+ await expect(guestCPage.getByTestId("joincall_joincall")).toBeVisible();
+ await guestCPage.getByTestId("joincall_joincall").click();
+ await guestCPage.getByTestId("lobby_joinCall").click();
+ await guestCPage.getByRole("radio", { name: "Spotlight" }).check();
+
+ await guestCPage.waitForTimeout(1000);
+ if (wsConnectionCount === 2) {
+ console.warn("wsConnectionCount is 2, expecting 1 after join");
+ }
+ const wsConnectionCountBeforeLeave = wsConnectionCount;
+ // ========
+ // the creator leaves the call
+ await creatorPage.getByTestId("incall_leave").click();
+
+ // https://github.com/element-hq/element-call/issues/3344
+ // The app used to request a new jwt token then to reconnect to the SFU
+ expect(wsConnectionCount).toBe(wsConnectionCountBeforeLeave);
+ // Wait a bit to be sure that if there was a reconnect, it would have happened by now
+ await guestCPage.waitForTimeout(6000);
+ expect(wsConnectionCount).toBe(wsConnectionCountBeforeLeave);
+});
diff --git a/playwright/spa-call-sticky.spec.ts b/playwright/spa-call-sticky.spec.ts
new file mode 100644
index 000000000..1dbda735b
--- /dev/null
+++ b/playwright/spa-call-sticky.spec.ts
@@ -0,0 +1,144 @@
+/*
+Copyright 2026 Element Creations Ltd.
+
+SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
+Please see LICENSE in the repository root for full details.
+*/
+
+import {
+ expect,
+ type Page,
+ test,
+ type Request,
+ type Browser,
+} from "@playwright/test";
+
+import { SpaHelpers } from "./spa-helpers";
+
+async function setupTwoUserSpaCall(
+ browser: Browser,
+ page: Page,
+ browserName: string,
+): Promise<{ guestPage: Page }> {
+ test.skip(
+ browserName === "firefox",
+ "The is test is not working on firefox CI environment. No mic/audio device inputs so cam/mic are disabled",
+ );
+
+ await page.goto("/");
+
+ let androlHasSentStickyEvent = false;
+ const androlResolver = Promise.withResolvers();
+ await interceptEventSend(
+ page,
+ // This room is not encrypted, so the event is sent in clear
+ "org.matrix.msc4143.rtc.member",
+ (req) => {
+ androlHasSentStickyEvent =
+ androlHasSentStickyEvent || isStickySend(req.url());
+ androlResolver.resolve();
+ },
+ );
+
+ await SpaHelpers.createCall(page, "Androl", "HelloCall", true, "2_0");
+
+ const inviteLink = await SpaHelpers.getCallInviteLink(page);
+
+ // Other
+ const guestInviteeContext = await browser.newContext({
+ reducedMotion: "reduce",
+ });
+ const guestPage = await guestInviteeContext.newPage();
+
+ await guestPage.goto("/");
+
+ let pevaraHasSentStickyEvent = false;
+
+ const pevaraResolver = Promise.withResolvers();
+ await interceptEventSend(
+ guestPage,
+ // This room is not encrypted, so the event is sent in clear
+ "org.matrix.msc4143.rtc.member",
+ (req) => {
+ pevaraHasSentStickyEvent =
+ pevaraHasSentStickyEvent || isStickySend(req.url());
+ pevaraResolver.resolve();
+ },
+ );
+
+ await SpaHelpers.joinCallFromInviteLink(
+ guestPage,
+ inviteLink,
+ "Pevara",
+ "2_0",
+ );
+ // Assert both sides have sent sticky membership events
+ await androlResolver.promise;
+ expect(androlHasSentStickyEvent).toEqual(true);
+ await pevaraResolver.promise;
+ expect(pevaraHasSentStickyEvent).toEqual(true);
+
+ return { guestPage };
+}
+
+test("One to One call using matrix rtc 2.0 aka sticky events", async ({
+ browser,
+ page,
+ browserName,
+}) => {
+ const { guestPage } = await setupTwoUserSpaCall(browser, page, browserName);
+
+ await SpaHelpers.expectVideoTilesCount(page, 2);
+ await SpaHelpers.expectVideoTilesCount(guestPage, 2);
+});
+
+// This issue occurs when a member leave but does not clean up their sticky event.
+// If they rejoin they will use a new stickye key (stickyKey = member.id = UUID())
+// We end up with two memberships with the same user and device id. This previously
+// was a impossible case since that would be the same state event. Now its possible.
+// We need to ALWAYS key by userId, deviceId and member.id. This test checks that.
+test("One to One rejoin after improper leave does not crash EC", async ({
+ browser,
+ page,
+ browserName,
+}) => {
+ const { guestPage } = await setupTwoUserSpaCall(browser, page, browserName);
+
+ await SpaHelpers.expectVideoTilesCount(page, 2);
+ await SpaHelpers.expectVideoTilesCount(guestPage, 2);
+
+ await guestPage.reload();
+ await expect(guestPage.getByTestId("lobby_joinCall")).toBeVisible();
+
+ // Check if rejoining with the same browser context (device) breaks EC.
+ // This has happened on versions that do not consider the member.id as part of the key for a media tile.
+ await guestPage.getByTestId("lobby_joinCall").click();
+
+ // We cannot use the `expectVideoTilesCount` helper here since one of them is expected to show waiting for media
+ await expect(page.getByTestId("videoTile")).toHaveCount(3, {
+ timeout: 10000,
+ });
+ await expect(guestPage.getByTestId("videoTile")).toHaveCount(2, {
+ timeout: 10000,
+ });
+});
+
+function isStickySend(url: string): boolean {
+ return !!new URL(url).searchParams.get(
+ "org.matrix.msc4354.sticky_duration_ms",
+ );
+}
+
+async function interceptEventSend(
+ page: Page,
+ eventType: string,
+ callback: (request: Request) => void,
+): Promise {
+ await page.route(
+ `**/_matrix/client/v3/rooms/**/send/${eventType}/**`,
+ async (route, req) => {
+ callback(req);
+ return route.continue();
+ },
+ );
+}
diff --git a/playwright/spa-helpers.ts b/playwright/spa-helpers.ts
new file mode 100644
index 000000000..24869141f
--- /dev/null
+++ b/playwright/spa-helpers.ts
@@ -0,0 +1,139 @@
+/*
+Copyright 2026 Element Creations Ltd.
+
+SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
+Please see LICENSE in the repository root for full details.
+*/
+
+import { expect, type Page } from "@playwright/test";
+
+import { type RtcMode } from "./widget/test-helpers.ts";
+
+/**
+ * Create and join a call from the SPA home page.
+ *
+ * @param page - The Playwright page object
+ * @param userName - The display name to use for the call
+ * @param callName - The name of the call to create
+ * @param autoJoin - Whether to automatically join the call after creating it
+ * @param mode - The RTC mode to use for the call
+ */
+async function createCall(
+ page: Page,
+ userName: string,
+ callName: string,
+ autoJoin: boolean = false,
+ mode: RtcMode | undefined = undefined,
+): Promise {
+ await page.getByTestId("home_callName").click();
+ await page.getByTestId("home_callName").fill(callName);
+ await page.getByTestId("home_displayName").click();
+ await page.getByTestId("home_displayName").fill(userName);
+ await page.getByTestId("home_go").click();
+
+ await expect(page.locator("video")).toBeVisible();
+ await expect(page.getByTestId("lobby_joinCall")).toBeVisible();
+
+ if (mode) {
+ await setRtcModeFromSettings(page, mode);
+ }
+
+ if (autoJoin) {
+ // Join the call
+ await page.getByTestId("lobby_joinCall").click();
+ }
+}
+
+/**
+ * Get the invite link for the current call.
+ */
+async function getCallInviteLink(page: Page): Promise {
+ await page.getByRole("button", { name: "Invite" }).click();
+ await expect(
+ page.getByRole("heading", { name: "Invite to this call" }),
+ ).toBeVisible();
+ await expect(page.getByRole("img", { name: "QR Code" })).toBeVisible();
+ await expect(page.getByTestId("modal_inviteLink")).toBeVisible();
+ await expect(page.getByTestId("modal_inviteLink")).toBeVisible();
+ await page.getByTestId("modal_inviteLink").click();
+
+ const inviteLink = (await page.evaluate(
+ "navigator.clipboard.readText()",
+ )) as string;
+ expect(inviteLink).toContain("room/#/");
+
+ return inviteLink;
+}
+
+/**
+ * Join a call from an invitation link.
+ * @param page - The Playwright page object
+ * @param inviteLink - The invite link to join
+ * @param displayName - The display name to use when joining the call
+ * @param mode - The RTC mode to use for the call
+ */
+async function joinCallFromInviteLink(
+ page: Page,
+ inviteLink: string,
+ displayName: string = "Invitee",
+ mode: RtcMode | undefined = undefined,
+): Promise {
+ await page.goto(inviteLink);
+ await page.getByTestId("joincall_displayName").fill(displayName);
+ await expect(page.getByTestId("joincall_joincall")).toBeVisible();
+ await page.getByTestId("joincall_joincall").click();
+
+ if (mode) {
+ await setRtcModeFromSettings(page, mode);
+ }
+
+ await page.getByTestId("lobby_joinCall").click();
+ await page.getByRole("radio", { name: "Spotlight" }).check();
+}
+
+async function setRtcModeFromSettings(
+ page: Page,
+ mode: RtcMode,
+): Promise {
+ await page.getByRole("button", { name: "Settings" }).click();
+ await page.getByRole("tab", { name: "Preferences" }).click();
+ await page.getByText("Developer mode", { exact: true }).check(); // Idempotent: won't uncheck if already checked
+
+ // Move to Developer tab now
+ await page.getByRole("tab", { name: "Developer" }).click();
+ if (mode == "legacy") {
+ await page.getByText("Legacy: state events").click();
+ } else if (mode == "2_0") {
+ await page.getByText("Matrix 2.0").click();
+ } else {
+ // compat
+ await page.getByText("Compatibility: state events").click();
+ }
+
+ await page.getByTestId("modal_close").click();
+}
+
+/**
+ * Expect a certain number of video tiles to be present and visible.
+ */
+async function expectVideoTilesCount(page: Page, count: number): Promise {
+ await expect(page.getByTestId("videoTile")).toHaveCount(2);
+
+ // No one should be waiting for media
+ await expect(page.getByText("Waiting for media...")).not.toBeVisible({
+ timeout: 10000,
+ });
+
+ // There should be `count` video elements, visible and autoplaying
+ await expect(page.locator("video").filter({ visible: true })).toHaveCount(
+ count,
+ { timeout: 10000 },
+ );
+}
+
+export const SpaHelpers = {
+ createCall,
+ getCallInviteLink,
+ joinCallFromInviteLink,
+ expectVideoTilesCount,
+};
diff --git a/playwright/utils/synapse-admin.ts b/playwright/utils/synapse-admin.ts
new file mode 100644
index 000000000..b1d0039c6
--- /dev/null
+++ b/playwright/utils/synapse-admin.ts
@@ -0,0 +1,142 @@
+/*
+Copyright 2026 Element Creations Ltd.
+
+SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
+Please see LICENSE in the repository root for full details.
+*/
+
+import { createHmac } from "crypto";
+
+/**
+ * Response from Synapse registration API
+ */
+export interface SynapseRegistrationResponse {
+ access_token: string;
+ user_id: string;
+ home_server: string;
+ device_id: string;
+}
+
+/**
+ * Utility class for interacting with Synapse Admin API
+ * This provides fast user registration without going through the UI
+ *
+ * @see https://matrix-org.github.io/synapse/latest/admin_api/register_api.html
+ */
+export class SynapseAdmin {
+ public constructor(
+ private baseUrl: string = "https://synapse.m.localhost",
+ private sharedSecret: string = "test_shared_secret_for_local_dev_only",
+ ) {}
+
+ /**
+ * Register a user using the Synapse Admin API
+ * This is much faster than going through the UI registration flow
+ *
+ * @param username - The username (localpart) for the new user
+ * @param password - The password for the new user
+ * @param displayName - Optional display name (defaults to username)
+ * @param admin - Whether the user should be an admin (defaults to false)
+ * @returns Registration response containing access token and user ID
+ */
+ public async registerUser(
+ username: string,
+ password: string,
+ displayName?: string,
+ admin: boolean = false,
+ ): Promise {
+ // Get a nonce first
+ const nonce = await this.getNonce();
+
+ // Generate the HMAC
+ const mac = this.generateMac(username, password, admin, nonce);
+
+ // Make the registration request
+ const response = await fetch(`${this.baseUrl}/_synapse/admin/v1/register`, {
+ method: "POST",
+ headers: {
+ "Content-Type": "application/json",
+ },
+ body: JSON.stringify({
+ nonce,
+ username,
+ password,
+ displayname: displayName || username,
+ admin,
+ mac,
+ }),
+ });
+
+ if (!response.ok) {
+ const error = await response.text();
+ throw new Error(
+ `Failed to register user ${username}: ${response.status} ${error}`,
+ );
+ }
+
+ return response.json();
+ }
+
+ /**
+ * Get a nonce for registration
+ * The nonce is required for the HMAC calculation
+ *
+ * @returns A nonce string
+ */
+ private async getNonce(): Promise {
+ const response = await fetch(`${this.baseUrl}/_synapse/admin/v1/register`, {
+ method: "GET",
+ });
+
+ if (!response.ok) {
+ throw new Error(
+ `Failed to get nonce: ${response.status} ${await response.text()}`,
+ );
+ }
+
+ const data = await response.json();
+ return data.nonce;
+ }
+
+ /**
+ * Generate HMAC for shared secret registration
+ * This is the authentication mechanism for the admin API
+ *
+ * @param username - The username
+ * @param password - The password
+ * @param admin - Whether the user is an admin
+ * @param nonce - The nonce from the server
+ * @returns The HMAC hex string
+ */
+ private generateMac(
+ username: string,
+ password: string,
+ admin: boolean,
+ nonce: string,
+ ): string {
+ const mac = createHmac("sha1", this.sharedSecret);
+ mac.update(nonce);
+ mac.update("\x00");
+ mac.update(username);
+ mac.update("\x00");
+ mac.update(password);
+ mac.update("\x00");
+ mac.update(admin ? "admin" : "notadmin");
+
+ return mac.digest("hex");
+ }
+
+ /**
+ * Create a new SynapseAdmin instance for a different homeserver
+ *
+ * @param baseUrl - The base URL of the homeserver
+ * @param sharedSecret - The shared secret (defaults to test secret)
+ * @returns A new SynapseAdmin instance
+ */
+ public static forHomeserver(
+ baseUrl: string,
+ sharedSecret: string = "test_shared_secret_for_local_dev_only",
+ ): SynapseAdmin {
+ return new SynapseAdmin(baseUrl, sharedSecret);
+ }
+}
diff --git a/playwright/widget/federated-call.test.ts b/playwright/widget/federated-call.test.ts
new file mode 100644
index 000000000..560636a5d
--- /dev/null
+++ b/playwright/widget/federated-call.test.ts
@@ -0,0 +1,83 @@
+/*
+Copyright 2026 Element Creations Ltd.
+
+SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
+Please see LICENSE in the repository root for full details.
+*/
+
+import { expect, test } from "@playwright/test";
+
+import { widgetTest } from "../fixtures/widget-user";
+import { HOST1, HOST2, type RtcMode, TestHelpers } from "./test-helpers";
+
+const modePairs: [RtcMode, RtcMode][] = [
+ ["compat", "compat"],
+ ["legacy", "legacy"],
+ ["legacy", "compat"],
+ ["compat", "legacy"],
+];
+
+modePairs.forEach(([rtcMode1, rtcMode2]) => {
+ widgetTest(
+ `Test federated call with rtc modes ${rtcMode1} and ${rtcMode2}`,
+ async ({ addUser, browserName }) => {
+ test.skip(
+ browserName === "firefox",
+ "The is test is not working on firefox CI environment. No mic/audio device inputs so cam/mic are disabled",
+ );
+
+ test.slow();
+
+ const [florian, timo] = await Promise.all([
+ addUser("florian", HOST1),
+ addUser("timo", HOST2),
+ ]);
+
+ const roomName = "Call Room";
+
+ await TestHelpers.createRoom(roomName, florian.page, [timo.mxId]);
+
+ await TestHelpers.acceptRoomInvite(roomName, timo.page);
+
+ await florian.page.pause();
+
+ await TestHelpers.openWidgetSetEmbeddedElementCallRtcModeCloseWidget(
+ florian.page,
+ rtcMode1,
+ );
+ await TestHelpers.openWidgetSetEmbeddedElementCallRtcModeCloseWidget(
+ timo.page,
+ rtcMode2,
+ );
+
+ await TestHelpers.startCallInCurrentRoom(florian.page, false);
+ await TestHelpers.joinCallFromLobby(florian.page);
+
+ // timo joins
+ await TestHelpers.joinCallInCurrentRoom(timo.page);
+
+ // We should see 2 video tiles everywhere now
+ for (const user of [timo, florian]) {
+ const frame = user.page
+ .locator('iframe[title="Element Call"]')
+ .contentFrame();
+ await expect(frame.getByTestId("videoTile")).toHaveCount(2, {
+ timeout: 10000,
+ });
+
+ // No one should be waiting for media
+ await expect(frame.getByText("Waiting for media...")).not.toBeVisible({
+ timeout: 10000,
+ });
+
+ // There should be 2 video elements, visible and autoplaying
+ const videoElements = await frame.locator("video").all();
+ expect(videoElements.length).toBe(2);
+
+ await TestHelpers.expectVisibleVideoCount(frame, 2);
+ }
+
+ // await florian.page.pause();
+ },
+ );
+});
diff --git a/playwright/widget/federation-oldest-membership-bug.spec.ts b/playwright/widget/federation-oldest-membership-bug.spec.ts
new file mode 100644
index 000000000..ab5c70fc8
--- /dev/null
+++ b/playwright/widget/federation-oldest-membership-bug.spec.ts
@@ -0,0 +1,85 @@
+/*
+Copyright 2026 Element Creations Ltd.
+
+SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
+Please see LICENSE in the repository root for full details.
+*/
+
+import { expect, test } from "@playwright/test";
+
+import { widgetTest } from "../fixtures/widget-user";
+import { HOST1, HOST2, TestHelpers } from "./test-helpers";
+
+widgetTest(
+ "Bug new joiner was not publishing on correct SFU",
+ async ({ addUser, browserName }) => {
+ test.skip(
+ browserName === "firefox",
+ "This is a bug in the old widget, not a browser problem.",
+ );
+
+ test.slow();
+
+ // 2 users in federation
+ const florian = await addUser("floriant", HOST1);
+ const timo = await addUser("timo", HOST2);
+
+ // Florian creates a room and invites Timo to it
+ const roomName = "Call Room";
+ await TestHelpers.createRoom(roomName, florian.page, [timo.mxId]);
+
+ // Timo joins the room
+ await TestHelpers.acceptRoomInvite(roomName, timo.page);
+
+ // Ensure we are in legacy mode (should be the default)
+ await TestHelpers.openWidgetSetEmbeddedElementCallRtcModeCloseWidget(
+ florian.page,
+ "legacy",
+ );
+ await TestHelpers.openWidgetSetEmbeddedElementCallRtcModeCloseWidget(
+ timo.page,
+ "legacy",
+ );
+
+ // Let timo create a call
+ await TestHelpers.startCallInCurrentRoom(timo.page, false);
+ await TestHelpers.joinCallFromLobby(timo.page);
+
+ // We want to simulate that the oldest membership authentication is way slower than
+ // the preffered auth.
+ // In this setup, timo advertised$ transport will be it's own, and the active will be the one from florian
+ await florian.page.route(
+ "**/matrix-rtc.othersite.m.localhost/livekit/jwt/**",
+ async (route) => {
+ await new Promise((resolve) => setTimeout(resolve, 2000)); // 5 second delay
+ await route.continue();
+ },
+ );
+
+ // Florian joins the call
+ await expect(florian.page.getByTestId("join-call-button")).toBeVisible();
+ await florian.page.getByTestId("join-call-button").click();
+ await TestHelpers.joinCallFromLobby(florian.page);
+
+ await florian.page.waitForTimeout(3000);
+ await timo.page.waitForTimeout(3000);
+
+ // We should see 2 video tiles everywhere now
+ for (const user of [timo, florian]) {
+ const frame = user.page
+ .locator('iframe[title="Element Call"]')
+ .contentFrame();
+ await expect(frame.getByTestId("videoTile")).toHaveCount(2);
+
+ // No one should be waiting for media
+ await expect(frame.getByText("Waiting for media...")).not.toBeVisible();
+
+ // There should be 2 video elements, visible and autoplaying
+ await expect(frame.locator("video")).toHaveCount(2, {
+ timeout: 10000,
+ });
+
+ await TestHelpers.expectVisibleVideoCount(frame, 2);
+ }
+ },
+);
diff --git a/playwright/widget/hotswap-legacy-compat.test.ts b/playwright/widget/hotswap-legacy-compat.test.ts
new file mode 100644
index 000000000..ed6f15083
--- /dev/null
+++ b/playwright/widget/hotswap-legacy-compat.test.ts
@@ -0,0 +1,91 @@
+/*
+Copyright 2026 Element Creations Ltd.
+
+SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
+Please see LICENSE in the repository root for full details.
+*/
+
+import { expect, test } from "@playwright/test";
+
+import { widgetTest } from "../fixtures/widget-user";
+import { HOST1, HOST2, TestHelpers } from "./test-helpers";
+
+// ## Issue
+// This test reproduces an issue with the publisher.
+// When switching local focus, we need to recreate the publisher.
+// This failed because of a dead lock in the old publishers destruction.
+//
+// There are numerus ways to enforece this situation:
+// - oldest member swap (manually set the oldest member focus and leave with the prev oldest member)
+// This almost never happens in the real worls since clients will set their preferredFoci list to what the oldest member is.
+// - switch from oldest member to multi sfu as the NOT the first joiner + the first joiner is on a different sfu than your preferred sfu.
+//
+// This test uses the "switch from oldest member to multi sfu" approach.
+//
+// It is a copy of federated-call.test.ts in the `["legacy", "legacy"]` setup,
+// which once connected will make the second user switch to multi sfu.
+widgetTest(
+ `Test swapping publisher from ${HOST1} to ${HOST2}`,
+ async ({ addUser, browserName }) => {
+ test.slow();
+ test.skip(
+ browserName === "firefox",
+ "The is test is not working on firefox CI environment. No mic/audio device inputs so cam/mic are disabled",
+ );
+
+ const florian = await addUser("floriant", HOST1);
+ const timo = await addUser("timo", HOST2);
+
+ const roomName = "Call Room";
+
+ await TestHelpers.createRoom(roomName, florian.page, [timo.mxId]);
+
+ await TestHelpers.acceptRoomInvite(roomName, timo.page);
+
+ await florian.page.pause();
+
+ await TestHelpers.openWidgetSetEmbeddedElementCallRtcModeCloseWidget(
+ florian.page,
+ "legacy",
+ );
+ await TestHelpers.openWidgetSetEmbeddedElementCallRtcModeCloseWidget(
+ timo.page,
+ "legacy",
+ );
+
+ await TestHelpers.startCallInCurrentRoom(florian.page, false);
+ await TestHelpers.joinCallFromLobby(florian.page);
+
+ // timo joins
+ await TestHelpers.joinCallInCurrentRoom(timo.page);
+
+ // We should see 2 video tiles everywhere now
+ for (const user of [timo, florian]) {
+ const frame = user.page
+ .locator('iframe[title="Element Call"]')
+ .contentFrame();
+ await expect(frame.getByTestId("videoTile")).toHaveCount(2);
+
+ // Wait for "Waiting for media..." to disappear (with timeout)
+ await expect(frame.getByText("Waiting for media...")).not.toBeVisible({
+ timeout: 10000, // Maximum time to wait
+ });
+
+ // There should be 2 video elements, visible and autoplaying
+ await expect(frame.locator("video")).toHaveCount(2, {
+ timeout: 10000,
+ });
+
+ await TestHelpers.expectVisibleVideoCount(frame, 2);
+ }
+
+ // now we switch the mode for timo (second joiner on multi-sfu HOST2 but currently HOST1)
+ await TestHelpers.setEmbeddedElementCallRtcMode(timo.page, "compat");
+ await timo.page.waitForTimeout(3000);
+
+ await TestHelpers.expectVisibleVideoCount(
+ timo.page.locator('iframe[title="Element Call"]').contentFrame(),
+ 2,
+ );
+ },
+);
diff --git a/playwright/widget/huddle-call.test.ts b/playwright/widget/huddle-call.test.ts
new file mode 100644
index 000000000..68e1ba542
--- /dev/null
+++ b/playwright/widget/huddle-call.test.ts
@@ -0,0 +1,129 @@
+/*
+Copyright 2026 Element Creations Ltd.
+
+SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
+Please see LICENSE in the repository root for full details.
+*/
+
+import { expect, test } from "@playwright/test";
+
+import { widgetTest } from "../fixtures/widget-user.ts";
+import { HOST1, TestHelpers } from "./test-helpers.ts";
+
+widgetTest("Create and join a group call", async ({ addUser, browserName }) => {
+ // increase the timeouts, it is a long test and it is annoying to retry from the beginning for a single timeout.
+ test.slow();
+
+ test.skip(
+ browserName === "firefox",
+ "The is test is not working on firefox CI environment. No mic/audio device inputs so cam/mic are disabled",
+ );
+
+ const [valere, timo, robin, halfshot, florian] = await Promise.all([
+ addUser("Valere", HOST1),
+ addUser("Timo", HOST1),
+ addUser("Robin", HOST1),
+ addUser("Halfshot", HOST1),
+ addUser("florian", HOST1),
+ ]);
+
+ const roomName = "Group Call Room";
+ await TestHelpers.createRoom(roomName, valere.page, [
+ timo.mxId,
+ robin.mxId,
+ halfshot.mxId,
+ florian.mxId,
+ ]);
+
+ for (const user of [timo, robin, halfshot, florian]) {
+ // Accept the invite
+ // This isn't super stable to get this as this super generic locator,
+ // but it works for now.
+ await TestHelpers.acceptRoomInvite(roomName, user.page);
+ }
+
+ // Start the call as Valere
+ await TestHelpers.startCallInCurrentRoom(valere.page, false);
+ await expect(
+ valere.page.locator('iframe[title="Element Call"]'),
+ ).toBeVisible();
+
+ await TestHelpers.joinCallFromLobby(valere.page);
+
+ await Promise.all(
+ [timo, robin, halfshot, florian].map(async (user) => {
+ await TestHelpers.joinCallInCurrentRoom(user.page);
+ }),
+ );
+
+ await Promise.all(
+ [timo, robin, halfshot, florian].map(async (user) => {
+ const frame = user.page
+ .locator('iframe[title="Element Call"]')
+ .contentFrame();
+ await expect(
+ frame.getByRole("switch", { name: "Stop video", checked: true }),
+ ).toBeVisible({
+ timeout: 10000,
+ });
+ }),
+ );
+
+ // We should see 5 video tiles everywhere now
+ await Promise.all(
+ [valere, timo, robin, halfshot, florian].map(async (user) => {
+ const frame = user.page
+ .locator('iframe[title="Element Call"]')
+ .contentFrame();
+ await expect(frame.getByTestId("videoTile")).toHaveCount(5, {
+ timeout: 15000,
+ });
+
+ await Promise.all(
+ [valere, timo, robin, halfshot, florian].map(async (user) => {
+ // Check the names are correct
+ await expect(frame.getByText(user.displayName)).toBeVisible();
+ }),
+ );
+
+ // No one should be waiting for media
+ await expect(frame.getByText("Waiting for media...")).not.toBeVisible({
+ // Use a bigger timeout here
+ timeout: 10000,
+ });
+
+ // There should be 5 video elements, visible and autoplaying
+ await expect(frame.locator("video")).toHaveCount(5);
+ await expect(frame.locator("video[autoplay]")).toHaveCount(5);
+
+ await TestHelpers.expectVisibleVideoCount(frame, 5);
+ }),
+ );
+
+ // Quickly test muting one participant to see it reflects and that our asserts works
+ const florianFrame = florian.page
+ .locator('iframe[title="Element Call"]')
+ .contentFrame();
+ const florianVideoButton = florianFrame.getByRole("switch", {
+ name: /video/,
+ });
+ await expect(florianVideoButton).toHaveAccessibleName("Stop video");
+ await expect(florianVideoButton).toBeChecked();
+ await florianVideoButton.click();
+ // Now the button should indicate we can start video
+ await expect(florianVideoButton).toHaveAccessibleName("Start video");
+ await expect(florianVideoButton).not.toBeChecked();
+
+ {
+ const frame = valere.page
+ .locator('iframe[title="Element Call"]')
+ .contentFrame();
+
+ await expect(frame.locator("video")).toHaveCount(5, {
+ timeout: 10000,
+ });
+
+ // out of 5 ONLY 4 are visible (display:block) !!
+ await TestHelpers.expectVisibleVideoCount(frame, 4);
+ }
+});
diff --git a/playwright/widget/pip-call-button-interaction.test.ts b/playwright/widget/pip-call-button-interaction.test.ts
new file mode 100644
index 000000000..95aa41960
--- /dev/null
+++ b/playwright/widget/pip-call-button-interaction.test.ts
@@ -0,0 +1,71 @@
+/*
+Copyright 2026 Element Creations Ltd.
+
+SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
+Please see LICENSE in the repository root for full details.
+*/
+
+import { expect, test } from "@playwright/test";
+
+import { widgetTest } from "../fixtures/widget-user.ts";
+import { HOST1, TestHelpers } from "./test-helpers.ts";
+
+widgetTest("Footer interaction in PiP", async ({ addUser, browserName }) => {
+ test.skip(
+ browserName === "firefox",
+ "The is test is not working on firefox CI environment. No mic/audio device inputs so cam/mic are disabled",
+ );
+
+ const valere = await addUser("Valere", HOST1);
+
+ const callRoom = "CallRoom";
+ await TestHelpers.createRoom("CallRoom", valere.page);
+
+ await TestHelpers.createRoom("OtherRoom", valere.page);
+
+ await TestHelpers.switchToRoomNamed(valere.page, callRoom);
+
+ // Start the call as Valere
+ await TestHelpers.startCallInCurrentRoom(valere.page, false);
+ await expect(
+ valere.page.locator('iframe[title="Element Call"]'),
+ ).toBeVisible();
+
+ await TestHelpers.joinCallFromLobby(valere.page);
+ // wait a bit so that the PIP has rendered
+ await valere.page.waitForTimeout(600);
+
+ // Switch to the other room, the call should go to PIP
+ await TestHelpers.switchToRoomNamed(valere.page, "OtherRoom");
+
+ // We should see the PIP overlay
+ const iFrame = valere.page
+ .locator('iframe[title="Element Call"]')
+ .contentFrame();
+
+ {
+ // Check for a bug where the video had the wrong fit in PIP
+ const audioBtn = iFrame.getByRole("switch", { name: /microphone/ });
+ const videoBtn = iFrame.getByRole("switch", { name: /video/ });
+ await expect(
+ iFrame.getByRole("button", { name: "End call" }),
+ ).toBeVisible();
+ await expect(audioBtn).toBeVisible();
+ await expect(videoBtn).toBeVisible();
+ await expect(audioBtn).toHaveAccessibleName("Mute microphone");
+ await expect(audioBtn).toBeChecked();
+ await expect(videoBtn).toHaveAccessibleName("Stop video");
+ await expect(videoBtn).toBeChecked();
+
+ await videoBtn.click();
+ await audioBtn.click();
+
+ // stop hovering on any of the buttons
+ await iFrame.getByTestId("videoTile").hover();
+
+ await expect(audioBtn).toHaveAccessibleName("Unmute microphone");
+ await expect(audioBtn).not.toBeChecked();
+ await expect(videoBtn).toHaveAccessibleName("Start video");
+ await expect(videoBtn).not.toBeChecked();
+ }
+});
diff --git a/playwright/widget/pip-call.test.ts b/playwright/widget/pip-call.test.ts
new file mode 100644
index 000000000..b18252c10
--- /dev/null
+++ b/playwright/widget/pip-call.test.ts
@@ -0,0 +1,77 @@
+/*
+Copyright 2026 Element Creations Ltd.
+
+SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
+Please see LICENSE in the repository root for full details.
+*/
+
+import { expect, test } from "@playwright/test";
+
+import { widgetTest } from "../fixtures/widget-user.ts";
+import { HOST1, TestHelpers } from "./test-helpers.ts";
+
+widgetTest("Put call in PIP", async ({ addUser, browserName }) => {
+ test.skip(
+ browserName === "firefox",
+ "The is test is not working on firefox CI environment. No mic/audio device inputs so cam/mic are disabled",
+ );
+
+ test.slow();
+
+ const valere = await addUser("Valere", HOST1);
+ const timo = await addUser("Timo", HOST1);
+
+ const callRoom = "TeamRoom";
+ await TestHelpers.createRoom(callRoom, valere.page, [timo.mxId]);
+
+ await TestHelpers.createRoom("DoubleTask", valere.page);
+
+ await TestHelpers.acceptRoomInvite(callRoom, timo.page);
+
+ await TestHelpers.switchToRoomNamed(valere.page, callRoom);
+
+ // Start the call as Valere
+ await TestHelpers.startCallInCurrentRoom(valere.page, false);
+ await expect(
+ valere.page.locator('iframe[title="Element Call"]'),
+ ).toBeVisible();
+
+ await TestHelpers.joinCallFromLobby(valere.page);
+
+ await TestHelpers.joinCallInCurrentRoom(timo.page);
+
+ const frame = timo.page
+ .locator('iframe[title="Element Call"]')
+ .contentFrame();
+
+ // check that the video is on
+ await expect(
+ frame.getByRole("switch", { name: "Stop video", checked: true }),
+ ).toBeVisible({
+ // Increase timeout, as this expect was flaky
+ timeout: 15000,
+ });
+
+ // Switch to the other room, the call should go to PIP
+ await TestHelpers.switchToRoomNamed(valere.page, "DoubleTask");
+
+ // We should see the PIP overlay
+ await expect(valere.page.getByTestId("widget-pip-container")).toBeVisible();
+
+ {
+ // wait a bit so that the PIP has rendered the video
+ await valere.page.waitForTimeout(600);
+
+ // Check for a bug where the video had the wrong fit in PIP
+ const frame = valere.page
+ .locator('iframe[title="Element Call"]')
+ .contentFrame();
+
+ await expect(frame.locator("video")).toHaveCount(1, { timeout: 10000 });
+
+ const videoElements = await frame.locator("video").all();
+
+ const pipVideo = videoElements[0];
+ await expect(pipVideo).toHaveCSS("object-fit", "cover");
+ }
+});
diff --git a/playwright/widget/screen-share.test.ts b/playwright/widget/screen-share.test.ts
new file mode 100644
index 000000000..c6b03c3f9
--- /dev/null
+++ b/playwright/widget/screen-share.test.ts
@@ -0,0 +1,152 @@
+/*
+Copyright 2026 Element Creations Ltd.
+
+SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
+Please see LICENSE in the repository root for full details.
+*/
+
+import { expect, test } from "@playwright/test";
+
+import { widgetTest } from "../fixtures/widget-user.ts";
+import { HOST1, TestHelpers } from "./test-helpers.ts";
+
+widgetTest("Sharing screen in group call", async ({ addUser, browserName }) => {
+ test.skip(
+ browserName === "firefox",
+ "The is test is not working on firefox CI environment. No mic/audio device inputs so cam/mic are disabled",
+ );
+
+ test.slow(); // We are registering multiple users here, give it more time
+
+ const [alice, bob, carol] = await Promise.all([
+ addUser("Alice", HOST1),
+ addUser("Bob", HOST1),
+ addUser("Carol", HOST1),
+ ]);
+
+ const roomName = "Meeting Room";
+ await TestHelpers.createRoom(roomName, alice.page, [bob.mxId, carol.mxId]);
+
+ for (const user of [bob, carol]) {
+ // Accept the invite
+ // This isn't super stable to get this as this super generic locator,
+ // but it works for now.
+ await TestHelpers.acceptRoomInvite(roomName, user.page);
+ }
+
+ await TestHelpers.startCallInCurrentRoom(alice.page, false);
+ await expect(
+ alice.page.locator('iframe[title="Element Call"]'),
+ ).toBeVisible();
+
+ await TestHelpers.joinCallFromLobby(alice.page);
+
+ for (const user of [bob, carol]) {
+ await TestHelpers.joinCallInCurrentRoom(user.page);
+ }
+
+ for (const user of [alice, bob, carol]) {
+ const frame = user.page
+ .locator('iframe[title="Element Call"]')
+ .contentFrame();
+
+ // Expect 3 video tiles
+ await expect(frame.locator("video")).toHaveCount(3, {
+ timeout: 10000,
+ });
+ }
+
+ // await alice.page.pause();
+
+ await alice.page
+ .locator('iframe[title="Element Call"]')
+ .contentFrame()
+ .getByRole("switch", { name: "Share screen" })
+ .click();
+
+ // await alice.page.pause();
+
+ for (const user of [alice, bob, carol]) {
+ const frame = user.page
+ .locator('iframe[title="Element Call"]')
+ .contentFrame();
+
+ // Expect 4 (3 + screen share) video tiles
+ await expect(frame.locator("video")).toHaveCount(4, {
+ timeout: 5000,
+ });
+
+ await expect(
+ frame.locator('video[data-lk-source="screen_share"]'),
+ ).toHaveCount(1);
+ }
+
+ // Alice should be in grid mode as she is local sharing
+ {
+ const frame = alice.page
+ .locator('iframe[title="Element Call"]')
+ .contentFrame();
+ await expect(frame.getByRole("radio", { name: "Grid" })).toBeChecked();
+ }
+
+ // Others should have switched to spotlight
+ for (const user of [bob, carol]) {
+ const frame = user.page
+ .locator('iframe[title="Element Call"]')
+ .contentFrame();
+
+ await expect(frame.getByRole("radio", { name: "Spotlight" })).toBeChecked();
+ }
+ // await alice.page.pause();
+ // await bob.page.pause();
+
+ // Let's start another screen share from bob
+ await bob.page
+ .locator('iframe[title="Element Call"]')
+ .contentFrame()
+ .getByRole("switch", { name: "Share screen" })
+ .click();
+
+ {
+ const frame = carol.page
+ .locator('iframe[title="Element Call"]')
+ .contentFrame();
+
+ // Expect 5 (2 + screen share) video tiles
+ await expect(frame.locator("video")).toHaveCount(5, {
+ timeout: 5000,
+ });
+
+ await expect(
+ frame.locator('video[data-lk-source="screen_share"]'),
+ ).toHaveCount(2);
+
+ // Expect 2 indicators at the bottom
+ await expect(frame.getByTestId("screenshare-indicator")).toHaveCount(2);
+
+ // Check the first indicator is visible
+ await expect(
+ frame.getByTestId("screenshare-indicator").first(),
+ ).toHaveAttribute("data-visible", "true");
+
+ await carol.page.pause();
+
+ // now click on next
+ await expect(frame.getByRole("button", { name: "Next" })).toBeVisible();
+ await frame.getByRole("button", { name: "Next" }).click();
+
+ // Check the second indicator is visible
+ await expect(
+ frame.getByTestId("screenshare-indicator").nth(1),
+ ).toHaveAttribute("data-visible", "true");
+ // the first one should be grayed out
+ await expect(
+ frame.getByTestId("screenshare-indicator").first(),
+ ).toHaveAttribute("data-visible", "false");
+
+ // There should be a prev button now
+ await expect(frame.getByRole("button", { name: "Back" })).toBeVisible();
+
+ // await carol.page.pause();
+ }
+});
diff --git a/playwright/widget/simple-create.spec.ts b/playwright/widget/simple-create.spec.ts
index 3712f5c49..31afb31e9 100644
--- a/playwright/widget/simple-create.spec.ts
+++ b/playwright/widget/simple-create.spec.ts
@@ -8,28 +8,20 @@ Please see LICENSE in the repository root for full details.
import { expect, test } from "@playwright/test";
import { widgetTest } from "../fixtures/widget-user.ts";
+import { TestHelpers } from "./test-helpers.ts";
+
+// Skip test, including Fixtures
+widgetTest.skip(
+ ({ browserName }) => browserName === "firefox",
+ "This test is not working on firefox, after hangup brooks is locked in a strange state with a blank widget",
+);
widgetTest("Start a new call as widget", async ({ asWidget, browserName }) => {
- test.skip(
- browserName === "firefox",
- "This test is not working on firefox, after hangup brooks is locked in a strange state with a blank widget",
- );
+ test.slow();
const { brooks, whistler } = asWidget;
- await expect(
- brooks.page.getByRole("button", { name: "Video call" }),
- ).toBeVisible();
- await brooks.page.getByRole("button", { name: "Video call" }).click();
-
- await expect(
- brooks.page.getByRole("menuitem", { name: "Legacy Call" }),
- ).toBeVisible();
- await expect(
- brooks.page.getByRole("menuitem", { name: "Element Call" }),
- ).toBeVisible();
-
- await brooks.page.getByRole("menuitem", { name: "Element Call" }).click();
+ await TestHelpers.startCallInCurrentRoom(brooks.page, false);
await expect(
brooks.page
@@ -46,36 +38,37 @@ widgetTest("Start a new call as widget", async ({ asWidget, browserName }) => {
// Check the join indicator on the room list
await expect(
- brooks.page.locator("div").filter({ hasText: /^Joined • 1$/ }),
+ brooks.page
+ .locator('iframe[title="Element Call"]')
+ .contentFrame()
+ .getByRole("button", { name: "End call" }),
).toBeVisible();
// Join from the other side
- await expect(whistler.page.getByText("Video call started")).toBeVisible();
- await expect(
- whistler.page.getByRole("button", { name: "Join" }),
- ).toBeVisible();
- await whistler.page.getByRole("button", { name: "Join" }).click();
+ await TestHelpers.joinCallInCurrentRoom(whistler.page);
- await expect(
- whistler.page
- .locator('iframe[title="Element Call"]')
- .contentFrame()
- .getByTestId("lobby_joinCall"),
- ).toBeVisible();
+ // Currently disabled due to recent Element Web is bypassing Lobby
+ // await expect(
+ // whistler.page
+ // .locator('iframe[title="Element Call"]')
+ // .contentFrame()
+ // .getByTestId("lobby_joinCall"),
+ // ).toBeVisible();
+ //
+ // await whistler.page
+ // .locator('iframe[title="Element Call"]')
+ // .contentFrame()
+ // .getByTestId("lobby_joinCall")
+ // .click();
- await whistler.page
- .locator('iframe[title="Element Call"]')
- .contentFrame()
- .getByTestId("lobby_joinCall")
- .click();
+ // Currrenty disabled due to recent Element Web not indicating the number of participants
+ // await expect(
+ // whistler.page.locator("div").filter({ hasText: /^Joined • 2$/ }),
+ // ).toBeVisible();
- await expect(
- whistler.page.locator("div").filter({ hasText: /^Joined • 2$/ }),
- ).toBeVisible();
-
- await expect(
- brooks.page.locator("div").filter({ hasText: /^Joined • 2$/ }),
- ).toBeVisible();
+ // await expect(
+ // brooks.page.locator("div").filter({ hasText: /^Joined • 2$/ }),
+ // ).toBeVisible();
// Whistler leaves
await whistler.page.waitForTimeout(1000);
@@ -90,8 +83,12 @@ widgetTest("Start a new call as widget", async ({ asWidget, browserName }) => {
.locator('iframe[title="Element Call"]')
.contentFrame()
.getByTestId("incall_leave")
- .click();
+ .click({ timeout: 15000 });
- await expect(whistler.page.locator(".mx_BasicMessageComposer")).toBeVisible();
- await expect(brooks.page.locator(".mx_BasicMessageComposer")).toBeVisible();
+ await expect(whistler.page.locator(".mx_BasicMessageComposer")).toBeVisible({
+ timeout: 10000,
+ });
+ await expect(brooks.page.locator(".mx_BasicMessageComposer")).toBeVisible({
+ timeout: 10000,
+ });
});
diff --git a/playwright/widget/test-helpers.ts b/playwright/widget/test-helpers.ts
new file mode 100644
index 000000000..299faf578
--- /dev/null
+++ b/playwright/widget/test-helpers.ts
@@ -0,0 +1,392 @@
+/*
+Copyright 2026 Element Creations Ltd.
+
+SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
+Please see LICENSE in the repository root for full details.
+*/
+
+import {
+ type Browser,
+ expect,
+ type JSHandle,
+ type Page,
+ type FrameLocator,
+} from "@playwright/test";
+import { type MatrixClient } from "matrix-js-sdk";
+
+import { SynapseAdmin } from "../utils/synapse-admin.ts";
+
+const PASSWORD = "foobarbaz1!";
+
+export const HOST1 = "https://app.m.localhost/#/welcome";
+export const HOST2 = "https://app.othersite.m.localhost/#/welcome";
+
+export type RtcMode = "legacy" | "compat" | "2_0";
+
+export class TestHelpers {
+ public static async startCallInCurrentRoom(
+ page: Page,
+ voice: boolean = false,
+ ): Promise {
+ const buttonName = voice ? "Voice call" : "Video call";
+
+ await page.getByRole("button", { name: buttonName }).click({
+ timeout: 5000,
+ });
+
+ await page.getByRole("menuitem", { name: "Element Call" }).click({
+ timeout: 10000,
+ });
+ }
+
+ public static async joinCallFromLobby(page: Page): Promise {
+ await expect(
+ page
+ .locator('iframe[title="Element Call"]')
+ .contentFrame()
+ .getByTestId("lobby_joinCall"),
+ ).toBeVisible();
+
+ await page
+ .locator('iframe[title="Element Call"]')
+ .contentFrame()
+ .getByTestId("lobby_joinCall")
+ .click();
+ }
+
+ public static async joinCallInCurrentDM(
+ page: Page,
+ audioOnly: boolean = false,
+ ): Promise {
+ await this.joinCallInRoom(page, audioOnly, true);
+ }
+
+ public static async joinCallInCurrentRoom(
+ page: Page,
+ audioOnly: boolean = false,
+ ): Promise {
+ await this.joinCallInRoom(page, audioOnly, false);
+ }
+
+ public static async joinCallInRoom(
+ page: Page,
+ audioOnly: boolean = false,
+ isDM: boolean = false,
+ ): Promise {
+ await page.waitForTimeout(3000);
+ const label = isDM
+ ? audioOnly
+ ? "Incoming voice call"
+ : "Incoming video call"
+ : "Group call started";
+ await expect(page.getByText(label)).toBeVisible({
+ timeout: 10000,
+ });
+ // XXX This using the notification toast to join the room.
+ // Not the buttons in the header or timeline
+ await page.getByRole("alert").getByRole("button", { name: "Join" }).click({
+ timeout: 5000,
+ });
+ }
+
+ /**
+ * Registers a new user and returns page, clientHandle and mxId.
+ */
+ public static async registerUser(
+ browser: Browser,
+ username: string,
+ host: string = HOST1,
+ ): Promise<{
+ page: Page;
+ clientHandle: JSHandle;
+ mxId: string;
+ }> {
+ // Determine which homeserver to use based on the host
+ const synapseBaseUrl =
+ host === HOST2
+ ? "https://synapse.othersite.m.localhost"
+ : "https://synapse.m.localhost";
+
+ // Register user via Synapse Admin API to speed things up
+ const synapseAdmin = SynapseAdmin.forHomeserver(synapseBaseUrl);
+ const credentials = await synapseAdmin.registerUser(
+ username,
+ PASSWORD,
+ username,
+ );
+
+ // STEP 2: Open browser and login
+ const userContext = await browser.newContext({
+ reducedMotion: "reduce",
+ });
+ const page = await userContext.newPage();
+ await page.goto(host);
+
+ await page.getByRole("link", { name: "Sign in" }).click({
+ timeout: 10000,
+ });
+
+ await page.getByRole("textbox", { name: "Username" }).fill(username, {
+ timeout: 10000,
+ });
+ await page.getByRole("textbox", { name: "Password" }).fill(PASSWORD, {
+ timeout: 10000,
+ });
+ await page.getByRole("button", { name: "Sign in" }).click();
+
+ await expect(
+ page.getByRole("heading", { name: `Welcome ${username}` }),
+ ).toBeVisible({
+ // Increase timeout here :/ flaky
+ timeout: 15000,
+ });
+
+ await this.dismissStartupToasts(page);
+
+ await TestHelpers.setDevToolElementCallDevUrl(page);
+
+ const clientHandle = await page.evaluateHandle(() =>
+ window.mxMatrixClientPeg.get(),
+ );
+ const mxId = credentials.user_id;
+ return { page, clientHandle, mxId };
+ }
+
+ // Dismisses any toasts that appear on startup, such as "Failed to load service worker" or "Back up your chats".
+ // Toast can be stacked, and only the top one can be dismiss, so just look at what is on top and
+ // dismiss (if part of expected toats)
+ public static async dismissStartupToasts(page: Page): Promise {
+ const expectedToasts = [
+ { title: "Failed to load service worker", button: "OK" },
+ { title: "Back up your chats", button: "Dismiss" },
+ { title: "Turn on key storage", button: "Dismiss" },
+ { title: "Element does not support this browser", button: "Dismiss" },
+ ];
+
+ const toast = page.locator(".mx_Toast_toast");
+
+ // eslint-disable-next-line no-constant-condition
+ while (true) {
+ try {
+ await toast.waitFor({ state: "visible", timeout: 700 });
+ const title = await toast.locator(".mx_Toast_title h2").textContent();
+
+ // Find the matching toast config
+ const toastConfig = expectedToasts.find((t) =>
+ title?.includes(t.title),
+ );
+
+ if (toastConfig) {
+ await toast.getByRole("button", { name: toastConfig.button }).click();
+ } else {
+ // Unknown toast. We don't want to act on unknown toasts
+ break;
+ }
+ } catch {
+ // No toast visible, exit loop
+ break;
+ }
+ }
+ }
+
+ public static async closeReleaseAnnouncement(
+ page: Page,
+ name: string,
+ ): Promise {
+ try {
+ await page
+ .getByRole("dialog", { name })
+ .getByRole("button", { name: "OK" })
+ .click({ timeout: 2000 });
+ } catch {
+ // Announcement not shown; nothing to do
+ }
+ }
+
+ public static async createRoom(
+ name: string,
+ page: Page,
+ andInvite: string[] = [],
+ ): Promise {
+ await TestHelpers.closeReleaseAnnouncement(page, "Introducing Sections");
+
+ await page
+ .getByRole("navigation", { name: "Room list" })
+ .getByRole("button", { name: "New conversation" })
+ .click();
+
+ await page.getByRole("menuitem", { name: "New Room" }).click({
+ timeout: 5000,
+ });
+ await page.getByRole("textbox", { name: "Name" }).fill(name);
+ await page.getByRole("button", { name: "Create room" }).click();
+ await expect(page.getByText("You created this room.")).toBeVisible({
+ timeout: 10000,
+ });
+ await expect(page.getByText("Encryption enabled")).toBeVisible();
+ await TestHelpers.dismissStartupToasts(page);
+
+ // Invite users if any
+ if (andInvite.length > 0) {
+ await page
+ .getByRole("button", { name: "Invite to this room", exact: true })
+ .click();
+
+ const inviteInput = page.getByRole("dialog").getByRole("textbox");
+ for (const mxId of andInvite) {
+ await inviteInput.focus();
+ await inviteInput.fill(mxId);
+ await inviteInput.press("Enter");
+ }
+
+ await page.getByRole("button", { name: "Invite" }).click();
+ await TestHelpers.dismissInviteUnknownUserModal(page);
+ }
+ }
+
+ /**
+ * Accepts a room invite using the room name.
+ * Locatest the invite in the room list.
+ *
+ */
+ public static async acceptRoomInvite(
+ roomName: string,
+ page: Page,
+ ): Promise {
+ await page.getByRole("option", { name: roomName }).click({
+ timeout: 10000,
+ });
+ await page.getByRole("button", { name: "Accept" }).click({
+ timeout: 5000,
+ });
+
+ await expect(
+ page.getByRole("main").getByRole("heading", { name: roomName }),
+ ).toBeVisible();
+ await TestHelpers.dismissStartupToasts(page);
+ }
+
+ /**
+ * Opens the widget and then goes to the settings to set the RTC mode.
+ * then closes the widget lobby.
+ *
+ * intended to be used before joining!
+ *
+ * WORKS IF A ROOM IS CURRENTLY OPENED IN THE PAGE
+ */
+ public static async openWidgetSetEmbeddedElementCallRtcModeCloseWidget(
+ page: Page,
+ mode: RtcMode,
+ ): Promise {
+ await page.getByRole("button", { name: "Video call" }).click({
+ timeout: 5000,
+ });
+ await page.getByRole("menuitem", { name: "Element Call" }).click({
+ timeout: 10000,
+ });
+
+ await TestHelpers.setEmbeddedElementCallRtcMode(page, mode);
+ await page.getByRole("button", { name: "Close lobby" }).click();
+ }
+
+ /**
+ * Goes to the settings to set the RTC mode.
+ * then closes the settings modal.
+ *
+ * WORKS IF A ROOM IS CURRENTLY SHOWING THE EC WIDGET
+ */
+ public static async setEmbeddedElementCallRtcMode(
+ page: Page,
+ mode: RtcMode,
+ ): Promise {
+ const iframe = page.locator('iframe[title="Element Call"]').contentFrame();
+
+ await iframe.getByRole("button", { name: "Settings" }).click();
+ await iframe.getByRole("tab", { name: "Preferences" }).click();
+
+ // await iframe.getByText("Developer mode", { exact: true }).click();
+ await iframe.getByText("Developer mode", { exact: true }).check(); // Idempotent: won't uncheck if already checked
+
+ // Move to Developer tab now
+ await iframe.getByRole("tab", { name: "Developer" }).click();
+ if (mode == "legacy") {
+ await iframe.getByText("Legacy: state events").click();
+ } else if (mode == "2_0") {
+ await iframe.getByText("Matrix 2.0").click();
+ } else {
+ // compat
+ await iframe.getByText("Compatibility: state events").click();
+ }
+ await iframe.getByTestId("modal_close").click();
+ }
+
+ /**
+ * Sets the current Element Web app to use the dev Element Call URL.
+ * @param page - The EW page
+ */
+ public static async setDevToolElementCallDevUrl(page: Page): Promise {
+ if (process.env.USE_DOCKER) {
+ await page.evaluate(() => {
+ window.mxSettingsStore.setValue(
+ "Developer.elementCallUrl",
+ null,
+ "device",
+ "https://call.m.localhost/room",
+ );
+ });
+ } else {
+ await page.evaluate(() => {
+ window.mxSettingsStore.setValue(
+ "Developer.elementCallUrl",
+ null,
+ "device",
+ "https://localhost:3000/room",
+ );
+ });
+ }
+ }
+
+ /**
+ * Switches to a room in the room list by its name.
+ * @param page - The EW page
+ * @param roomName - The name of the room to switch to
+ */
+ public static async switchToRoomNamed(
+ page: Page,
+ roomName: string,
+ ): Promise {
+ await page.getByRole("option", { name: `Open room ${roomName}` }).click();
+ }
+
+ public static async dismissInviteUnknownUserModal(page: Page): Promise {
+ await expect(
+ page.getByRole("heading", { name: "Invite new contacts to this" }),
+ ).toBeVisible();
+ await page.getByRole("button", { name: "Invite" }).click({
+ timeout: 5000,
+ });
+ }
+
+ public static async dismissInviteUnknownUserModalDM(
+ page: Page,
+ ): Promise {
+ await expect(
+ page.getByRole("heading", {
+ name: "Start a chat with this new contact?",
+ }),
+ ).toBeVisible();
+ await page.getByRole("button", { name: "Continue" }).click({
+ timeout: 5000,
+ });
+ }
+
+ public static async expectVisibleVideoCount(
+ frame: FrameLocator,
+ count: number,
+ ): Promise {
+ await expect(frame.locator("video").filter({ visible: true })).toHaveCount(
+ count,
+ { timeout: 10000 },
+ );
+ }
+}
diff --git a/playwright/widget/voice-call-dm.spec.ts b/playwright/widget/voice-call-dm.spec.ts
new file mode 100644
index 000000000..d2f20ac2d
--- /dev/null
+++ b/playwright/widget/voice-call-dm.spec.ts
@@ -0,0 +1,238 @@
+/*
+Copyright 2026 Element Creations Ltd.
+
+SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
+Please see LICENSE in the repository root for full details.
+*/
+
+import { expect, test } from "@playwright/test";
+
+import { widgetTest } from "../fixtures/widget-user.ts";
+import { TestHelpers } from "./test-helpers.ts";
+
+widgetTest.use({ callType: "dm" });
+
+widgetTest(
+ "Start a new voice call in DM as widget",
+ async ({ asWidget, browserName }) => {
+ test.skip(
+ browserName === "firefox",
+ "The is test is not working on firefox CI environment. No mic/audio device inputs so cam/mic are disabled",
+ );
+
+ const { brooks, whistler } = asWidget;
+
+ await TestHelpers.startCallInCurrentRoom(brooks.page, true);
+
+ await expect(
+ brooks.page.locator('iframe[title="Element Call"]'),
+ ).toBeVisible();
+
+ const brooksFrame = brooks.page
+ .locator('iframe[title="Element Call"]')
+ .contentFrame();
+ // We should show a ringing tile, let's check for that
+ await expect(
+ brooksFrame
+ .getByTestId("videoTile")
+ .filter({ has: brooksFrame.getByText("Calling…") }),
+ ).toBeVisible();
+
+ await expect(whistler.page.getByText("Incoming voice call")).toBeVisible();
+ await whistler.page
+ .getByRole("alert")
+ .getByRole("button", { name: "Join" })
+ .click();
+
+ await expect(
+ whistler.page.locator('iframe[title="Element Call"]'),
+ ).toBeVisible();
+
+ const whistlerFrame = whistler.page
+ .locator('iframe[title="Element Call"]')
+ .contentFrame();
+
+ // ASSERT the button states for whistler (the callee)
+ // video should be off by default in a voice call
+ await expect(
+ whistlerFrame.getByRole("switch", {
+ name: "Start video",
+ checked: false,
+ }),
+ ).toBeVisible();
+ // audio should be on for the voice call
+ await expect(
+ whistlerFrame.getByRole("switch", {
+ name: "Mute microphone",
+ checked: true,
+ }),
+ ).toBeVisible();
+
+ // ASSERT the button states for brools (the caller)
+ // video should be off by default in a voice call
+ await expect(
+ whistlerFrame.getByRole("switch", {
+ name: "Start video",
+ checked: false,
+ }),
+ ).toBeVisible();
+ // audio should be on for the voice call
+ await expect(
+ whistlerFrame.getByRole("switch", {
+ name: "Mute microphone",
+ checked: true,
+ }),
+ ).toBeVisible();
+
+ // We confirm that we started in Pip mode (voice call) and check that we still see the composer.
+ await expect(
+ whistler.page.locator(".mx_BasicMessageComposer"),
+ ).toBeVisible();
+ await expect(brooks.page.locator(".mx_BasicMessageComposer")).toBeVisible();
+
+ // ASSERT hanging up on one side ends the call for both
+ await brooksFrame.getByRole("button", { name: "End call" }).click();
+
+ // The widget should be closed on both sides
+ await expect(
+ whistler.page.locator('iframe[title="Element Call"]'),
+ ).not.toBeVisible();
+ await expect(
+ whistler.page.locator('iframe[title="Element Call"]'),
+ ).not.toBeVisible();
+ },
+);
+
+widgetTest(
+ "Start a new video call in DM as widget",
+ async ({ asWidget, browserName }) => {
+ test.skip(
+ browserName === "firefox",
+ "The is test is not working on firefox CI environment. No mic/audio device inputs so cam/mic are disabled",
+ );
+
+ const { brooks, whistler } = asWidget;
+
+ await TestHelpers.startCallInCurrentRoom(brooks.page, false);
+
+ await expect(
+ brooks.page.locator('iframe[title="Element Call"]'),
+ ).toBeVisible();
+
+ const brooksFrame = brooks.page
+ .locator('iframe[title="Element Call"]')
+ .contentFrame();
+
+ // We should show a ringing tile, let's check for that
+ await expect(
+ brooksFrame
+ .getByTestId("videoTile")
+ .filter({ has: brooksFrame.getByText(whistler.displayName) })
+ .filter({ has: brooksFrame.getByText("Calling…") }),
+ ).toBeVisible();
+
+ await expect(whistler.page.getByText("Incoming video call")).toBeVisible();
+ await whistler.page
+ .getByRole("alert")
+ .getByRole("button", { name: "Join" })
+ .click();
+
+ await expect(
+ whistler.page.locator('iframe[title="Element Call"]'),
+ ).toBeVisible();
+
+ const whistlerFrame = whistler.page
+ .locator('iframe[title="Element Call"]')
+ .contentFrame();
+
+ // ASSERT the button states for whistler (the callee)
+ // video should be off by default in a video call
+ await expect(
+ whistlerFrame.getByRole("switch", { name: "Stop video", checked: true }),
+ ).toBeVisible();
+ // audio should be on too
+ await expect(
+ whistlerFrame.getByRole("switch", {
+ name: "Mute microphone",
+ checked: true,
+ }),
+ ).toBeVisible();
+
+ // ASSERT the button states for brools (the caller)
+ // video should be off by default in a video call
+ await expect(
+ whistlerFrame.getByRole("switch", { name: "Stop video", checked: true }),
+ ).toBeVisible();
+ // audio should be on too
+ await expect(
+ whistlerFrame.getByRole("switch", {
+ name: "Mute microphone",
+ checked: true,
+ }),
+ ).toBeVisible();
+
+ // In order to confirm that the call is disconnected we will check that the message composer is shown again.
+ // So first we need to confirm that it is hidden when in the call.
+ await expect(
+ whistler.page.locator(".mx_BasicMessageComposer"),
+ ).not.toBeVisible();
+ await expect(
+ brooks.page.locator(".mx_BasicMessageComposer"),
+ ).not.toBeVisible();
+
+ // ASSERT hanging up on one side ends the call for both
+ await brooksFrame.getByRole("button", { name: "End call" }).click();
+
+ // The widget should be closed on both sides and the timeline should be back on screen
+ await expect(
+ whistler.page.locator(".mx_BasicMessageComposer"),
+ ).toBeVisible();
+ await expect(brooks.page.locator(".mx_BasicMessageComposer")).toBeVisible();
+ },
+);
+
+widgetTest(
+ "Decline a new video call in DM as widget",
+ async ({ asWidget, browserName }) => {
+ test.skip(
+ browserName === "firefox",
+ "The is test is not working on firefox CI environment. No mic/audio device inputs so cam/mic are disabled",
+ );
+
+ const { brooks, whistler } = asWidget;
+
+ await TestHelpers.startCallInCurrentRoom(brooks.page, false);
+
+ await expect(
+ brooks.page.locator('iframe[title="Element Call"]'),
+ ).toBeVisible();
+
+ const brooksFrame = brooks.page
+ .locator('iframe[title="Element Call"]')
+ .contentFrame();
+
+ // We should show a ringing tile, let's check for that
+ await expect(
+ brooksFrame
+ .getByTestId("videoTile")
+ .filter({ has: brooksFrame.getByText(whistler.displayName) })
+ .filter({ has: brooksFrame.getByText("Calling…") }),
+ ).toBeVisible();
+
+ await expect(whistler.page.getByText("Incoming video call")).toBeVisible();
+ await whistler.page.getByRole("button", { name: "Decline" }).click();
+
+ await expect(
+ whistler.page.locator('iframe[title="Element Call"]'),
+ ).not.toBeVisible();
+
+ // The widget should be closed and the timeline should be back on screen
+ await expect(
+ brooks.page.locator('iframe[title="Element Call"]'),
+ ).not.toBeVisible();
+
+ await expect(
+ brooks.page.getByText("This is the beginning of your"),
+ ).toBeVisible();
+ },
+);
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
new file mode 100644
index 000000000..012524e98
--- /dev/null
+++ b/pnpm-lock.yaml
@@ -0,0 +1,12302 @@
+lockfileVersion: '9.0'
+
+settings:
+ autoInstallPeers: true
+ excludeLinksFromLockfile: false
+
+overrides:
+ '@livekit/components-core>rxjs': ^7.8.1
+ '@livekit/track-processors>@mediapipe/tasks-vision': ^0.10.18
+ tar: ^7.5.11
+ minimatch: ^10.2.3
+ glob: ^10.5.0
+ qs: ^6.15.2
+ js-yaml: ^4.2.0
+ esbuild: ^0.28.0
+ undici: ^6.27.0
+ flatted: ^3.4.2
+ ws: ^8.21.0
+ dompurify: ^3.4.11
+
+importers:
+
+ .:
+ devDependencies:
+ '@codecov/vite-plugin':
+ specifier: ^1.3.0
+ version: 1.9.1(vite@8.1.0(@types/node@24.13.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(terser@5.46.1)(yaml@2.9.0))
+ '@fontsource/inconsolata':
+ specifier: ^5.1.0
+ version: 5.2.8
+ '@fontsource/inter':
+ specifier: ^5.1.0
+ version: 5.2.8
+ '@formatjs/intl-durationformat':
+ specifier: ^0.10.0
+ version: 0.10.15
+ '@formatjs/intl-segmenter':
+ specifier: ^11.7.3
+ version: 11.7.12
+ '@livekit/components-core':
+ specifier: ^0.12.0
+ version: 0.12.13(livekit-client@2.21.0(@types/dom-mediacapture-record@1.0.22))(tslib@2.8.1)
+ '@livekit/components-react':
+ specifier: ^2.0.0
+ version: 2.9.21(livekit-client@2.21.0(@types/dom-mediacapture-record@1.0.22))(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(tslib@2.8.1)
+ '@livekit/track-processors':
+ specifier: ^0.7.1
+ version: 0.7.2(@types/dom-mediacapture-transform@0.1.11)(livekit-client@2.21.0(@types/dom-mediacapture-record@1.0.22))
+ '@mediapipe/tasks-vision':
+ specifier: ^0.10.18
+ version: 0.10.35
+ '@playwright/test':
+ specifier: ^1.60.0
+ version: 1.61.1
+ '@radix-ui/react-dialog':
+ specifier: ^1.0.4
+ version: 1.1.17(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@radix-ui/react-slider':
+ specifier: ^1.1.2
+ version: 1.4.1(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@radix-ui/react-visually-hidden':
+ specifier: ^1.0.3
+ version: 1.2.6(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@react-spring/web':
+ specifier: ^10.0.0
+ version: 10.1.2(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@sentry/react':
+ specifier: ^8.0.0
+ version: 8.55.2(react@19.2.7)
+ '@sentry/vite-plugin':
+ specifier: ^3.0.0
+ version: 3.6.1
+ '@storybook/addon-docs':
+ specifier: ^10.3.6
+ version: 10.4.6(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(esbuild@0.28.1)(rollup@4.60.1)(storybook@10.4.6(@testing-library/dom@10.4.1)(@types/react@19.2.17)(prettier@3.8.3)(react@19.2.7))(vite@8.1.0(@types/node@24.13.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(terser@5.46.1)(yaml@2.9.0))
+ '@storybook/addon-vitest':
+ specifier: ^10.3.6
+ version: 10.4.6(@vitest/browser-playwright@4.1.9)(@vitest/browser@4.1.9)(@vitest/runner@4.1.9)(react@19.2.7)(storybook@10.4.6(@testing-library/dom@10.4.1)(@types/react@19.2.17)(prettier@3.8.3)(react@19.2.7))(vitest@4.1.9)
+ '@storybook/react-vite':
+ specifier: ^10.3.6
+ version: 10.4.6(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(esbuild@0.28.1)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(rollup@4.60.1)(storybook@10.4.6(@testing-library/dom@10.4.1)(@types/react@19.2.17)(prettier@3.8.3)(react@19.2.7))(typescript@5.9.3)(vite@8.1.0(@types/node@24.13.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(terser@5.46.1)(yaml@2.9.0))
+ '@testing-library/dom':
+ specifier: ^10.1.0
+ version: 10.4.1
+ '@testing-library/jest-dom':
+ specifier: ^6.6.3
+ version: 6.9.1
+ '@testing-library/react':
+ specifier: ^16.0.0
+ version: 16.3.2(@testing-library/dom@10.4.1)(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@testing-library/user-event':
+ specifier: ^14.5.1
+ version: 14.6.1(@testing-library/dom@10.4.1)
+ '@types/eslint':
+ specifier: ^9.6.1
+ version: 9.6.1
+ '@types/grecaptcha':
+ specifier: ^3.0.9
+ version: 3.0.9
+ '@types/jsdom':
+ specifier: ^21.1.7
+ version: 21.1.7
+ '@types/lodash-es':
+ specifier: ^4.17.12
+ version: 4.17.12
+ '@types/node':
+ specifier: ^24.0.0
+ version: 24.13.2
+ '@types/pako':
+ specifier: ^2.0.3
+ version: 2.0.4
+ '@types/qrcode':
+ specifier: ^1.5.5
+ version: 1.5.6
+ '@types/react':
+ specifier: ^19.0.0
+ version: 19.2.17
+ '@types/react-dom':
+ specifier: ^19.0.0
+ version: 19.2.3(@types/react@19.2.17)
+ '@types/sdp-transform':
+ specifier: ^2.4.5
+ version: 2.15.0
+ '@typescript-eslint/utils':
+ specifier: ^8.61.0
+ version: 8.62.0(eslint@8.57.1)(typescript@5.9.3)
+ '@use-gesture/react':
+ specifier: ^10.2.11
+ version: 10.3.1(react@19.2.7)
+ '@vector-im/compound-design-tokens':
+ specifier: ^10.0.0
+ version: 10.2.3(@types/react@19.2.17)(react@19.2.7)
+ '@vector-im/compound-web':
+ specifier: ^9.3.0
+ version: 9.8.0(@fontsource/inconsolata@5.2.8)(@fontsource/inter@5.2.8)(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(@vector-im/compound-design-tokens@10.2.3(@types/react@19.2.17)(react@19.2.7))(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@vitejs/plugin-react':
+ specifier: ^6.0.2
+ version: 6.0.3(vite@8.1.0(@types/node@24.13.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(terser@5.46.1)(yaml@2.9.0))
+ '@vitest/browser-playwright':
+ specifier: ^4.1.5
+ version: 4.1.9(playwright@1.61.1)(vite@8.1.0(@types/node@24.13.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(terser@5.46.1)(yaml@2.9.0))(vitest@4.1.9)
+ '@vitest/coverage-v8':
+ specifier: ^4.0.18
+ version: 4.1.9(@vitest/browser@4.1.9)(vitest@4.1.9)
+ '@vitest/ui':
+ specifier: 4.1.9
+ version: 4.1.9(vitest@4.1.9)
+ classnames:
+ specifier: ^2.3.1
+ version: 2.5.1
+ copy-to-clipboard:
+ specifier: ^3.3.3
+ version: 3.3.3
+ eslint-plugin-element-call:
+ specifier: link:eslint
+ version: link:eslint
+ eslint-plugin-storybook:
+ specifier: ^10.3.6
+ version: 10.4.6(eslint@8.57.1)(storybook@10.4.6(@testing-library/dom@10.4.1)(@types/react@19.2.17)(prettier@3.8.3)(react@19.2.7))(typescript@5.9.3)
+ fetch-mock:
+ specifier: 11.1.5
+ version: 11.1.5
+ i18next:
+ specifier: ^25.0.0
+ version: 25.10.10(typescript@5.9.3)
+ i18next-browser-languagedetector:
+ specifier: ^8.0.0
+ version: 8.2.1
+ i18next-cli:
+ specifier: ^1.61.0
+ version: 1.64.2(@types/node@24.13.2)(react-dom@19.2.7(react@19.2.7))(typescript@5.9.3)
+ jsdom:
+ specifier: ^26.0.0
+ version: 26.1.0
+ knip:
+ specifier: ^5.86.0
+ version: 5.88.1(@emnapi/core@1.11.1)(@emnapi/runtime@1.11.1)(@types/node@24.13.2)(typescript@5.9.3)
+ livekit-client:
+ specifier: ^2.18.1
+ version: 2.21.0(@types/dom-mediacapture-record@1.0.22)
+ lodash-es:
+ specifier: ^4.17.21
+ version: 4.18.1
+ loglevel:
+ specifier: ^1.9.1
+ version: 1.9.2
+ matrix-js-sdk:
+ specifier: github:matrix-org/matrix-js-sdk#develop
+ version: https://codeload.github.com/matrix-org/matrix-js-sdk/tar.gz/8c95727b6278fe7942c20d0b9485f984dd0694b7
+ matrix-widget-api:
+ specifier: ^1.16.1
+ version: 1.17.0
+ node-stdlib-browser:
+ specifier: ^1.3.1
+ version: 1.3.1
+ normalize.css:
+ specifier: ^8.0.1
+ version: 8.0.1
+ observable-hooks:
+ specifier: ^4.2.3
+ version: 4.2.4(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(rxjs@7.8.2)
+ oxfmt:
+ specifier: ^0.56.0
+ version: 0.56.0
+ oxlint:
+ specifier: ^1.70.0
+ version: 1.71.0(oxlint-tsgolint@0.23.0)
+ oxlint-tsgolint:
+ specifier: ^0.23.0
+ version: 0.23.0
+ pako:
+ specifier: ^2.0.4
+ version: 2.2.0
+ postcss:
+ specifier: ^8.4.41
+ version: 8.5.18
+ postcss-preset-env:
+ specifier: ^10.0.0
+ version: 10.6.1(postcss@8.5.18)
+ posthog-js:
+ specifier: 1.374.0
+ version: 1.374.0
+ qrcode:
+ specifier: ^1.5.4
+ version: 1.5.4
+ react:
+ specifier: '19'
+ version: 19.2.7
+ react-dom:
+ specifier: '19'
+ version: 19.2.7(react@19.2.7)
+ react-i18next:
+ specifier: ^16.0.0 <16.7.0
+ version: 16.6.6(i18next@25.10.10(typescript@5.9.3))(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(typescript@5.9.3)
+ react-router-dom:
+ specifier: ^7.0.0
+ version: 7.18.0(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ react-use-measure:
+ specifier: ^2.1.1
+ version: 2.1.7(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ rxjs:
+ specifier: ^7.8.1
+ version: 7.8.2
+ sass:
+ specifier: ^1.42.1
+ version: 1.101.0
+ storybook:
+ specifier: ^10.3.6
+ version: 10.4.6(@testing-library/dom@10.4.1)(@types/react@19.2.17)(prettier@3.8.3)(react@19.2.7)
+ typescript:
+ specifier: ^5.8.3
+ version: 5.9.3
+ unique-names-generator:
+ specifier: ^4.6.0
+ version: 4.7.1
+ uuid:
+ specifier: ^14.0.0
+ version: 14.0.1
+ vaul:
+ specifier: ^1.0.0
+ version: 1.1.2(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ vite:
+ specifier: ^8.0.0
+ version: 8.1.0(@types/node@24.13.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(terser@5.46.1)(yaml@2.9.0)
+ vite-plugin-generate-file:
+ specifier: ^0.3.0
+ version: 0.3.1
+ vite-plugin-html:
+ specifier: ^3.2.2
+ version: 3.2.2(vite@8.1.0(@types/node@24.13.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(terser@5.46.1)(yaml@2.9.0))
+ vite-plugin-node-polyfills:
+ specifier: ^0.28.0
+ version: 0.28.0(rollup@4.60.1)(vite@8.1.0(@types/node@24.13.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(terser@5.46.1)(yaml@2.9.0))
+ vite-plugin-node-stdlib-browser:
+ specifier: ^0.2.1
+ version: 0.2.1(node-stdlib-browser@1.3.1)(rollup@4.60.1)(vite@8.1.0(@types/node@24.13.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(terser@5.46.1)(yaml@2.9.0))
+ vite-plugin-svgr:
+ specifier: ^4.0.0
+ version: 4.5.0(rollup@4.60.1)(typescript@5.9.3)(vite@8.1.0(@types/node@24.13.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(terser@5.46.1)(yaml@2.9.0))
+ vite-plugin-wasm:
+ specifier: ^3.6.0
+ version: 3.6.0(vite@8.1.0(@types/node@24.13.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(terser@5.46.1)(yaml@2.9.0))
+ vitest:
+ specifier: ^4.1.5
+ version: 4.1.9(@opentelemetry/api@1.9.1)(@types/node@24.13.2)(@vitest/browser-playwright@4.1.9)(@vitest/coverage-v8@4.1.9)(@vitest/ui@4.1.9)(jsdom@26.1.0)(vite@8.1.0(@types/node@24.13.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(terser@5.46.1)(yaml@2.9.0))
+ vitest-axe:
+ specifier: ^1.0.0-pre.3
+ version: 1.0.0-pre.5(vitest@4.1.9)
+
+packages:
+
+ '@actions/core@1.11.1':
+ resolution: {integrity: sha512-hXJCSrkwfA46Vd9Z3q4cpEpHB1rL5NG04+/rbqW9d3+CSvtB1tYe8UTpAlixa1vj0m/ULglfEK2UKxMGxCxv5A==}
+
+ '@actions/exec@1.1.1':
+ resolution: {integrity: sha512-+sCcHHbVdk93a0XT19ECtO/gIXoxvdsgQLzb2fE2/5sIZmWQuluYyjPQtrtTHdU1YzTZ7bAPN4sITq2xi1679w==}
+
+ '@actions/github@6.0.1':
+ resolution: {integrity: sha512-xbZVcaqD4XnQAe35qSQqskb3SqIAfRyLBrHMd/8TuL7hJSz2QtbDwnNM8zWx4zO5l2fnGtseNE3MbEvD7BxVMw==}
+
+ '@actions/http-client@2.2.3':
+ resolution: {integrity: sha512-mx8hyJi/hjFvbPokCg4uRd4ZX78t+YyRPtnKWwIl+RzNaVuFpQHfmlGVfsKEJN8LwTCvL+DfVgAM04XaHkm6bA==}
+
+ '@actions/io@1.1.3':
+ resolution: {integrity: sha512-wi9JjgKLYS7U/z8PPbco+PvTb/nRWjeoFlJ1Qer83k/3C5PHQi28hiVdeE2kHXmIL99mQFawx8qt/JPjZilJ8Q==}
+
+ '@adobe/css-tools@4.4.4':
+ resolution: {integrity: sha512-Elp+iwUx5rN5+Y8xLt5/GRoG20WGoDCQ/1Fb+1LiGtvwbDavuSk0jhD/eZdckHAuzcDzccnkv+rEjyWfRx18gg==}
+
+ '@asamuzakjp/css-color@3.2.0':
+ resolution: {integrity: sha512-K1A6z8tS3XsmCMM86xoWdn7Fkdn9m6RSVtocUrJYIwZnFVkng/PvkEoWtOWmP+Scc6saYWHWZYbndEEXxl24jw==}
+
+ '@babel/code-frame@7.29.0':
+ resolution: {integrity: sha512-9NhCeYjq9+3uxgdtp20LSiJXJvN0FeCtNGpJxuMFZ1Kv3cWUNb6DOhJwUvcVCzKGR66cw4njwM6hrJLqgOwbcw==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/code-frame@7.29.7':
+ resolution: {integrity: sha512-Aup7aUOfpbAUg2ROOJN6Iw5f9DMBlzu0mIkm/malLQFN/YQgO48wCj0Kxa3sEHJvPVFg7siR+qRInwXd2qhQKw==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/compat-data@7.29.7':
+ resolution: {integrity: sha512-locTkQyKvwIEgBzVrn8693ebc97F2U8ZHjbXwDXJ5Fn2TCpNwTlKcaKLkdHop5c/icOFE7qt7Q9JC5hnKNa6Gg==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/core@7.29.7':
+ resolution: {integrity: sha512-RgHBCvtjbOK2gXSNBNIkNoEc9qoVEtau3hj8gEqKQuL3HZAibKarWFEI3Lfm6EYKkLalOh8eSrj9b+ch9H/VBA==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/generator@7.29.7':
+ resolution: {integrity: sha512-DkXD5OJQaAQIdZ1bt3UZdEnHAn9Imd3IVBdX03UFe+ony9Ojw5pzr9YVKGDY1jt+Gcn/FnGkNf8r+Vj5NOJWtQ==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/helper-compilation-targets@7.29.7':
+ resolution: {integrity: sha512-wem6WaBj4NaVYVdNhLPPVacES6ZJ+KBBfSkTMD3YZxbP3rm3Di85tJU5ljaUNhaOynt+Aj0xruhYuzQBt8n71g==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/helper-globals@7.29.7':
+ resolution: {integrity: sha512-3nQVUAtvkKH9zahfWgw96Jc/uFOmjACE1kQz82E2lqWmHBgjzbNlsC22nuQTfahmWeQtTq5nQ/4Nnd2A1wj4zA==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/helper-module-imports@7.29.7':
+ resolution: {integrity: sha512-ejHwrQQYcm9xnTivShn2IDOlIzInN34AXskvq9QicvCtEzq1Vzclu/tKF8Jq1Cg8JG2GL6/EmjgsCT7lXepE3g==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/helper-module-transforms@7.29.7':
+ resolution: {integrity: sha512-UPUVSyXbOh627KiCIGQSgwWzGeBKLkaJ9PJEdrngIwMSzxLR4jS4+f1f1jb7VzBbg8nFLaYotvVPFCTqdrmTAg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+
+ '@babel/helper-string-parser@7.29.7':
+ resolution: {integrity: sha512-Pb5ijPrZ89GDH8223L4UP8i6QApWxs04RbPQJTeWDV0/keR2E36MeKnyr6LYmUUvqRRI+Iv87SuF1W6ErINzYw==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/helper-validator-identifier@7.28.5':
+ resolution: {integrity: sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/helper-validator-identifier@7.29.7':
+ resolution: {integrity: sha512-qehxGkRj55h/ff8EMaJ+cYhyaKlHIxqYDn682wQD7RNp9UujOQsHog2uS0r2vzr4pW+sXf90NeeayjcNaX3fFg==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/helper-validator-option@7.29.7':
+ resolution: {integrity: sha512-N9ZErrD+yW5geCDtBqnOoxmR8+tNKiGuxKlDpuJxfsqpa2dFcexaziGAE/qoHLiDDreVNMupxGmSoNlyvsA3gw==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/helpers@7.29.7':
+ resolution: {integrity: sha512-1k2lAGRMfHTcwuNYcCNUmaUffmQv8KWMfh2iJUUeRlwlwH4FdNG7mfPI10NPfLHJFThE4Tyr4mv7kTNZOiPuBg==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/parser@7.29.7':
+ resolution: {integrity: sha512-hnORnjP/1P/zFEndoeX+n+t1RwWRJiJpM/jO7FW32Kn9r5+sJB2JWOdYo4L6k78j15eCwY3Gm/7364B1EMwtNg==}
+ engines: {node: '>=6.0.0'}
+ hasBin: true
+
+ '@babel/runtime@7.29.2':
+ resolution: {integrity: sha512-JiDShH45zKHWyGe4ZNVRrCjBz8Nh9TMmZG1kh4QTK8hCBTWBi8Da+i7s1fJw7/lYpM4ccepSNfqzZ/QvABBi5g==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/runtime@7.29.7':
+ resolution: {integrity: sha512-Nq8OhGWiZIZGV6hLHoyAKLLcJihP/xFeBMGJoUrxTX2psI8dCifzLhZISFb+VWS3wFMRDmCGw5R+dOySCqPLhw==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/template@7.29.7':
+ resolution: {integrity: sha512-puq+Gf35oI24FeN11LkoUQFqv9uwNeWpxXZi/Ji3rRIoKAzKnxRaZ+Gkj0vKS9ZCiTESfng1N9LyOyXvo+m+Gg==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/traverse@7.29.7':
+ resolution: {integrity: sha512-EhlfNQtZ+NK22w5BM61ciuiq1m58ed33Wr1Xan//ZRTy6hgjnwyCffRYwzsGXdASJSUJ1guZILsErh1eQcl+zw==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/types@7.29.7':
+ resolution: {integrity: sha512-4zBIxpPzowiZpusoFkyGVwakdRJUyuH5PxQ/PrqghfdFWWasvnCdPfQXHrenDai+gyLARulZjZowCOj6fjT4pA==}
+ engines: {node: '>=6.9.0'}
+
+ '@bcoe/v8-coverage@1.0.2':
+ resolution: {integrity: sha512-6zABk/ECA/QYSCQ1NGiVwwbQerUCZ+TQbp64Q3AgmfNvurHH0j8TtXa1qbShXA6qqkpAj4V5W8pP6mLe1mcMqA==}
+ engines: {node: '>=18'}
+
+ '@blazediff/core@1.9.1':
+ resolution: {integrity: sha512-ehg3jIkYKulZh+8om/O25vkvSsXXwC+skXmyA87FFx6A/45eqOkZsBltMw/TVteb0mloiGT8oGRTcjRAz66zaA==}
+
+ '@bufbuild/protobuf@1.10.1':
+ resolution: {integrity: sha512-wJ8ReQbHxsAfXhrf9ixl0aYbZorRuOWpBNzm8pL8ftmSxQx/wnJD5Eg861NwJU/czy2VXFIebCeZnZrI9rktIQ==}
+
+ '@codecov/bundler-plugin-core@1.9.1':
+ resolution: {integrity: sha512-dt3ic7gMswz4p/qdkYPVJwXlLiLsz55rBBn2I7mr0HTG8pCoLRqnANJIwo5WrqGBZgPyVSMPBqBra6VxLWfDyA==}
+ engines: {node: '>=18.0.0'}
+
+ '@codecov/vite-plugin@1.9.1':
+ resolution: {integrity: sha512-S6Yne7comVulJ1jD3T7rCfYFHPR0zUjAYoLjUDPXNJCUrdzWJdf/ak/UepE7TicqQG+yBa6eb5WusqcPgg+1AQ==}
+ engines: {node: '>=18.0.0'}
+ peerDependencies:
+ vite: 4.x || 5.x || 6.x
+
+ '@croct/json5-parser@0.2.2':
+ resolution: {integrity: sha512-0NJMLrbeLbQ0eCVj3UoH/kG2QckUgOASfwmfDTjyW1xAYPyTNJXcWVT/dssJdTJd0pRchW+qF0VFWQHcxs1OVw==}
+
+ '@croct/json@2.1.0':
+ resolution: {integrity: sha512-UrWfjNQVlBxN+OVcFwHmkjARMW55MBN04E9KfGac8ac8z1QnFVuiOOFtMWXCk3UwsyRqhsNaFoYLZC+xxqsVjQ==}
+
+ '@csstools/cascade-layer-name-parser@2.0.5':
+ resolution: {integrity: sha512-p1ko5eHgV+MgXFVa4STPKpvPxr6ReS8oS2jzTukjR74i5zJNyWO1ZM1m8YKBXnzDKWfBN1ztLYlHxbVemDD88A==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ '@csstools/css-parser-algorithms': ^3.0.5
+ '@csstools/css-tokenizer': ^3.0.4
+
+ '@csstools/color-helpers@5.1.0':
+ resolution: {integrity: sha512-S11EXWJyy0Mz5SYvRmY8nJYTFFd1LCNV+7cXyAgQtOOuzb4EsgfqDufL+9esx72/eLhsRdGZwaldu/h+E4t4BA==}
+ engines: {node: '>=18'}
+
+ '@csstools/css-calc@2.1.4':
+ resolution: {integrity: sha512-3N8oaj+0juUw/1H3YwmDDJXCgTB1gKU6Hc/bB502u9zR0q2vd786XJH9QfrKIEgFlZmhZiq6epXl4rHqhzsIgQ==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ '@csstools/css-parser-algorithms': ^3.0.5
+ '@csstools/css-tokenizer': ^3.0.4
+
+ '@csstools/css-color-parser@3.1.0':
+ resolution: {integrity: sha512-nbtKwh3a6xNVIp/VRuXV64yTKnb1IjTAEEh3irzS+HkKjAOYLTGNb9pmVNntZ8iVBHcWDA2Dof0QtPgFI1BaTA==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ '@csstools/css-parser-algorithms': ^3.0.5
+ '@csstools/css-tokenizer': ^3.0.4
+
+ '@csstools/css-parser-algorithms@3.0.5':
+ resolution: {integrity: sha512-DaDeUkXZKjdGhgYaHNJTV9pV7Y9B3b644jCLs9Upc3VeNGg6LWARAT6O+Q+/COo+2gg/bM5rhpMAtf70WqfBdQ==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ '@csstools/css-tokenizer': ^3.0.4
+
+ '@csstools/css-tokenizer@3.0.4':
+ resolution: {integrity: sha512-Vd/9EVDiu6PPJt9yAh6roZP6El1xHrdvIVGjyBsHR0RYwNHgL7FJPyIIW4fANJNG6FtyZfvlRPpFI4ZM/lubvw==}
+ engines: {node: '>=18'}
+
+ '@csstools/media-query-list-parser@4.0.3':
+ resolution: {integrity: sha512-HAYH7d3TLRHDOUQK4mZKf9k9Ph/m8Akstg66ywKR4SFAigjs3yBiUeZtFxywiTm5moZMAp/5W/ZuFnNXXYLuuQ==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ '@csstools/css-parser-algorithms': ^3.0.5
+ '@csstools/css-tokenizer': ^3.0.4
+
+ '@csstools/postcss-alpha-function@1.0.1':
+ resolution: {integrity: sha512-isfLLwksH3yHkFXfCI2Gcaqg7wGGHZZwunoJzEZk0yKYIokgre6hYVFibKL3SYAoR1kBXova8LB+JoO5vZzi9w==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ postcss: ^8.4
+
+ '@csstools/postcss-cascade-layers@5.0.2':
+ resolution: {integrity: sha512-nWBE08nhO8uWl6kSAeCx4im7QfVko3zLrtgWZY4/bP87zrSPpSyN/3W3TDqz1jJuH+kbKOHXg5rJnK+ZVYcFFg==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ postcss: ^8.4
+
+ '@csstools/postcss-color-function-display-p3-linear@1.0.1':
+ resolution: {integrity: sha512-E5qusdzhlmO1TztYzDIi8XPdPoYOjoTY6HBYBCYSj+Gn4gQRBlvjgPQXzfzuPQqt8EhkC/SzPKObg4Mbn8/xMg==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ postcss: ^8.4
+
+ '@csstools/postcss-color-function@4.0.12':
+ resolution: {integrity: sha512-yx3cljQKRaSBc2hfh8rMZFZzChaFgwmO2JfFgFr1vMcF3C/uyy5I4RFIBOIWGq1D+XbKCG789CGkG6zzkLpagA==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ postcss: ^8.4
+
+ '@csstools/postcss-color-mix-function@3.0.12':
+ resolution: {integrity: sha512-4STERZfCP5Jcs13P1U5pTvI9SkgLgfMUMhdXW8IlJWkzOOOqhZIjcNhWtNJZes2nkBDsIKJ0CJtFtuaZ00moag==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ postcss: ^8.4
+
+ '@csstools/postcss-color-mix-variadic-function-arguments@1.0.2':
+ resolution: {integrity: sha512-rM67Gp9lRAkTo+X31DUqMEq+iK+EFqsidfecmhrteErxJZb6tUoJBVQca1Vn1GpDql1s1rD1pKcuYzMsg7Z1KQ==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ postcss: ^8.4
+
+ '@csstools/postcss-content-alt-text@2.0.8':
+ resolution: {integrity: sha512-9SfEW9QCxEpTlNMnpSqFaHyzsiRpZ5J5+KqCu1u5/eEJAWsMhzT40qf0FIbeeglEvrGRMdDzAxMIz3wqoGSb+Q==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ postcss: ^8.4
+
+ '@csstools/postcss-contrast-color-function@2.0.12':
+ resolution: {integrity: sha512-YbwWckjK3qwKjeYz/CijgcS7WDUCtKTd8ShLztm3/i5dhh4NaqzsbYnhm4bjrpFpnLZ31jVcbK8YL77z3GBPzA==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ postcss: ^8.4
+
+ '@csstools/postcss-exponential-functions@2.0.9':
+ resolution: {integrity: sha512-abg2W/PI3HXwS/CZshSa79kNWNZHdJPMBXeZNyPQFbbj8sKO3jXxOt/wF7juJVjyDTc6JrvaUZYFcSBZBhaxjw==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ postcss: ^8.4
+
+ '@csstools/postcss-font-format-keywords@4.0.0':
+ resolution: {integrity: sha512-usBzw9aCRDvchpok6C+4TXC57btc4bJtmKQWOHQxOVKen1ZfVqBUuCZ/wuqdX5GHsD0NRSr9XTP+5ID1ZZQBXw==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ postcss: ^8.4
+
+ '@csstools/postcss-gamut-mapping@2.0.11':
+ resolution: {integrity: sha512-fCpCUgZNE2piVJKC76zFsgVW1apF6dpYsqGyH8SIeCcM4pTEsRTWTLCaJIMKFEundsCKwY1rwfhtrio04RJ4Dw==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ postcss: ^8.4
+
+ '@csstools/postcss-gradients-interpolation-method@5.0.12':
+ resolution: {integrity: sha512-jugzjwkUY0wtNrZlFeyXzimUL3hN4xMvoPnIXxoZqxDvjZRiSh+itgHcVUWzJ2VwD/VAMEgCLvtaJHX+4Vj3Ow==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ postcss: ^8.4
+
+ '@csstools/postcss-hwb-function@4.0.12':
+ resolution: {integrity: sha512-mL/+88Z53KrE4JdePYFJAQWFrcADEqsLprExCM04GDNgHIztwFzj0Mbhd/yxMBngq0NIlz58VVxjt5abNs1VhA==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ postcss: ^8.4
+
+ '@csstools/postcss-ic-unit@4.0.4':
+ resolution: {integrity: sha512-yQ4VmossuOAql65sCPppVO1yfb7hDscf4GseF0VCA/DTDaBc0Wtf8MTqVPfjGYlT5+2buokG0Gp7y0atYZpwjg==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ postcss: ^8.4
+
+ '@csstools/postcss-initial@2.0.1':
+ resolution: {integrity: sha512-L1wLVMSAZ4wovznquK0xmC7QSctzO4D0Is590bxpGqhqjboLXYA16dWZpfwImkdOgACdQ9PqXsuRroW6qPlEsg==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ postcss: ^8.4
+
+ '@csstools/postcss-is-pseudo-class@5.0.3':
+ resolution: {integrity: sha512-jS/TY4SpG4gszAtIg7Qnf3AS2pjcUM5SzxpApOrlndMeGhIbaTzWBzzP/IApXoNWEW7OhcjkRT48jnAUIFXhAQ==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ postcss: ^8.4
+
+ '@csstools/postcss-light-dark-function@2.0.11':
+ resolution: {integrity: sha512-fNJcKXJdPM3Lyrbmgw2OBbaioU7yuKZtiXClf4sGdQttitijYlZMD5K7HrC/eF83VRWRrYq6OZ0Lx92leV2LFA==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ postcss: ^8.4
+
+ '@csstools/postcss-logical-float-and-clear@3.0.0':
+ resolution: {integrity: sha512-SEmaHMszwakI2rqKRJgE+8rpotFfne1ZS6bZqBoQIicFyV+xT1UF42eORPxJkVJVrH9C0ctUgwMSn3BLOIZldQ==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ postcss: ^8.4
+
+ '@csstools/postcss-logical-overflow@2.0.0':
+ resolution: {integrity: sha512-spzR1MInxPuXKEX2csMamshR4LRaSZ3UXVaRGjeQxl70ySxOhMpP2252RAFsg8QyyBXBzuVOOdx1+bVO5bPIzA==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ postcss: ^8.4
+
+ '@csstools/postcss-logical-overscroll-behavior@2.0.0':
+ resolution: {integrity: sha512-e/webMjoGOSYfqLunyzByZj5KKe5oyVg/YSbie99VEaSDE2kimFm0q1f6t/6Jo+VVCQ/jbe2Xy+uX+C4xzWs4w==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ postcss: ^8.4
+
+ '@csstools/postcss-logical-resize@3.0.0':
+ resolution: {integrity: sha512-DFbHQOFW/+I+MY4Ycd/QN6Dg4Hcbb50elIJCfnwkRTCX05G11SwViI5BbBlg9iHRl4ytB7pmY5ieAFk3ws7yyg==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ postcss: ^8.4
+
+ '@csstools/postcss-logical-viewport-units@3.0.4':
+ resolution: {integrity: sha512-q+eHV1haXA4w9xBwZLKjVKAWn3W2CMqmpNpZUk5kRprvSiBEGMgrNH3/sJZ8UA3JgyHaOt3jwT9uFa4wLX4EqQ==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ postcss: ^8.4
+
+ '@csstools/postcss-media-minmax@2.0.9':
+ resolution: {integrity: sha512-af9Qw3uS3JhYLnCbqtZ9crTvvkR+0Se+bBqSr7ykAnl9yKhk6895z9rf+2F4dClIDJWxgn0iZZ1PSdkhrbs2ig==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ postcss: ^8.4
+
+ '@csstools/postcss-media-queries-aspect-ratio-number-values@3.0.5':
+ resolution: {integrity: sha512-zhAe31xaaXOY2Px8IYfoVTB3wglbJUVigGphFLj6exb7cjZRH9A6adyE22XfFK3P2PzwRk0VDeTJmaxpluyrDg==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ postcss: ^8.4
+
+ '@csstools/postcss-nested-calc@4.0.0':
+ resolution: {integrity: sha512-jMYDdqrQQxE7k9+KjstC3NbsmC063n1FTPLCgCRS2/qHUbHM0mNy9pIn4QIiQGs9I/Bg98vMqw7mJXBxa0N88A==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ postcss: ^8.4
+
+ '@csstools/postcss-normalize-display-values@4.0.1':
+ resolution: {integrity: sha512-TQUGBuRvxdc7TgNSTevYqrL8oItxiwPDixk20qCB5me/W8uF7BPbhRrAvFuhEoywQp/woRsUZ6SJ+sU5idZAIA==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ postcss: ^8.4
+
+ '@csstools/postcss-oklab-function@4.0.12':
+ resolution: {integrity: sha512-HhlSmnE1NKBhXsTnNGjxvhryKtO7tJd1w42DKOGFD6jSHtYOrsJTQDKPMwvOfrzUAk8t7GcpIfRyM7ssqHpFjg==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ postcss: ^8.4
+
+ '@csstools/postcss-position-area-property@1.0.0':
+ resolution: {integrity: sha512-fUP6KR8qV2NuUZV3Cw8itx0Ep90aRjAZxAEzC3vrl6yjFv+pFsQbR18UuQctEKmA72K9O27CoYiKEgXxkqjg8Q==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ postcss: ^8.4
+
+ '@csstools/postcss-progressive-custom-properties@4.2.1':
+ resolution: {integrity: sha512-uPiiXf7IEKtUQXsxu6uWtOlRMXd2QWWy5fhxHDnPdXKCQckPP3E34ZgDoZ62r2iT+UOgWsSbM4NvHE5m3mAEdw==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ postcss: ^8.4
+
+ '@csstools/postcss-property-rule-prelude-list@1.0.0':
+ resolution: {integrity: sha512-IxuQjUXq19fobgmSSvUDO7fVwijDJaZMvWQugxfEUxmjBeDCVaDuMpsZ31MsTm5xbnhA+ElDi0+rQ7sQQGisFA==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ postcss: ^8.4
+
+ '@csstools/postcss-random-function@2.0.1':
+ resolution: {integrity: sha512-q+FQaNiRBhnoSNo+GzqGOIBKoHQ43lYz0ICrV+UudfWnEF6ksS6DsBIJSISKQT2Bvu3g4k6r7t0zYrk5pDlo8w==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ postcss: ^8.4
+
+ '@csstools/postcss-relative-color-syntax@3.0.12':
+ resolution: {integrity: sha512-0RLIeONxu/mtxRtf3o41Lq2ghLimw0w9ByLWnnEVuy89exmEEq8bynveBxNW3nyHqLAFEeNtVEmC1QK9MZ8Huw==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ postcss: ^8.4
+
+ '@csstools/postcss-scope-pseudo-class@4.0.1':
+ resolution: {integrity: sha512-IMi9FwtH6LMNuLea1bjVMQAsUhFxJnyLSgOp/cpv5hrzWmrUYU5fm0EguNDIIOHUqzXode8F/1qkC/tEo/qN8Q==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ postcss: ^8.4
+
+ '@csstools/postcss-sign-functions@1.1.4':
+ resolution: {integrity: sha512-P97h1XqRPcfcJndFdG95Gv/6ZzxUBBISem0IDqPZ7WMvc/wlO+yU0c5D/OCpZ5TJoTt63Ok3knGk64N+o6L2Pg==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ postcss: ^8.4
+
+ '@csstools/postcss-stepped-value-functions@4.0.9':
+ resolution: {integrity: sha512-h9btycWrsex4dNLeQfyU3y3w40LMQooJWFMm/SK9lrKguHDcFl4VMkncKKoXi2z5rM9YGWbUQABI8BT2UydIcA==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ postcss: ^8.4
+
+ '@csstools/postcss-syntax-descriptor-syntax-production@1.0.1':
+ resolution: {integrity: sha512-GneqQWefjM//f4hJ/Kbox0C6f2T7+pi4/fqTqOFGTL3EjnvOReTqO1qUQ30CaUjkwjYq9qZ41hzarrAxCc4gow==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ postcss: ^8.4
+
+ '@csstools/postcss-system-ui-font-family@1.0.0':
+ resolution: {integrity: sha512-s3xdBvfWYfoPSBsikDXbuorcMG1nN1M6GdU0qBsGfcmNR0A/qhloQZpTxjA3Xsyrk1VJvwb2pOfiOT3at/DuIQ==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ postcss: ^8.4
+
+ '@csstools/postcss-text-decoration-shorthand@4.0.3':
+ resolution: {integrity: sha512-KSkGgZfx0kQjRIYnpsD7X2Om9BUXX/Kii77VBifQW9Ih929hK0KNjVngHDH0bFB9GmfWcR9vJYJJRvw/NQjkrA==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ postcss: ^8.4
+
+ '@csstools/postcss-trigonometric-functions@4.0.9':
+ resolution: {integrity: sha512-Hnh5zJUdpNrJqK9v1/E3BbrQhaDTj5YiX7P61TOvUhoDHnUmsNNxcDAgkQ32RrcWx9GVUvfUNPcUkn8R3vIX6A==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ postcss: ^8.4
+
+ '@csstools/postcss-unset-value@4.0.0':
+ resolution: {integrity: sha512-cBz3tOCI5Fw6NIFEwU3RiwK6mn3nKegjpJuzCndoGq3BZPkUjnsq7uQmIeMNeMbMk7YD2MfKcgCpZwX5jyXqCA==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ postcss: ^8.4
+
+ '@csstools/selector-resolve-nested@3.1.0':
+ resolution: {integrity: sha512-mf1LEW0tJLKfWyvn5KdDrhpxHyuxpbNwTIwOYLIvsTffeyOf85j5oIzfG0yosxDgx/sswlqBnESYUcQH0vgZ0g==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ postcss-selector-parser: ^7.0.0
+
+ '@csstools/selector-specificity@5.0.0':
+ resolution: {integrity: sha512-PCqQV3c4CoVm3kdPhyeZ07VmBRdH2EpMFA/pd9OASpOEC3aXNGoqPDAZ80D0cLpMBxnmk0+yNhGsEx31hq7Gtw==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ postcss-selector-parser: ^7.0.0
+
+ '@csstools/utilities@2.0.0':
+ resolution: {integrity: sha512-5VdOr0Z71u+Yp3ozOx8T11N703wIFGVRgOWbOZMKgglPJsWA54MRIoMNVMa7shUToIhx5J8vX4sOZgD2XiihiQ==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ postcss: ^8.4
+
+ '@emnapi/core@1.11.0':
+ resolution: {integrity: sha512-l9Oo58x0HOP5znGzVhYW9U3e5wVuA4LAZU2AGezTmkhO1CgQRFDhDg4nneHsu/t3WniXg9QrG2nIXL/ZS8ln8Q==}
+
+ '@emnapi/core@1.11.1':
+ resolution: {integrity: sha512-RSvbQmHzdKzNsLYa/wHrbc3KN4sYLKAdPZxqiM2HATqv/SBk2/ENSHpvXGaLOMcsAyz0poEGqkmmKYG3OWiJEQ==}
+
+ '@emnapi/core@1.9.2':
+ resolution: {integrity: sha512-UC+ZhH3XtczQYfOlu3lNEkdW/p4dsJ1r/bP7H8+rhao3TTTMO1ATq/4DdIi23XuGoFY+Cz0JmCbdVl0hz9jZcA==}
+
+ '@emnapi/runtime@1.11.0':
+ resolution: {integrity: sha512-55coeOFKHv1ywEcUXJtWU5f+Jr/W5tZDvZig8DLKSwUN1JpROQ4rk/SNOQiFWmaR/VKF4zuFyW1B8JduOSv6Pg==}
+
+ '@emnapi/runtime@1.11.1':
+ resolution: {integrity: sha512-vgj7R3y3Wgx24IQaGPA/R6YFXLHVMOZ0uVEyIQPaWs+rd1AzfEMXlAC22FYwO1XkKR6NPsq7mUandH8oIRdZFw==}
+
+ '@emnapi/runtime@1.9.2':
+ resolution: {integrity: sha512-3U4+MIWHImeyu1wnmVygh5WlgfYDtyf0k8AbLhMFxOipihf6nrWC4syIm/SwEeec0mNSafiiNnMJwbza/Is6Lw==}
+
+ '@emnapi/wasi-threads@1.2.1':
+ resolution: {integrity: sha512-uTII7OYF+/Mes/MrcIOYp5yOtSMLBWSIoLPpcgwipoiKbli6k322tcoFsxoIIxPDqW01SQGAgko4EzZi2BNv2w==}
+
+ '@emnapi/wasi-threads@1.2.2':
+ resolution: {integrity: sha512-c95qOXkHdydNKhscBTebqEC1CVAZpyqOfVfBzQ1qgzyl3gfeldUjIggDbIZgDKsHLgnsM+igH7TJ/eAasaVuMA==}
+
+ '@esbuild/aix-ppc64@0.28.1':
+ resolution: {integrity: sha512-Svl7tq8k/08+p6CXPpRjQ1fKX+1odH/BQbb48fV6fj3CWHhsoIOoY87w1oHXm0qEpkIK3ZfVgp0hed3XBXzXMQ==}
+ engines: {node: '>=18'}
+ cpu: [ppc64]
+ os: [aix]
+
+ '@esbuild/android-arm64@0.28.1':
+ resolution: {integrity: sha512-34EGEbCIAgosYz6goLcopX6Mo7NyGv9tfwEM2/7Ce2VcVRk568iSvniGWcUXIy7wEDR1wzolcxcriFVrWYcwBg==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [android]
+
+ '@esbuild/android-arm@0.28.1':
+ resolution: {integrity: sha512-0k2F129Xdio1TdJfzJ8sy1Q47vUD2NnwdhiAf7drUN1EBTfPf4hsFCtmMgu/6m8JSzsBrlmVjudMBQqOfG8usQ==}
+ engines: {node: '>=18'}
+ cpu: [arm]
+ os: [android]
+
+ '@esbuild/android-x64@0.28.1':
+ resolution: {integrity: sha512-dbwY7ltSMDWsRatcRpCnES4F+im88OCUgGZjy52shC7GqHRE/cYlxNbB4Z4UpJswpcc4Qxd2oE/ufM0p61IKng==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [android]
+
+ '@esbuild/darwin-arm64@0.28.1':
+ resolution: {integrity: sha512-TZbWkQY7kvTAXbXUT7uVACR5cMHsDiSz9z7ZKAX/RTq/WJEk3QyRr0wZpNhBDX+/0CtdqUIJlOiodQcta6tY3Q==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [darwin]
+
+ '@esbuild/darwin-x64@0.28.1':
+ resolution: {integrity: sha512-zfdzgK9ACBNZLI/CyHTOx81SyNbM6YXn7rxSgX97VjyiPl9W1i4Ka4fgKECEoFCKGpvBj5qArWIGgQjOwkgskQ==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [darwin]
+
+ '@esbuild/freebsd-arm64@0.28.1':
+ resolution: {integrity: sha512-wG2EA8ENdEI0qhkSZMjfqrdY+ziCYCPMmtZjjIwOmXFjmyzEHn+UUxk5of+SYsjtfs3VpnlC7QLzSI5hY/rOAw==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [freebsd]
+
+ '@esbuild/freebsd-x64@0.28.1':
+ resolution: {integrity: sha512-i7dZ9vQgnvSCzi/rYCXNgtF/U+eKZNJBzu3eTQbRgHnM7tNSizLOkRFAl3qzVc/Op/u5YkHHa4pf/3DOYHthLQ==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [freebsd]
+
+ '@esbuild/linux-arm64@0.28.1':
+ resolution: {integrity: sha512-yHs+0uc8+nvEAfAfxrWQKK5peSNzBc4PegcMO0EJ2hT71uA7vB8Ihg2e77R2P7SG5uYjPbHlLLmve4LLLRCf0g==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [linux]
+
+ '@esbuild/linux-arm@0.28.1':
+ resolution: {integrity: sha512-qVXBOHQS+d5Y722GwJzJUtOLlX7km3CraOaGormF1pDtPd2C/l1SHRPgjLunLGe51Sh5YYWKMFDyV4SxgMQYTQ==}
+ engines: {node: '>=18'}
+ cpu: [arm]
+ os: [linux]
+
+ '@esbuild/linux-ia32@0.28.1':
+ resolution: {integrity: sha512-d1z4ZuP0ajrfz/FhGT4vv278rX8KnPPJx8i5+AtK7TYbx9Le9F1hyzurZpkEyjkGa9dUGhQow4C1NmeGvqxN2w==}
+ engines: {node: '>=18'}
+ cpu: [ia32]
+ os: [linux]
+
+ '@esbuild/linux-loong64@0.28.1':
+ resolution: {integrity: sha512-M5sRjUVZrkm1OAPR3dlOYzNmN+loZKGVi1VUQGrwuqLcbR6qeAz+famMhjASeH3YVKvZz+zT1jlh/keC3Rj/lg==}
+ engines: {node: '>=18'}
+ cpu: [loong64]
+ os: [linux]
+
+ '@esbuild/linux-mips64el@0.28.1':
+ resolution: {integrity: sha512-mRObBZeHh2OxcBFPWE/FjylkRgZdYuiTR3vaTozquCGOH14iP9oN4x4Ge81CoIDYQrXmIxpFumJBu5MtZpnQJQ==}
+ engines: {node: '>=18'}
+ cpu: [mips64el]
+ os: [linux]
+
+ '@esbuild/linux-ppc64@0.28.1':
+ resolution: {integrity: sha512-slScBsMAb3GFDcdrCgLwZtPYRoH2H/youv10QiZyRjmsP48fznoveWytSgCI/R0ZcUgpc0ZhIUEx6LHts8yrfQ==}
+ engines: {node: '>=18'}
+ cpu: [ppc64]
+ os: [linux]
+
+ '@esbuild/linux-riscv64@0.28.1':
+ resolution: {integrity: sha512-kw0owk1o0GFETUJyW0jc0G4Yzs0BHZn0JDZ8JRT088vjJYX777BAs1fDGxAC+q831qOs2DTC96mNsG2opdfyyQ==}
+ engines: {node: '>=18'}
+ cpu: [riscv64]
+ os: [linux]
+
+ '@esbuild/linux-s390x@0.28.1':
+ resolution: {integrity: sha512-/lAIjX8aYFRByhh6L5rYtPEDRqa9de/4V/juOXcta5frjvzXO4/sqEtyytse0g3zZFuWu5cDN0MkLz2qRDD2Ag==}
+ engines: {node: '>=18'}
+ cpu: [s390x]
+ os: [linux]
+
+ '@esbuild/linux-x64@0.28.1':
+ resolution: {integrity: sha512-u/anNYF2mmVOEDwLtnQ1wOr3EZ9sTNGLWrsYGYwHWzGA3Si84IOkHXlbWTD1NB+9/1lcnweYKO54uhxZydNzfA==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [linux]
+
+ '@esbuild/netbsd-arm64@0.28.1':
+ resolution: {integrity: sha512-oks0DYbLwWMmaakTsCb+zL4E+aHRVLom9IJZOAthMQEPiQmydXHkziYEsGYRx0uNV/IjEKGAV941JzH02pflqw==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [netbsd]
+
+ '@esbuild/netbsd-x64@0.28.1':
+ resolution: {integrity: sha512-aeL6lAnN89Hz43Mlh1G8ARasbuoYvSITDEx0tHh5b7jJnHcssqgjy9Yx430GDpmCa6OyrKoS0aNRjKundRizGg==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [netbsd]
+
+ '@esbuild/openbsd-arm64@0.28.1':
+ resolution: {integrity: sha512-MEFJe5C3R8pwXdZ5Y21oo6m7ePiS0d9pWucn99O/wvyJZChoIQKrQDxKrGeW8F5+T0okTHesAmDeiHDTIq0V/Q==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [openbsd]
+
+ '@esbuild/openbsd-x64@0.28.1':
+ resolution: {integrity: sha512-i/ZLIOafE0Z8cI/XANJAixoJL/uRAoS2xOA3rb0xN+KK0K177cMAsQYkzHtBrtMXAKuAc7HGgcWiZ/sRC1Nxgw==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [openbsd]
+
+ '@esbuild/openharmony-arm64@0.28.1':
+ resolution: {integrity: sha512-ge+Z7EXFNt2BO1oAMsVpiQ8EwndV9i1xXerAeTIK7AtPs3bKFXQM7nlRxDSIUIMeueR1CNXxqztLzdNeReKBJg==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [openharmony]
+
+ '@esbuild/sunos-x64@0.28.1':
+ resolution: {integrity: sha512-BEjgtECkL3vY+SaSQ6nzVfiALUeFxpawyp8Jmf5PtYhf1Ug40N1h/hxlhts+f1FvSvarEigdxS3BlSMI2PJLcQ==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [sunos]
+
+ '@esbuild/win32-arm64@0.28.1':
+ resolution: {integrity: sha512-lCv9eK/H6ZJWbE7bh2nw54CZ9M2nupBxJcTsdk/QQnWkdSjKGuxmmH8/GWrlT1eMmZfn4dGcCjRte397WqfQXA==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [win32]
+
+ '@esbuild/win32-ia32@0.28.1':
+ resolution: {integrity: sha512-zvb/mB2bSCoJOpoCBgYKKpX6YM6mJBlBUVUtVj41DlZJVEB6/0CKlRYxP5wWl1C1ILiCoAU5wZZ4q1P3qeS6Eg==}
+ engines: {node: '>=18'}
+ cpu: [ia32]
+ os: [win32]
+
+ '@esbuild/win32-x64@0.28.1':
+ resolution: {integrity: sha512-bm4Mowrv+GXMlpWX++EcXw/iLyd1o3+bJkC2DkWXYVvgZCqD/bSj9ctZeAMC3cIxgjRVR2Dufaiu4YPxr5gW1A==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [win32]
+
+ '@eslint-community/eslint-utils@4.10.1':
+ resolution: {integrity: sha512-cuadcxVFE8sDK6iWJbs8Sn0av2Nrh2QSGQhVlBW9AaAHqHwjWsZHT8LJ4hFGPh7ASBV2deFdM7H/DPjulmh8rg==}
+ engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ peerDependencies:
+ eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
+
+ '@eslint-community/eslint-utils@4.9.1':
+ resolution: {integrity: sha512-phrYmNiYppR7znFEdqgfWHXR6NCkZEK7hwWDHZUjit/2/U0r6XvkDl0SYnoM51Hq7FhCGdLDT6zxCCOY1hexsQ==}
+ engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ peerDependencies:
+ eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
+
+ '@eslint-community/regexpp@4.12.2':
+ resolution: {integrity: sha512-EriSTlt5OC9/7SXkRSCAhfSxxoSUgBm33OH+IkwbdpgoqsSsUg7y3uh+IICI/Qg4BBWr3U2i39RpmycbxMq4ew==}
+ engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
+
+ '@eslint/eslintrc@2.1.4':
+ resolution: {integrity: sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==}
+ engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+
+ '@eslint/js@8.57.1':
+ resolution: {integrity: sha512-d9zaMRSTIKDLhctzH12MtXvJKSSUhaHcjV+2Z+GK+EEY7XKpP5yR4x+N3TAcHTcu963nIr+TMcCb4DBCYX1z6Q==}
+ engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+
+ '@floating-ui/core@1.7.5':
+ resolution: {integrity: sha512-1Ih4WTWyw0+lKyFMcBHGbb5U5FtuHJuujoyyr5zTaWS5EYMeT6Jb2AuDeftsCsEuchO+mM2ij5+q9crhydzLhQ==}
+
+ '@floating-ui/core@1.8.0':
+ resolution: {integrity: sha512-0CIZ5itps/8x7BG8dEIhs53BvCUH2PCoogtakwRTut+Arm58sJooJ0AuZhLw2HJYIR5cMLNPBSS728sPho2khQ==}
+
+ '@floating-ui/dom@1.7.4':
+ resolution: {integrity: sha512-OOchDgh4F2CchOX94cRVqhvy7b3AFb+/rQXyswmzmGakRfkMgoWVjfnLWkRirfLEfuD4ysVW16eXzwt3jHIzKA==}
+
+ '@floating-ui/dom@1.8.0':
+ resolution: {integrity: sha512-yXSrzeHZBTZadLOlfyhCkJHNeLJnHRnRInwdZ40L7ZiaAtrBwoYlsDrX3v5zB1Utk7CLfzcOVnVVWoXEky7Ceg==}
+
+ '@floating-ui/react-dom@2.1.9':
+ resolution: {integrity: sha512-JDjEFGCpImxDCA7JJKviA0M9+RtmJdj0m/NVU5IMgBK+AmZouAQQ7/+2GLH0GXXY0YMw9oXPB8hKdbPYg5QLYg==}
+ peerDependencies:
+ react: '>=16.8.0'
+ react-dom: '>=16.8.0'
+
+ '@floating-ui/react@0.27.20':
+ resolution: {integrity: sha512-CMqMy7OaXl9W0eq1Uy7L7i2Y/anPvHmFmESd2CEw0t5YvZhcVCeo4MBevAmswRllX7Y2dEidA4ozGPunLSTQpw==}
+ peerDependencies:
+ react: '>=17.0.0'
+ react-dom: '>=17.0.0'
+
+ '@floating-ui/utils@0.2.11':
+ resolution: {integrity: sha512-RiB/yIh78pcIxl6lLMG0CgBXAZ2Y0eVHqMPYugu+9U0AeT6YBeiJpf7lbdJNIugFP5SIjwNRgo4DhR1Qxi26Gg==}
+
+ '@floating-ui/utils@0.2.12':
+ resolution: {integrity: sha512-HpCo8tmWzLVad5s2d19EhAz5zqrrQ6s69qd6moPMQvkOuSwDT1YgRfWSVuc4ennqrgv3OHppiOGMQ7oC13yIww==}
+
+ '@fontsource/inconsolata@5.2.8':
+ resolution: {integrity: sha512-lIZW+WOZYpUH91g9r6rYYhfTmptF3YPPM54ZOs8IYVeeL4SeiAu4tfj7mdr8llYEq31DLYgi6JtGIJa192gB0Q==}
+
+ '@fontsource/inter@5.2.8':
+ resolution: {integrity: sha512-P6r5WnJoKiNVV+zvW2xM13gNdFhAEpQ9dQJHt3naLvfg+LkF2ldgSLiF4T41lf1SQCM9QmkqPTn4TH568IRagg==}
+
+ '@formatjs/bigdecimal@0.2.6':
+ resolution: {integrity: sha512-aPzKsGQOkQRHUEbyO/ZtYfr4EqaBQnSs6U4tzTla1xBnIdEHgY2GqEqso28UMwWRkzKqqTj5+/6BmuOsRkfn2A==}
+
+ '@formatjs/ecma402-abstract@2.3.6':
+ resolution: {integrity: sha512-HJnTFeRM2kVFVr5gr5kH1XP6K0JcJtE7Lzvtr3FS/so5f1kpsqqqxy5JF+FRaO6H2qmcMfAUIox7AJteieRtVw==}
+
+ '@formatjs/fast-memoize@2.2.7':
+ resolution: {integrity: sha512-Yabmi9nSvyOMrlSeGGWDiH7rf3a7sIwplbvo/dlz9WCIjzIQAfy1RMf4S0X3yG724n5Ghu2GmEl5NJIV6O9sZQ==}
+
+ '@formatjs/fast-memoize@3.1.6':
+ resolution: {integrity: sha512-H5aexk1Le7T9TPmscacZ+1pR6CTa2n1wq+HDVGXhH8TzUlQQpeXzZs91dRtmFHrbeNbjPFPfQujUqm7MHgVoXQ==}
+
+ '@formatjs/intl-durationformat@0.10.15':
+ resolution: {integrity: sha512-3W636wOl2pOVKR2+aFC+2BMOHA/FYsHZfKTr/cT1OG0YIXI2hhGrBH2+EFmqEzzClRi5BlPvwE6LlLN2dikdDQ==}
+
+ '@formatjs/intl-localematcher@0.6.2':
+ resolution: {integrity: sha512-XOMO2Hupl0wdd172Y06h6kLpBz6Dv+J4okPLl4LPtzbr8f66WbIoy4ev98EBuZ6ZK4h5ydTN6XneT4QVpD7cdA==}
+
+ '@formatjs/intl-localematcher@0.8.10':
+ resolution: {integrity: sha512-P/IC3qws3jH+1fEs+o0RIFgXKRaQlFehjS5W0FPAqdo6hgzawLl+eD0q0JjheQ3XtoOe5n8WSYfX06KQZI/QJA==}
+
+ '@formatjs/intl-segmenter@11.7.12':
+ resolution: {integrity: sha512-3QefVKh5HvaKU80lAFmqUsWmKYWcpiDymsc0HwFvhuVl0dAnMhtbNmzMN50UiC7ZsnbybelNGrm9GZPp4kbbZA==}
+
+ '@humanwhocodes/config-array@0.13.0':
+ resolution: {integrity: sha512-DZLEEqFWQFiyK6h5YIeynKx7JlvCYWL0cImfSRXZ9l4Sg2efkFGTuFf6vzXjK1cq6IYkU+Eg/JizXw+TD2vRNw==}
+ engines: {node: '>=10.10.0'}
+ deprecated: Use @eslint/config-array instead
+
+ '@humanwhocodes/module-importer@1.0.1':
+ resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==}
+ engines: {node: '>=12.22'}
+
+ '@humanwhocodes/object-schema@2.0.3':
+ resolution: {integrity: sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==}
+ deprecated: Use @eslint/object-schema instead
+
+ '@inquirer/ansi@2.0.7':
+ resolution: {integrity: sha512-3eTuUO1vH2cZm2ZKHeQxnOqlTi9EfZDGgIe3BL3I4u+rJHocr9Fz86M4fjYABPvFnQG/gGK551HqDiIcETwU6Q==}
+ engines: {node: '>=23.5.0 || ^22.13.0 || ^20.17.0'}
+
+ '@inquirer/checkbox@5.2.1':
+ resolution: {integrity: sha512-b6xmA/VlTe0ZgDQHDui+Nav470u7u49nRd8/iuhOcQPO9Ch7lGuogydhi2VOmNlZ+zXcM8IcPuNSwQcdJaF/kw==}
+ engines: {node: '>=23.5.0 || ^22.13.0 || ^20.17.0'}
+ peerDependencies:
+ '@types/node': '>=18'
+ peerDependenciesMeta:
+ '@types/node':
+ optional: true
+
+ '@inquirer/confirm@6.1.1':
+ resolution: {integrity: sha512-eb8DBZcz/2qHWQda4rk2JiQk5h9QV/cVHi1yjt0f69WFZMRFn0sJTye3EAP8icut8UDMjQPsaH5KbcOogefrFQ==}
+ engines: {node: '>=23.5.0 || ^22.13.0 || ^20.17.0'}
+ peerDependencies:
+ '@types/node': '>=18'
+ peerDependenciesMeta:
+ '@types/node':
+ optional: true
+
+ '@inquirer/core@11.2.1':
+ resolution: {integrity: sha512-Qd6GJT1yVyrZZCfN8W2qKF5ApmqryXRhRKCuip8h01x2w/esJQ2XIYc6f9abMIHgKQdBfFTSOdbHRLAhuM09UA==}
+ engines: {node: '>=23.5.0 || ^22.13.0 || ^20.17.0'}
+ peerDependencies:
+ '@types/node': '>=18'
+ peerDependenciesMeta:
+ '@types/node':
+ optional: true
+
+ '@inquirer/editor@5.2.2':
+ resolution: {integrity: sha512-ZRVd/oD+sYsUd5zVm0NflqEzlqfYCyHNsqkHl2oWXEUHs12tCbcSFi+wVFEvD8+LGRaMUsVrE7qeo6lSG/S1Vg==}
+ engines: {node: '>=23.5.0 || ^22.13.0 || ^20.17.0'}
+ peerDependencies:
+ '@types/node': '>=18'
+ peerDependenciesMeta:
+ '@types/node':
+ optional: true
+
+ '@inquirer/expand@5.1.1':
+ resolution: {integrity: sha512-YmQpenjbFSHAK3sOd44puHh3V1KXXr+JiNpUztoSQ4drLh2rTVzTap/YtlAVu/5xavifIlBfNEzJ/neZJ1a/1g==}
+ engines: {node: '>=23.5.0 || ^22.13.0 || ^20.17.0'}
+ peerDependencies:
+ '@types/node': '>=18'
+ peerDependenciesMeta:
+ '@types/node':
+ optional: true
+
+ '@inquirer/external-editor@3.0.3':
+ resolution: {integrity: sha512-6thf5I8q7lZwzGLAxPaaGEREEkZ3nyePPDQ1oyobblxmEE8mqTLguScP7pDjUTAibiyb4hfXl+qjUEJ+di/aNA==}
+ engines: {node: '>=23.5.0 || ^22.13.0 || ^20.17.0'}
+ peerDependencies:
+ '@types/node': '>=18'
+ peerDependenciesMeta:
+ '@types/node':
+ optional: true
+
+ '@inquirer/figures@2.0.7':
+ resolution: {integrity: sha512-aJ8TBPOGB6f/2qziPfElISTCEd5XOYTFckA2SGjhNmiKzfK/u4ot3v0DUzGVdUnKjN10EqnnEPck36BkyfLnJw==}
+ engines: {node: '>=23.5.0 || ^22.13.0 || ^20.17.0'}
+
+ '@inquirer/input@5.1.2':
+ resolution: {integrity: sha512-9K/DDBSQpOyZSkt6sOVP9Vo0TR7atX2kuILsUu0x3wVcVbe97lJwIJKMLdMw25tDYuXl/qp6erT0Xs1rfmcfZg==}
+ engines: {node: '>=23.5.0 || ^22.13.0 || ^20.17.0'}
+ peerDependencies:
+ '@types/node': '>=18'
+ peerDependenciesMeta:
+ '@types/node':
+ optional: true
+
+ '@inquirer/number@4.1.1':
+ resolution: {integrity: sha512-XF4IXAbPnGPgw0wsbC/i2tPcyfdZgDpUlhsqU0SfT4IRIGWha6Xm9VRgN5yYxJq+jnyXlfXI/nQ3ulfk0iEICA==}
+ engines: {node: '>=23.5.0 || ^22.13.0 || ^20.17.0'}
+ peerDependencies:
+ '@types/node': '>=18'
+ peerDependenciesMeta:
+ '@types/node':
+ optional: true
+
+ '@inquirer/password@5.1.1':
+ resolution: {integrity: sha512-3XBfF7DAsp5qeDsvN5Rd1HmbNokVvEQoUM0QLrRcybC9nX96w3Pbmu7qUsb3IT3J3jBvs2+mTXaKHOUsgHMLzg==}
+ engines: {node: '>=23.5.0 || ^22.13.0 || ^20.17.0'}
+ peerDependencies:
+ '@types/node': '>=18'
+ peerDependenciesMeta:
+ '@types/node':
+ optional: true
+
+ '@inquirer/prompts@8.5.2':
+ resolution: {integrity: sha512-IYR/3C/paEVVQYQvdDlFZVjRCJVYHHON0XXMH91KO9GSxs0TdKYWlUdvfQl2EfAHDxUaN3IBffkE/BDTh5nJ6g==}
+ engines: {node: '>=23.5.0 || ^22.13.0 || ^20.17.0'}
+ peerDependencies:
+ '@types/node': '>=18'
+ peerDependenciesMeta:
+ '@types/node':
+ optional: true
+
+ '@inquirer/rawlist@5.3.1':
+ resolution: {integrity: sha512-QqdTqQddL3qPX/PPrjobpsO25NZ4dWXgTLenrR445L2ptLEYE6Z+PD5c5CNDJNx4ugRgELAIpSIJxZaO2jJ2Og==}
+ engines: {node: '>=23.5.0 || ^22.13.0 || ^20.17.0'}
+ peerDependencies:
+ '@types/node': '>=18'
+ peerDependenciesMeta:
+ '@types/node':
+ optional: true
+
+ '@inquirer/search@4.2.1':
+ resolution: {integrity: sha512-xJj8QWKRSrfKoBIITLZK61dD3zwo0Rz11fgDImku30/Oe81zMdIdGgrLY2h6RkJ+KZ/GhNYIRMKnH/62qBTA5g==}
+ engines: {node: '>=23.5.0 || ^22.13.0 || ^20.17.0'}
+ peerDependencies:
+ '@types/node': '>=18'
+ peerDependenciesMeta:
+ '@types/node':
+ optional: true
+
+ '@inquirer/select@5.2.1':
+ resolution: {integrity: sha512-FlDndEUww8m7BfukO2nJa25vhD+H5jxxCv4oGioKqzyWz3nPHhhw4LKdYRSlXuAx7DsdWia7iyaBPKKS95Evfw==}
+ engines: {node: '>=23.5.0 || ^22.13.0 || ^20.17.0'}
+ peerDependencies:
+ '@types/node': '>=18'
+ peerDependenciesMeta:
+ '@types/node':
+ optional: true
+
+ '@inquirer/type@4.0.7':
+ resolution: {integrity: sha512-t28inv14nMQ1PhKpsJPY+kEs/c00qzeCOS2gTNRyTjG5d6qsVA2fItxW4hkvGZ5lvanGLdtCzVIx5dwdRpN1+g==}
+ engines: {node: '>=23.5.0 || ^22.13.0 || ^20.17.0'}
+ peerDependencies:
+ '@types/node': '>=18'
+ peerDependenciesMeta:
+ '@types/node':
+ optional: true
+
+ '@isaacs/cliui@8.0.2':
+ resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==}
+ engines: {node: '>=12'}
+
+ '@joshwooding/vite-plugin-react-docgen-typescript@0.7.0':
+ resolution: {integrity: sha512-qvsTEwEFefhdirGOPnu9Wp6ChfIwy2dBCRuETU3uE+4cC+PFoxMSiiEhxk4lOluA34eARHA0OxqsEUYDqRMgeQ==}
+ peerDependencies:
+ typescript: '>= 4.3.x'
+ vite: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+
+ '@jridgewell/gen-mapping@0.3.13':
+ resolution: {integrity: sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==}
+
+ '@jridgewell/remapping@2.3.5':
+ resolution: {integrity: sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==}
+
+ '@jridgewell/resolve-uri@3.1.2':
+ resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==}
+ engines: {node: '>=6.0.0'}
+
+ '@jridgewell/source-map@0.3.11':
+ resolution: {integrity: sha512-ZMp1V8ZFcPG5dIWnQLr3NSI1MiCU7UETdS/A0G8V/XWHvJv3ZsFqutJn1Y5RPmAPX6F3BiE397OqveU/9NCuIA==}
+
+ '@jridgewell/sourcemap-codec@1.5.5':
+ resolution: {integrity: sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==}
+
+ '@jridgewell/trace-mapping@0.3.31':
+ resolution: {integrity: sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==}
+
+ '@livekit/components-core@0.12.13':
+ resolution: {integrity: sha512-DQmi84afHoHjZ62wm8y+XPNIDHTwFHAltjd3lmyXj8UZHOY7wcza4vFt1xnghJOD5wLRY58L1dkAgAw59MgWvw==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ livekit-client: ^2.17.2
+ tslib: ^2.6.2
+
+ '@livekit/components-react@2.9.21':
+ resolution: {integrity: sha512-6hU9VucJJL+gAhilNGe4MBCDCZVk64qyjP9Ck86krvOIdVU76WeWksddg1MYUP10AlUwwrfD7davz41pJTcMJw==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ '@livekit/krisp-noise-filter': ^0.2.12 || ^0.3.0
+ livekit-client: ^2.18.2
+ react: '>=18'
+ react-dom: '>=18'
+ tslib: ^2.6.2
+ peerDependenciesMeta:
+ '@livekit/krisp-noise-filter':
+ optional: true
+
+ '@livekit/mutex@1.1.1':
+ resolution: {integrity: sha512-EsshAucklmpuUAfkABPxJNhzj9v2sG7JuzFDL4ML1oJQSV14sqrpTYnsaOudMAw9yOaW53NU3QQTlUQoRs4czw==}
+
+ '@livekit/protocol@1.50.4':
+ resolution: {integrity: sha512-L1uggNQAqyY21smQY8AllyOYbcv9Me9TaxwuLytL1R8ck9nbYPmQLNwEDi3pOFGAMa5F8I2nUi2Jc59W5awxlA==}
+
+ '@livekit/track-processors@0.7.2':
+ resolution: {integrity: sha512-lzARBKTbBwqycdR/SwTu6//N0l20BzfDd7grxCXl07676SwRApNtZAK1GJjL1m3dCM3KBqH1aVxjMpNcbOw5uQ==}
+ peerDependencies:
+ '@types/dom-mediacapture-transform': ^0.1.9
+ livekit-client: ^1.12.0 || ^2.1.0
+
+ '@matrix-org/matrix-sdk-crypto-wasm@18.3.1':
+ resolution: {integrity: sha512-VRjWhE1UgHnPpJ3b9B5+8z71ZC/HICFngPPFIN6ktzmUBKI5RusPujzbAQUoB3CgZ0yU58L99AfSQS4YTztSWw==}
+ engines: {node: '>= 18'}
+
+ '@mdx-js/react@3.1.1':
+ resolution: {integrity: sha512-f++rKLQgUVYDAtECQ6fn/is15GkEH9+nZPM3MS0RcxVqoTfawHvDlSCH7JbMhAM6uJ32v3eXLvLmLvjGu7PTQw==}
+ peerDependencies:
+ '@types/react': '>=16'
+ react: '>=16'
+
+ '@mediapipe/tasks-vision@0.10.35':
+ resolution: {integrity: sha512-HOvadwVRE6JC+45nyYhmnywnr5h/J8KZvOeUNVOG9q/0875pZgItznFB9bRTvLc264YSJqiZ1NsIpCStJw/egg==}
+
+ '@napi-rs/wasm-runtime@1.1.4':
+ resolution: {integrity: sha512-3NQNNgA1YSlJb/kMH1ildASP9HW7/7kYnRI2szWJaofaS1hWmbGI4H+d3+22aGzXXN9IJ+n+GiFVcGipJP18ow==}
+ peerDependencies:
+ '@emnapi/core': ^1.7.1
+ '@emnapi/runtime': ^1.7.1
+
+ '@napi-rs/wasm-runtime@1.1.6':
+ resolution: {integrity: sha512-ZLv/JdUfkvOy9eCnnBaGfiO+XimbjebAeO+MRQqD/B+FR1tnRN0tpKSJHRbE8sFfS6aqsXZ67TQjfwfsxULVbg==}
+ peerDependencies:
+ '@emnapi/core': ^1.7.1
+ '@emnapi/runtime': ^1.7.1
+
+ '@nodelib/fs.scandir@2.1.5':
+ resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==}
+ engines: {node: '>= 8'}
+
+ '@nodelib/fs.stat@2.0.5':
+ resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==}
+ engines: {node: '>= 8'}
+
+ '@nodelib/fs.walk@1.2.8':
+ resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==}
+ engines: {node: '>= 8'}
+
+ '@octokit/auth-token@4.0.0':
+ resolution: {integrity: sha512-tY/msAuJo6ARbK6SPIxZrPBms3xPbfwBrulZe0Wtr/DIY9lje2HeV1uoebShn6mx7SjCHif6EjMvoREj+gZ+SA==}
+ engines: {node: '>= 18'}
+
+ '@octokit/core@5.2.2':
+ resolution: {integrity: sha512-/g2d4sW9nUDJOMz3mabVQvOGhVa4e/BN/Um7yca9Bb2XTzPPnfTWHWQg+IsEYO7M3Vx+EXvaM/I2pJWIMun1bg==}
+ engines: {node: '>= 18'}
+
+ '@octokit/endpoint@9.0.6':
+ resolution: {integrity: sha512-H1fNTMA57HbkFESSt3Y9+FBICv+0jFceJFPWDePYlR/iMGrwM5ph+Dd4XRQs+8X+PUFURLQgX9ChPfhJ/1uNQw==}
+ engines: {node: '>= 18'}
+
+ '@octokit/graphql@7.1.1':
+ resolution: {integrity: sha512-3mkDltSfcDUoa176nlGoA32RGjeWjl3K7F/BwHwRMJUW/IteSa4bnSV8p2ThNkcIcZU2umkZWxwETSSCJf2Q7g==}
+ engines: {node: '>= 18'}
+
+ '@octokit/openapi-types@20.0.0':
+ resolution: {integrity: sha512-EtqRBEjp1dL/15V7WiX5LJMIxxkdiGJnabzYx5Apx4FkQIFgAfKumXeYAqqJCj1s+BMX4cPFIFC4OLCR6stlnA==}
+
+ '@octokit/openapi-types@24.2.0':
+ resolution: {integrity: sha512-9sIH3nSUttelJSXUrmGzl7QUBFul0/mB8HRYl3fOlgHbIWG+WnYDXU3v/2zMtAvuzZ/ed00Ei6on975FhBfzrg==}
+
+ '@octokit/plugin-paginate-rest@9.2.2':
+ resolution: {integrity: sha512-u3KYkGF7GcZnSD/3UP0S7K5XUFT2FkOQdcfXZGZQPGv3lm4F2Xbf71lvjldr8c1H3nNbF+33cLEkWYbokGWqiQ==}
+ engines: {node: '>= 18'}
+ peerDependencies:
+ '@octokit/core': '5'
+
+ '@octokit/plugin-rest-endpoint-methods@10.4.1':
+ resolution: {integrity: sha512-xV1b+ceKV9KytQe3zCVqjg+8GTGfDYwaT1ATU5isiUyVtlVAO3HNdzpS4sr4GBx4hxQ46s7ITtZrAsxG22+rVg==}
+ engines: {node: '>= 18'}
+ peerDependencies:
+ '@octokit/core': '5'
+
+ '@octokit/request-error@5.1.1':
+ resolution: {integrity: sha512-v9iyEQJH6ZntoENr9/yXxjuezh4My67CBSu9r6Ve/05Iu5gNgnisNWOsoJHTP6k0Rr0+HQIpnH+kyammu90q/g==}
+ engines: {node: '>= 18'}
+
+ '@octokit/request@8.4.1':
+ resolution: {integrity: sha512-qnB2+SY3hkCmBxZsR/MPCybNmbJe4KAlfWErXq+rBKkQJlbjdJeS85VI9r8UqeLYLvnAenU8Q1okM/0MBsAGXw==}
+ engines: {node: '>= 18'}
+
+ '@octokit/types@12.6.0':
+ resolution: {integrity: sha512-1rhSOfRa6H9w4YwK0yrf5faDaDTb+yLyBUKOCV4xtCDB5VmIPqd/v9yr9o6SAzOAlRxMiRiCic6JVM1/kunVkw==}
+
+ '@octokit/types@13.10.0':
+ resolution: {integrity: sha512-ifLaO34EbbPj0Xgro4G5lP5asESjwHracYJvVaPIyXMuiuXLlhic3S47cBdTb+jfODkTE5YtGCLt3Ay3+J97sA==}
+
+ '@opentelemetry/api-logs@0.208.0':
+ resolution: {integrity: sha512-CjruKY9V6NMssL/T1kAFgzosF1v9o6oeN+aX5JB/C/xPNtmgIJqcXHG7fA82Ou1zCpWGl4lROQUKwUNE1pMCyg==}
+ engines: {node: '>=8.0.0'}
+
+ '@opentelemetry/api@1.9.1':
+ resolution: {integrity: sha512-gLyJlPHPZYdAk1JENA9LeHejZe1Ti77/pTeFm/nMXmQH/HFZlcS/O2XJB+L8fkbrNSqhdtlvjBVjxwUYanNH5Q==}
+ engines: {node: '>=8.0.0'}
+
+ '@opentelemetry/core@2.2.0':
+ resolution: {integrity: sha512-FuabnnUm8LflnieVxs6eP7Z383hgQU4W1e3KJS6aOG3RxWxcHyBxH8fDMHNgu/gFx/M2jvTOW/4/PHhLz6bjWw==}
+ engines: {node: ^18.19.0 || >=20.6.0}
+ peerDependencies:
+ '@opentelemetry/api': '>=1.0.0 <1.10.0'
+
+ '@opentelemetry/core@2.7.1':
+ resolution: {integrity: sha512-QAqIj32AtK6+pEVNG7EOVxHdE06RP+FM5qpiEJ4RtDcFIqKUZHYhl7/7UY5efhwmwNAg7j8QbJVBLxMerc0+gw==}
+ engines: {node: ^18.19.0 || >=20.6.0}
+ peerDependencies:
+ '@opentelemetry/api': '>=1.0.0 <1.10.0'
+
+ '@opentelemetry/exporter-logs-otlp-http@0.208.0':
+ resolution: {integrity: sha512-jOv40Bs9jy9bZVLo/i8FwUiuCvbjWDI+ZW13wimJm4LjnlwJxGgB+N/VWOZUTpM+ah/awXeQqKdNlpLf2EjvYg==}
+ engines: {node: ^18.19.0 || >=20.6.0}
+ peerDependencies:
+ '@opentelemetry/api': ^1.3.0
+
+ '@opentelemetry/otlp-exporter-base@0.208.0':
+ resolution: {integrity: sha512-gMd39gIfVb2OgxldxUtOwGJYSH8P1kVFFlJLuut32L6KgUC4gl1dMhn+YC2mGn0bDOiQYSk/uHOdSjuKp58vvA==}
+ engines: {node: ^18.19.0 || >=20.6.0}
+ peerDependencies:
+ '@opentelemetry/api': ^1.3.0
+
+ '@opentelemetry/otlp-transformer@0.208.0':
+ resolution: {integrity: sha512-DCFPY8C6lAQHUNkzcNT9R+qYExvsk6C5Bto2pbNxgicpcSWbe2WHShLxkOxIdNcBiYPdVHv/e7vH7K6TI+C+fQ==}
+ engines: {node: ^18.19.0 || >=20.6.0}
+ peerDependencies:
+ '@opentelemetry/api': ^1.3.0
+
+ '@opentelemetry/resources@2.2.0':
+ resolution: {integrity: sha512-1pNQf/JazQTMA0BiO5NINUzH0cbLbbl7mntLa4aJNmCCXSj0q03T5ZXXL0zw4G55TjdL9Tz32cznGClf+8zr5A==}
+ engines: {node: ^18.19.0 || >=20.6.0}
+ peerDependencies:
+ '@opentelemetry/api': '>=1.3.0 <1.10.0'
+
+ '@opentelemetry/resources@2.7.1':
+ resolution: {integrity: sha512-DeT6KKolmC4e/dRQvMQ/RwlnzhaqeiFOXY5ngoOPJ07GgVVKxZOg9EcrNZb5aTzUn+iCrJldAgOfQm1O/QfPAQ==}
+ engines: {node: ^18.19.0 || >=20.6.0}
+ peerDependencies:
+ '@opentelemetry/api': '>=1.3.0 <1.10.0'
+
+ '@opentelemetry/sdk-logs@0.208.0':
+ resolution: {integrity: sha512-QlAyL1jRpOeaqx7/leG1vJMp84g0xKP6gJmfELBpnI4O/9xPX+Hu5m1POk9Kl+veNkyth5t19hRlN6tNY1sjbA==}
+ engines: {node: ^18.19.0 || >=20.6.0}
+ peerDependencies:
+ '@opentelemetry/api': '>=1.4.0 <1.10.0'
+
+ '@opentelemetry/sdk-metrics@2.2.0':
+ resolution: {integrity: sha512-G5KYP6+VJMZzpGipQw7Giif48h6SGQ2PFKEYCybeXJsOCB4fp8azqMAAzE5lnnHK3ZVwYQrgmFbsUJO/zOnwGw==}
+ engines: {node: ^18.19.0 || >=20.6.0}
+ peerDependencies:
+ '@opentelemetry/api': '>=1.9.0 <1.10.0'
+
+ '@opentelemetry/sdk-trace-base@2.2.0':
+ resolution: {integrity: sha512-xWQgL0Bmctsalg6PaXExmzdedSp3gyKV8mQBwK/j9VGdCDu2fmXIb2gAehBKbkXCpJ4HPkgv3QfoJWRT4dHWbw==}
+ engines: {node: ^18.19.0 || >=20.6.0}
+ peerDependencies:
+ '@opentelemetry/api': '>=1.3.0 <1.10.0'
+
+ '@opentelemetry/semantic-conventions@1.41.1':
+ resolution: {integrity: sha512-/UhIkaZgPutTFmQ7RnIJGgDXZmtEJ7Dvi86xNTFWcnRxVRNk/aotsqDJYeEvDP+FSMB2SdW+pQzNMcWP0rwuNA==}
+ engines: {node: '>=14'}
+
+ '@oxc-parser/binding-android-arm-eabi@0.127.0':
+ resolution: {integrity: sha512-0LC7ye4hvqbIKxAzThzvswgHLFu2AURKzYLeSVvLdu2TBOYWQDmHnTqPLeA597BcUCxiLqLsS4CJ5uoI5WYWCQ==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [arm]
+ os: [android]
+
+ '@oxc-parser/binding-android-arm64@0.127.0':
+ resolution: {integrity: sha512-b5jtVTH6AU5CJXHNdj7Jj9IEiR9yVjjnwHzPJhGyHGPdcsZSzBCkS9GBbV33niRMvKthDwQRFRJfI4a+k4PvYg==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [arm64]
+ os: [android]
+
+ '@oxc-parser/binding-darwin-arm64@0.127.0':
+ resolution: {integrity: sha512-obCE8B7ISKkJidjlhv9xRGJPOSDG2Yu6PRga9Ruaz35uintHxbp1Ki/Yc71wx4rj3Edrm0a1kzG1TAwit0wFpg==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [arm64]
+ os: [darwin]
+
+ '@oxc-parser/binding-darwin-x64@0.127.0':
+ resolution: {integrity: sha512-JL6Xb5IwPQT8rUzlpsX7E+AgfcdNklXNPFp8pjCQQ5MQOQo5rtEB2ui+3Hgg9Sn7Y9Egj6YOLLiHhLpdAe12Aw==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [x64]
+ os: [darwin]
+
+ '@oxc-parser/binding-freebsd-x64@0.127.0':
+ resolution: {integrity: sha512-SDQ/3MQFw58fqQz3Z1PhSKFF3JoCF4gmlNjziDm8X02tTahCw0qJbd7FGPDKw1i4VTBZene9JPyC3mHtSvi+wA==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [x64]
+ os: [freebsd]
+
+ '@oxc-parser/binding-linux-arm-gnueabihf@0.127.0':
+ resolution: {integrity: sha512-Av+D1MIqzV0YMGPT9we2SIZaMKD7Cxs4CvXSx/yxaWHewZjYEjScpOf5igc8IILASViw4WTnjlwUdI1KzVtDHQ==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [arm]
+ os: [linux]
+
+ '@oxc-parser/binding-linux-arm-musleabihf@0.127.0':
+ resolution: {integrity: sha512-Cs2fdJ8cPpFdeebj6p4dag8A4+56hPvZ0AhQQzlaLswGz1tz7bXt1nETLeorrM9+AMcWFFkqxcXwDGfTVidY8g==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [arm]
+ os: [linux]
+
+ '@oxc-parser/binding-linux-arm64-gnu@0.127.0':
+ resolution: {integrity: sha512-qdOfTcT6SY8gsJrrV92uyEUyjqMGPpIB5JZUG6QN5dukYd+7/j0kX6MwK1DgQj39jtUYixxPiaRUiEN1+0CXgQ==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [arm64]
+ os: [linux]
+ libc: [glibc]
+
+ '@oxc-parser/binding-linux-arm64-musl@0.127.0':
+ resolution: {integrity: sha512-EoTCZneNFU/P2qrpEM+RHmQwt+CvDkyGESG6qhr7KaegXLZwePfbrkCDfAk8/rhxbDUVGsZILX+2tqPzFtoFWA==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [arm64]
+ os: [linux]
+ libc: [musl]
+
+ '@oxc-parser/binding-linux-ppc64-gnu@0.127.0':
+ resolution: {integrity: sha512-zALjmZYgxFLHjXeudcDF0xFGNydTAtkAeXAr2EuC17ywCyFxcmQra4w0BMde0Yi/re4Bi4iwEoEXtYN7l6eBLQ==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [ppc64]
+ os: [linux]
+ libc: [glibc]
+
+ '@oxc-parser/binding-linux-riscv64-gnu@0.127.0':
+ resolution: {integrity: sha512-fPP8M6zQLS7Jz7o9d5ArUSuAuSK3e+WCYVrCpdzeCOejidtZExJ9tjhDrAd3HEPqARBCPmdpqxESPFqy44vkBQ==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [riscv64]
+ os: [linux]
+ libc: [glibc]
+
+ '@oxc-parser/binding-linux-riscv64-musl@0.127.0':
+ resolution: {integrity: sha512-7IcC4Ao02oGpfnjt+X/oF4U2mllo2qoSkw5xxiXNKL9MCTsTiAC6616beOuehdxGcnz1bRoPC1RQ2f1GQDdN+g==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [riscv64]
+ os: [linux]
+ libc: [musl]
+
+ '@oxc-parser/binding-linux-s390x-gnu@0.127.0':
+ resolution: {integrity: sha512-pbXIhiNFHoqWeqDNLiJ9JkpHz1IM9k4DXa66x+1GTWMG7iLxtkXgE53iiuKSXwmk3zIYmaPVfBvgcAhS583K4Q==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [s390x]
+ os: [linux]
+ libc: [glibc]
+
+ '@oxc-parser/binding-linux-x64-gnu@0.127.0':
+ resolution: {integrity: sha512-MYCguB9RvBvlSd6gbuNI7QwiLoCCAlGnlRJFPrzLI6U1/9wkC/WK6LtBAUln55H1Ctqw45PWmqrobKoMhsYQzQ==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [x64]
+ os: [linux]
+ libc: [glibc]
+
+ '@oxc-parser/binding-linux-x64-musl@0.127.0':
+ resolution: {integrity: sha512-5eY0B/bxf1xIUxb4NOTvOI3KWtBQfPWYyKAzgcrCt0mDibSZygVpO1Pz8bkeiSZ5Jj9+M09dkggG3H8I5d0Uyg==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [x64]
+ os: [linux]
+ libc: [musl]
+
+ '@oxc-parser/binding-openharmony-arm64@0.127.0':
+ resolution: {integrity: sha512-Gld0ajrFTUXNtdw20fVBuTQx66FA75nIVg+//pPfR3sXkuABB4mTBhl3r9JNzrJpgW//qiwxf0nWXUWGJSL3UQ==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [arm64]
+ os: [openharmony]
+
+ '@oxc-parser/binding-wasm32-wasi@0.127.0':
+ resolution: {integrity: sha512-T6KVD7rhLzFlwGRXMnxUFfkCZD8FHnb968wVXW1mXzgRFc5RNXOBY2mPPDZ77x5Ln76ltLMgtPg0cOkU1NSrEQ==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [wasm32]
+
+ '@oxc-parser/binding-win32-arm64-msvc@0.127.0':
+ resolution: {integrity: sha512-Ujvw4X+LD1CCGULcsQcvb4YNVoBGqt+JHgNNzGGaCImELiZLk477ifUH53gIbE7EKd933NdTi25JWEr9K2HwXw==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [arm64]
+ os: [win32]
+
+ '@oxc-parser/binding-win32-ia32-msvc@0.127.0':
+ resolution: {integrity: sha512-0cwxKO7KHQQQfo4Uf4B2SQrhgm+cJaP9OvFFhx52Tkg4bezsacu83GB2/In5bC415Ueeym+kXdnge/57rbSfTw==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [ia32]
+ os: [win32]
+
+ '@oxc-parser/binding-win32-x64-msvc@0.127.0':
+ resolution: {integrity: sha512-rOrnSQSCbhI2kowr9XxE7m9a8oQXnBHjnS6j95LxxAnEZ0+Fz20WlRXG4ondQb+ejjt2KOsa65sE6++L6kUd+w==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [x64]
+ os: [win32]
+
+ '@oxc-project/types@0.127.0':
+ resolution: {integrity: sha512-aIYXQBo4lCbO4z0R3FHeucQHpF46l2LbMdxRvqvuRuW2OxdnSkcng5B8+K12spgLDj93rtN3+J2Vac/TIO+ciQ==}
+
+ '@oxc-project/types@0.137.0':
+ resolution: {integrity: sha512-WT+Gb24i8hmvo85AIv2oEYouEXkRlKAlT9WaCa3TfLgNCN+GhrJOGZuIlMouAh38Qe4QOx26eUOVsq70qXrywA==}
+
+ '@oxc-resolver/binding-android-arm-eabi@11.19.1':
+ resolution: {integrity: sha512-aUs47y+xyXHUKlbhqHUjBABjvycq6YSD7bpxSW7vplUmdzAlJ93yXY6ZR0c1o1x5A/QKbENCvs3+NlY8IpIVzg==}
+ cpu: [arm]
+ os: [android]
+
+ '@oxc-resolver/binding-android-arm-eabi@11.21.3':
+ resolution: {integrity: sha512-eNU11A2WNizh04v3uyaJCootrHIaS0B9aHYXvAvVnPNk4xYSjMUjHnhQ6dewPN2MRYDskV85d1N0Aw0WNWhcyg==}
+ cpu: [arm]
+ os: [android]
+
+ '@oxc-resolver/binding-android-arm64@11.19.1':
+ resolution: {integrity: sha512-oolbkRX+m7Pq2LNjr/kKgYeC7bRDMVTWPgxBGMjSpZi/+UskVo4jsMU3MLheZV55jL6c3rNelPl4oD60ggYmqA==}
+ cpu: [arm64]
+ os: [android]
+
+ '@oxc-resolver/binding-android-arm64@11.21.3':
+ resolution: {integrity: sha512-8Q+ZjTLvn2dIcWsrmhdrEihm7q+ag/k+mkry7Z+t0QbbHaVxXQfvH9AewyVMh/WrpEKhQ3DDgx9fYbqeCpeOEw==}
+ cpu: [arm64]
+ os: [android]
+
+ '@oxc-resolver/binding-darwin-arm64@11.19.1':
+ resolution: {integrity: sha512-nUC6d2i3R5B12sUW4O646qD5cnMXf2oBGPLIIeaRfU9doJRORAbE2SGv4eW6rMqhD+G7nf2Y8TTJTLiiO3Q/dQ==}
+ cpu: [arm64]
+ os: [darwin]
+
+ '@oxc-resolver/binding-darwin-arm64@11.21.3':
+ resolution: {integrity: sha512-wkh0qKZGHXVUDxFw3oA1TXnU2BDYY/r775oJflGeIr8uDPPoN2pk8gijQIzYRT6hoql/lg3+Tx/SaTn9e2/aGg==}
+ cpu: [arm64]
+ os: [darwin]
+
+ '@oxc-resolver/binding-darwin-x64@11.19.1':
+ resolution: {integrity: sha512-cV50vE5+uAgNcFa3QY1JOeKDSkM/9ReIcc/9wn4TavhW/itkDGrXhw9jaKnkQnGbjJ198Yh5nbX/Gr2mr4Z5jQ==}
+ cpu: [x64]
+ os: [darwin]
+
+ '@oxc-resolver/binding-darwin-x64@11.21.3':
+ resolution: {integrity: sha512-HbNc23FAQYbuyDV2vBWMez4u4mrsm5RAkniGZAWqr6lYZ3N4beeqIb776jzwRl8qL2zRhHVXpUj97X0QgogVzg==}
+ cpu: [x64]
+ os: [darwin]
+
+ '@oxc-resolver/binding-freebsd-x64@11.19.1':
+ resolution: {integrity: sha512-xZOQiYGFxtk48PBKff+Zwoym7ScPAIVp4c14lfLxizO2LTTTJe5sx9vQNGrBymrf/vatSPNMD4FgsaaRigPkqw==}
+ cpu: [x64]
+ os: [freebsd]
+
+ '@oxc-resolver/binding-freebsd-x64@11.21.3':
+ resolution: {integrity: sha512-K6xNsTUPEUdfrn0+kbMq5nOUB5w1C5pavPQngt4TM2FpN91lP0PBe2srSpamb4d69O7h86oAi/qWX/kZNRSjkw==}
+ cpu: [x64]
+ os: [freebsd]
+
+ '@oxc-resolver/binding-linux-arm-gnueabihf@11.19.1':
+ resolution: {integrity: sha512-lXZYWAC6kaGe/ky2su94e9jN9t6M0/6c+GrSlCqL//XO1cxi5lpAhnJYdyrKfm0ZEr/c7RNyAx3P7FSBcBd5+A==}
+ cpu: [arm]
+ os: [linux]
+
+ '@oxc-resolver/binding-linux-arm-gnueabihf@11.21.3':
+ resolution: {integrity: sha512-VcFmOpcpWX1zoEy8M58tR2M9YxM+Z9RuQhqAx5q0CTmrruaP7Gveejg75hzd/5sg5nk9G3aLALEa3hE2FsmmTQ==}
+ cpu: [arm]
+ os: [linux]
+
+ '@oxc-resolver/binding-linux-arm-musleabihf@11.19.1':
+ resolution: {integrity: sha512-veG1kKsuK5+t2IsO9q0DErYVSw2azvCVvWHnfTOS73WE0STdLLB7Q1bB9WR+yHPQM76ASkFyRbogWo1GR1+WbQ==}
+ cpu: [arm]
+ os: [linux]
+
+ '@oxc-resolver/binding-linux-arm-musleabihf@11.21.3':
+ resolution: {integrity: sha512-quVoxFLBy43hWaQbbDtQNRwAX5vX76mv7n64icAtQcJ3eNgVeblqmkupF/hAneNthdqSlnd1sTjb3aQSaDPaCQ==}
+ cpu: [arm]
+ os: [linux]
+
+ '@oxc-resolver/binding-linux-arm64-gnu@11.19.1':
+ resolution: {integrity: sha512-heV2+jmXyYnUrpUXSPugqWDRpnsQcDm2AX4wzTuvgdlZfoNYO0O3W2AVpJYaDn9AG4JdM6Kxom8+foE7/BcSig==}
+ cpu: [arm64]
+ os: [linux]
+ libc: [glibc]
+
+ '@oxc-resolver/binding-linux-arm64-gnu@11.21.3':
+ resolution: {integrity: sha512-X0AqNZgcD07Q4V3RDK18/vYOj/HQT/FnmEFGYS2jTWqY7JO13ryE3TEs3eAIgUJhBnNkpEaiXqz3VK8M7qQhWQ==}
+ cpu: [arm64]
+ os: [linux]
+ libc: [glibc]
+
+ '@oxc-resolver/binding-linux-arm64-musl@11.19.1':
+ resolution: {integrity: sha512-jvo2Pjs1c9KPxMuMPIeQsgu0mOJF9rEb3y3TdpsrqwxRM+AN6/nDDwv45n5ZrUnQMsdBy5gIabioMKnQfWo9ew==}
+ cpu: [arm64]
+ os: [linux]
+ libc: [musl]
+
+ '@oxc-resolver/binding-linux-arm64-musl@11.21.3':
+ resolution: {integrity: sha512-YkaQnaKYdbuaXvRt5Qd0GpbihzVnyfR6z1SpYfIUC6RTu4NF7lDKPjVkYb+jRI2gedVO2rVpN35Y6akG6ud4Lw==}
+ cpu: [arm64]
+ os: [linux]
+ libc: [musl]
+
+ '@oxc-resolver/binding-linux-ppc64-gnu@11.19.1':
+ resolution: {integrity: sha512-vLmdNxWCdN7Uo5suays6A/+ywBby2PWBBPXctWPg5V0+eVuzsJxgAn6MMB4mPlshskYbppjpN2Zg83ArHze9gQ==}
+ cpu: [ppc64]
+ os: [linux]
+ libc: [glibc]
+
+ '@oxc-resolver/binding-linux-ppc64-gnu@11.21.3':
+ resolution: {integrity: sha512-gB9HwhrPiFqUzDeEq+y/CgAijz1YdI6BnXz5GaH2Pa9cWdutchlkGFAiAuGb/PjVQpiK6NFKzFuztxrweoit7A==}
+ cpu: [ppc64]
+ os: [linux]
+ libc: [glibc]
+
+ '@oxc-resolver/binding-linux-riscv64-gnu@11.19.1':
+ resolution: {integrity: sha512-/b+WgR+VTSBxzgOhDO7TlMXC1ufPIMR6Vj1zN+/x+MnyXGW7prTLzU9eW85Aj7Th7CCEG9ArCbTeqxCzFWdg2w==}
+ cpu: [riscv64]
+ os: [linux]
+ libc: [glibc]
+
+ '@oxc-resolver/binding-linux-riscv64-gnu@11.21.3':
+ resolution: {integrity: sha512-zjDWBlYk8QGv0H8dsPUWqkfjYIIjG2TvspGkzXL0eImbgxtZorA/klKeHyolevoT3Kvbi+1iMr9Lhrh7jf54Og==}
+ cpu: [riscv64]
+ os: [linux]
+ libc: [glibc]
+
+ '@oxc-resolver/binding-linux-riscv64-musl@11.19.1':
+ resolution: {integrity: sha512-YlRdeWb9j42p29ROh+h4eg/OQ3dTJlpHSa+84pUM9+p6i3djtPz1q55yLJhgW9XfDch7FN1pQ/Vd6YP+xfRIuw==}
+ cpu: [riscv64]
+ os: [linux]
+ libc: [musl]
+
+ '@oxc-resolver/binding-linux-riscv64-musl@11.21.3':
+ resolution: {integrity: sha512-4UfsQvacV388y1zpXL7C1x1FNYaV52JtuNRiuzrfQA2z1z6ElVrsidkGsrvQ5EgeSq1Pj7kaKqrgGkvFuxJ/tw==}
+ cpu: [riscv64]
+ os: [linux]
+ libc: [musl]
+
+ '@oxc-resolver/binding-linux-s390x-gnu@11.19.1':
+ resolution: {integrity: sha512-EDpafVOQWF8/MJynsjOGFThcqhRHy417sRyLfQmeiamJ8qVhSKAn2Dn2VVKUGCjVB9C46VGjhNo7nOPUi1x6uA==}
+ cpu: [s390x]
+ os: [linux]
+ libc: [glibc]
+
+ '@oxc-resolver/binding-linux-s390x-gnu@11.21.3':
+ resolution: {integrity: sha512-b5uH+HKH0MP5mNBYaK75SKsJbw52URqrx2LavYdq6wb0l3ExAG5niYRP9DWUNHdKilpaBVM2bXk9HNWrH3ew7Q==}
+ cpu: [s390x]
+ os: [linux]
+ libc: [glibc]
+
+ '@oxc-resolver/binding-linux-x64-gnu@11.19.1':
+ resolution: {integrity: sha512-NxjZe+rqWhr+RT8/Ik+5ptA3oz7tUw361Wa5RWQXKnfqwSSHdHyrw6IdcTfYuml9dM856AlKWZIUXDmA9kkiBQ==}
+ cpu: [x64]
+ os: [linux]
+ libc: [glibc]
+
+ '@oxc-resolver/binding-linux-x64-gnu@11.21.3':
+ resolution: {integrity: sha512-PjYlmilBpNRh2ntXNYAK3Am5w/nPfEpnU/96iNx7CI8EzAn12J4JRiec63wHJTH31nLoCNxBg/829pN+3CfG3Q==}
+ cpu: [x64]
+ os: [linux]
+ libc: [glibc]
+
+ '@oxc-resolver/binding-linux-x64-musl@11.19.1':
+ resolution: {integrity: sha512-cM/hQwsO3ReJg5kR+SpI69DMfvNCp+A/eVR4b4YClE5bVZwz8rh2Nh05InhwI5HR/9cArbEkzMjcKgTHS6UaNw==}
+ cpu: [x64]
+ os: [linux]
+ libc: [musl]
+
+ '@oxc-resolver/binding-linux-x64-musl@11.21.3':
+ resolution: {integrity: sha512-QTBAb7JuHlZ7JUEyM8UiQi2f7m/L4swBhP2TNpYIDc9Wp/wRw1G/8sl6i13aIzQAXH7LKIm294LeOHd0lQR8zA==}
+ cpu: [x64]
+ os: [linux]
+ libc: [musl]
+
+ '@oxc-resolver/binding-openharmony-arm64@11.19.1':
+ resolution: {integrity: sha512-QF080IowFB0+9Rh6RcD19bdgh49BpQHUW5TajG1qvWHvmrQznTZZjYlgE2ltLXyKY+qs4F/v5xuX1XS7Is+3qA==}
+ cpu: [arm64]
+ os: [openharmony]
+
+ '@oxc-resolver/binding-openharmony-arm64@11.21.3':
+ resolution: {integrity: sha512-4j1DFwjwv36ec9kds0jU/ucQ5Ha4ERO/H95BxR5JFf0kqUUAJ1kwII7XhTc1vZrkdJkvLGC9Q2MbpObpum8RBg==}
+ cpu: [arm64]
+ os: [openharmony]
+
+ '@oxc-resolver/binding-wasm32-wasi@11.19.1':
+ resolution: {integrity: sha512-w8UCKhX826cP/ZLokXDS6+milN8y4X7zidsAttEdWlVoamTNf6lhBJldaWr3ukTDiye7s4HRcuPEPOXNC432Vg==}
+ engines: {node: '>=14.0.0'}
+ cpu: [wasm32]
+
+ '@oxc-resolver/binding-wasm32-wasi@11.21.3':
+ resolution: {integrity: sha512-i8oluoel5kru/j1WNrjmQSiA3GQ7wvIYVR1IwIoZtKogAhya2iub+ZKIeSIkcJOrnzQ18Tzl/F+kL3fYOxZLvA==}
+ engines: {node: '>=14.0.0'}
+ cpu: [wasm32]
+
+ '@oxc-resolver/binding-win32-arm64-msvc@11.19.1':
+ resolution: {integrity: sha512-nJ4AsUVZrVKwnU/QRdzPCCrO0TrabBqgJ8pJhXITdZGYOV28TIYystV1VFLbQ7DtAcaBHpocT5/ZJnF78YJPtQ==}
+ cpu: [arm64]
+ os: [win32]
+
+ '@oxc-resolver/binding-win32-arm64-msvc@11.21.3':
+ resolution: {integrity: sha512-M/8dw8dD6aOs+NlPJax401CZB9I7Aut84isQLgALGGwke4Afvw+/7yYhZb94yXf6t2sPLhQLmSmtSV+2FhsOWg==}
+ cpu: [arm64]
+ os: [win32]
+
+ '@oxc-resolver/binding-win32-ia32-msvc@11.19.1':
+ resolution: {integrity: sha512-EW+ND5q2Tl+a3pH81l1QbfgbF3HmqgwLfDfVithRFheac8OTcnbXt/JxqD2GbDkb7xYEqy1zNaVFRr3oeG8npA==}
+ cpu: [ia32]
+ os: [win32]
+
+ '@oxc-resolver/binding-win32-x64-msvc@11.19.1':
+ resolution: {integrity: sha512-6hIU3RQu45B+VNTY4Ru8ppFwjVS/S5qwYyGhBotmjxfEKk41I2DlGtRfGJndZ5+6lneE2pwloqunlOyZuX/XAw==}
+ cpu: [x64]
+ os: [win32]
+
+ '@oxc-resolver/binding-win32-x64-msvc@11.21.3':
+ resolution: {integrity: sha512-H7BCt/VnS9hnmMp42eGhZ99izSCRvlnWwy/N71K1/J8QoExwY4262Z8QiEkMDtduRJrztayDxETTckmUuAVL9Q==}
+ cpu: [x64]
+ os: [win32]
+
+ '@oxfmt/binding-android-arm-eabi@0.56.0':
+ resolution: {integrity: sha512-CSCxi7ovYojgfdPOdUb9T508HKeAdDIKeRGg7x8IZwVJrWz9gVgX7MbUnFqtQAE4QvoNo07mj2JlwnOzJw4qqA==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [arm]
+ os: [android]
+
+ '@oxfmt/binding-android-arm64@0.56.0':
+ resolution: {integrity: sha512-HYJFnd+PkDwf6S9ZPGzXXtjNqvRWFnnhdbWaouh4mi/SxU8wmDuzlMn3xo/wDTGnr4Q1VA7ZzOaE/D4biW0W6A==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [arm64]
+ os: [android]
+
+ '@oxfmt/binding-darwin-arm64@0.56.0':
+ resolution: {integrity: sha512-sftR/bEOr+t1gs+evwsHi/Xbq2FAPA2uU3VMr8n6ZU9PoK/IMSfnfu7+OEe/uy1+knhrFl4Wvy7Vkm3uo9mJ7g==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [arm64]
+ os: [darwin]
+
+ '@oxfmt/binding-darwin-x64@0.56.0':
+ resolution: {integrity: sha512-z66SdjLqa3MUPKvTp3Mbb5nSjKSbnYxJGeB+Wx987s8T5hPcIRiBMfnJ6zcPgYtQn3x5xjvdzNVkXrSeYH6ZFg==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [x64]
+ os: [darwin]
+
+ '@oxfmt/binding-freebsd-x64@0.56.0':
+ resolution: {integrity: sha512-t2tkrV1vtZyaItSQ71dTi2ZVKZEI39b/LqLT12V5KMfIeXK6N32TUC1jhOXKVQmhECq9j2ZXMQV3JeT1kh9Vmg==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [x64]
+ os: [freebsd]
+
+ '@oxfmt/binding-linux-arm-gnueabihf@0.56.0':
+ resolution: {integrity: sha512-+gCy+Tp3RHeXQ9y/QrS76lXIpZkbziTyp6hIgjB2MssCwfMph3vG/GEfkhO34Rai1vhYIaUkvv8UT1BcDorJPw==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [arm]
+ os: [linux]
+
+ '@oxfmt/binding-linux-arm-musleabihf@0.56.0':
+ resolution: {integrity: sha512-0kKkVvQ2I+FJ2sxQyUu1zJ0yWP5kcWse/yVFnGQSFCXMwSSkfEaUGu0dW774O7nyy3jrcBGap7OSc8dZmU/CdA==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [arm]
+ os: [linux]
+
+ '@oxfmt/binding-linux-arm64-gnu@0.56.0':
+ resolution: {integrity: sha512-npkA2siMbyWRh+wEhi1aTAx4RirukGcGNt8V4Ch86pG+xU9aurqS1MZOnKYMu03ISwat3rB6zkQx51SsB9obNw==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [arm64]
+ os: [linux]
+ libc: [glibc]
+
+ '@oxfmt/binding-linux-arm64-musl@0.56.0':
+ resolution: {integrity: sha512-UekqOjGkV4/MkqreCV9SPIB2jlR3/HbXrmhV1rVXJZ9wfDXMyCMriLtq3tHqLY4PkbVWNtfcm1kMojJ26KLSJw==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [arm64]
+ os: [linux]
+ libc: [musl]
+
+ '@oxfmt/binding-linux-ppc64-gnu@0.56.0':
+ resolution: {integrity: sha512-XSzveSpeZMD5XJpew5lRFVtNnT04xd3rJxENXmk7wkZzN9oWzv2aFJyoNDhOtoz69BYaS/fg4SYl+CfEZRpB0Q==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [ppc64]
+ os: [linux]
+ libc: [glibc]
+
+ '@oxfmt/binding-linux-riscv64-gnu@0.56.0':
+ resolution: {integrity: sha512-EkQ0nJa7k7HDDIVuPF7WY+k4k+bzdclLYtyIXNt7/OqVghfNiMym6YGppFBgx1XRIHW6QylxBz5OogumPjPJbQ==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [riscv64]
+ os: [linux]
+ libc: [glibc]
+
+ '@oxfmt/binding-linux-riscv64-musl@0.56.0':
+ resolution: {integrity: sha512-dyjAGW8jKRge0ik6U/dgvQG0nVpA3iBlRskQTz5qJLvQWIrySxX5jpqzPetLBNIIZ231KA82fDdi1nLTk8ENCw==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [riscv64]
+ os: [linux]
+ libc: [musl]
+
+ '@oxfmt/binding-linux-s390x-gnu@0.56.0':
+ resolution: {integrity: sha512-60ZGH3LtfqlW8X6vcLdSFY4lvCQYINurttYBKaALnHCDVAUCYJ1LsUgS6p1XOzVlzEDx3yNUZvDF1Lvt59zoZw==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [s390x]
+ os: [linux]
+ libc: [glibc]
+
+ '@oxfmt/binding-linux-x64-gnu@0.56.0':
+ resolution: {integrity: sha512-u1suj1tgJHK4ZqB7buCtdbNef2n8+d0lXTPJwLHNmtyK6p+DTpsaoDvmqhQrA56fgKYv4LuRxNtL8YooebKOew==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [x64]
+ os: [linux]
+ libc: [glibc]
+
+ '@oxfmt/binding-linux-x64-musl@0.56.0':
+ resolution: {integrity: sha512-aYGLvlQHt80y+qKEtfJY/Nm27G0125Lv+qyh9SJ4Cjc6lXnXjD+ndfhqQnbV24POpMi7rNRi0jvx/0d70FRpCQ==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [x64]
+ os: [linux]
+ libc: [musl]
+
+ '@oxfmt/binding-openharmony-arm64@0.56.0':
+ resolution: {integrity: sha512-H/re/gO+7ysVc+kywHNuzY3C33EN9sQcZhg0kp1ZwOZl7y998ZE5mhnBiuGR/nYI0pqLL5xQfrHVUOJ/cIJsCA==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [arm64]
+ os: [openharmony]
+
+ '@oxfmt/binding-win32-arm64-msvc@0.56.0':
+ resolution: {integrity: sha512-6qLNXfXmtAs8jXDvYMkxk6Wec5SUJoew+ZX1uOZmqaR7ks0EJFbAohuOCELDyJMWyVlxotVG8Xf8m74Bfq0O2w==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [arm64]
+ os: [win32]
+
+ '@oxfmt/binding-win32-ia32-msvc@0.56.0':
+ resolution: {integrity: sha512-UXEXuKphAe15bsob4AswNMArCw38XSmUIs3wk1s6e6MX9OWGW/IRWU95s1hZDiVg09STy1jHgyN2qkqbu1FT0w==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [ia32]
+ os: [win32]
+
+ '@oxfmt/binding-win32-x64-msvc@0.56.0':
+ resolution: {integrity: sha512-HPyNDjky+NIOuaMvHZflR+kst3YWdUOH2JUQYkf99grqZ5mEBTQM6h9iGy501Z8Xt5xMScrwHOuVCOlqDrktRw==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [x64]
+ os: [win32]
+
+ '@oxlint-tsgolint/darwin-arm64@0.23.0':
+ resolution: {integrity: sha512-gOs9PVr2wEg4ox9z0aJo+RKhhImW86YL5N6yav8BK/rgPsIrwN/igSZ+pbRr723NFvUNKde9fgMhRA6JrXAOZw==}
+ cpu: [arm64]
+ os: [darwin]
+
+ '@oxlint-tsgolint/darwin-x64@0.23.0':
+ resolution: {integrity: sha512-kjJ8B+7n4tB9VJdxS5A9GdJt6/bYpzbu4lXp2uO1S3sRmCB5gDEABlGoiePNApRWaW+xqL4b4xgiE727jSLhuA==}
+ cpu: [x64]
+ os: [darwin]
+
+ '@oxlint-tsgolint/linux-arm64@0.23.0':
+ resolution: {integrity: sha512-6dCZuKNu135seMXilkRk9SpCx6i1XgmiipYGalLij5WVRX6ZYS8c4xI7preN/zv9fCXhsQclTIMDu2Y/cytTjw==}
+ cpu: [arm64]
+ os: [linux]
+
+ '@oxlint-tsgolint/linux-x64@0.23.0':
+ resolution: {integrity: sha512-3bdilnyA7kmSTjK27rvjIjSxL5SIg3wt7vwNiRkouWB83ytssyKnuGvxSYJxgMEmFpSutzaBzcCUM2jDtPGcgA==}
+ cpu: [x64]
+ os: [linux]
+
+ '@oxlint-tsgolint/win32-arm64@0.23.0':
+ resolution: {integrity: sha512-j+OEp44SVYiQ+ZD+uttsX7u6L9SvmbbQ77SO1pSFCcJlsVMeCk8qZsjhKfGKuT/jIA+ipOJMVs/+pqUfObBWNw==}
+ cpu: [arm64]
+ os: [win32]
+
+ '@oxlint-tsgolint/win32-x64@0.23.0':
+ resolution: {integrity: sha512-5MyjFuqf+g8OUPJBSGWHJtmoWnzFJYyOg4To9WMQshZYEWig/vtu7JtJ03VWnzHv9LJkAUeApY0gVCOywFR/iQ==}
+ cpu: [x64]
+ os: [win32]
+
+ '@oxlint/binding-android-arm-eabi@1.71.0':
+ resolution: {integrity: sha512-ImGmd1njEg4FEJH03jhRnveEegtO3czCtfptvaHivKAZQIYATbVFBrrzbaYMYv0oJioTnxZAZVSyV+oL7W8S2g==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [arm]
+ os: [android]
+
+ '@oxlint/binding-android-arm64@1.71.0':
+ resolution: {integrity: sha512-4A5BEexBrwY1YFF8Kiq/lp/wQPRG79G3BWIE1FuWaM5MvmpYSd+7ZySVcKkHdwo0UDzdQGddp6pD9mpctMqLnw==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [arm64]
+ os: [android]
+
+ '@oxlint/binding-darwin-arm64@1.71.0':
+ resolution: {integrity: sha512-9wJA9GJulLwS2usU3CEisI/ESDO1n1z9eyTCvApMDrAkbJ1ve0mORgTMjcWWsKxkzkeZ2N/Gpra5IQE7x8tYgQ==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [arm64]
+ os: [darwin]
+
+ '@oxlint/binding-darwin-x64@1.71.0':
+ resolution: {integrity: sha512-PlLCjS06V0PeJMAJwzjrExw1sYNW9Gch3JtNlcwwZDXGlTYDuwHNN89zYH8LTXFfgkVtsYvs2nv0FqrzyuFDzg==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [x64]
+ os: [darwin]
+
+ '@oxlint/binding-freebsd-x64@1.71.0':
+ resolution: {integrity: sha512-Lhil7bWre0ncxbUoDoxfS0JzpTz17BRQKW7iwoAUY8GJ66+WwJEfYPCFJ1P0WgVZR5/O/b3Q2pENlHOjeXLOGQ==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [x64]
+ os: [freebsd]
+
+ '@oxlint/binding-linux-arm-gnueabihf@1.71.0':
+ resolution: {integrity: sha512-Oo9/L58PYD3RC0x05d2upAPLllHytTjHQGsnC06P6Ynn7jKkp5mdImQxXdJ3+FnBaKspNpGogzgVsi6g872LiA==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [arm]
+ os: [linux]
+
+ '@oxlint/binding-linux-arm-musleabihf@1.71.0':
+ resolution: {integrity: sha512-mSHfyfgJrEbyIR29ejaeS50BdPk+GoNPlC1dckpDiUZbJAIel68sjSMdOt4WY0/gva+ECC7FNITQkxMJU+vSBw==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [arm]
+ os: [linux]
+
+ '@oxlint/binding-linux-arm64-gnu@1.71.0':
+ resolution: {integrity: sha512-n9yY4M2tiy3aij4AqtlnspzpfdpeT5JQfK2/w2d8oyp5W0FRwOb1dIeX99nORNcxGr08iD9bH8N5XFz3I2iy8w==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [arm64]
+ os: [linux]
+ libc: [glibc]
+
+ '@oxlint/binding-linux-arm64-musl@1.71.0':
+ resolution: {integrity: sha512-fJZrs5sDZtTaPIOiemRQQmo82Ezy+vOGXemPc4Ok7iVVsYsFa7SlW6Z5XN819VfsqBHRm3NJ3rTdnR8+bJYJdQ==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [arm64]
+ os: [linux]
+ libc: [musl]
+
+ '@oxlint/binding-linux-ppc64-gnu@1.71.0':
+ resolution: {integrity: sha512-cwl7VKGERIy9p+G+AvZdfy/06q0aHXaTt/mMRReC751iuNYJgqKjB7NydXSS30nBT9vtr2tunciOtrR4fD6FUA==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [ppc64]
+ os: [linux]
+ libc: [glibc]
+
+ '@oxlint/binding-linux-riscv64-gnu@1.71.0':
+ resolution: {integrity: sha512-eZ8ieVXvzGi8jr7+ybQGPK2STw3mldfxZlgA2738iflfB/rzA69sE6m5rDRpQaxC7dpm745Enlh1Tod0QAk9Gg==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [riscv64]
+ os: [linux]
+ libc: [glibc]
+
+ '@oxlint/binding-linux-riscv64-musl@1.71.0':
+ resolution: {integrity: sha512-puMDbQYe6+NXwfMusojoA7CXGn2b3utukmd23PQqc1E3XhVCwyZ+FueSMzDYeNgDV2dUfIVXAAKZBcFDeCL6sA==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [riscv64]
+ os: [linux]
+ libc: [musl]
+
+ '@oxlint/binding-linux-s390x-gnu@1.71.0':
+ resolution: {integrity: sha512-4NJLxBs1ujISCt3L/1FcywLs73PWtJuw+piD6feK2V6h6OS6P7xu9/sWt1DTRLibe6QCzmfZzmM/2HPORoV/Lg==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [s390x]
+ os: [linux]
+ libc: [glibc]
+
+ '@oxlint/binding-linux-x64-gnu@1.71.0':
+ resolution: {integrity: sha512-cFDaiR8L3430qp88tfZnvFlt3KotFhR/DlbIL0nHOMMYiG/9Wy4l+6f7t8G8pTa9bd8Lt8+M0y/qjRQ/xcB74g==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [x64]
+ os: [linux]
+ libc: [glibc]
+
+ '@oxlint/binding-linux-x64-musl@1.71.0':
+ resolution: {integrity: sha512-orfixdt76KlpNly9z0PkWBBNfwjKz+JFVLP/7wnVchlKNU9Dpt9InU/ZggeSej6fC7qwHmHNOGlhLnQXcYoGuA==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [x64]
+ os: [linux]
+ libc: [musl]
+
+ '@oxlint/binding-openharmony-arm64@1.71.0':
+ resolution: {integrity: sha512-9emQu2lAp6yhPB3XuI+++vR+l/o6JR1X+EpxwcumPdQXBWXEPAsquPGL7l158EqU8SebQMXTUa/S5zN98juyHw==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [arm64]
+ os: [openharmony]
+
+ '@oxlint/binding-win32-arm64-msvc@1.71.0':
+ resolution: {integrity: sha512-bd5kI8spYwTm3BILDtGhi73zoup5dw8MlPQNT8YB3BD5UIsjNe3K9/4ctrzQMX4SZMoK5HgzVLkLJzacEXB7fA==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [arm64]
+ os: [win32]
+
+ '@oxlint/binding-win32-ia32-msvc@1.71.0':
+ resolution: {integrity: sha512-W4HvOHGzVLHcrmFu+bMrJlho+/yrlX5ZNdJZqGe8MEldkQG+RHYhxxad9P4jvWAYFmIqUA5i9DQ8QsJqSU9GIw==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [ia32]
+ os: [win32]
+
+ '@oxlint/binding-win32-x64-msvc@1.71.0':
+ resolution: {integrity: sha512-D2kyEIPHk/G/wiZLnwTVC/sVst+T/lKldVOjAFpgTIBUAOlry72e5OiapDbDBF4LfJLkN5ypJb/8Eu6yJzkveQ==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [x64]
+ os: [win32]
+
+ '@parcel/watcher-android-arm64@2.5.6':
+ resolution: {integrity: sha512-YQxSS34tPF/6ZG7r/Ih9xy+kP/WwediEUsqmtf0cuCV5TPPKw/PQHRhueUo6JdeFJaqV3pyjm0GdYjZotbRt/A==}
+ engines: {node: '>= 10.0.0'}
+ cpu: [arm64]
+ os: [android]
+
+ '@parcel/watcher-darwin-arm64@2.5.6':
+ resolution: {integrity: sha512-Z2ZdrnwyXvvvdtRHLmM4knydIdU9adO3D4n/0cVipF3rRiwP+3/sfzpAwA/qKFL6i1ModaabkU7IbpeMBgiVEA==}
+ engines: {node: '>= 10.0.0'}
+ cpu: [arm64]
+ os: [darwin]
+
+ '@parcel/watcher-darwin-x64@2.5.6':
+ resolution: {integrity: sha512-HgvOf3W9dhithcwOWX9uDZyn1lW9R+7tPZ4sug+NGrGIo4Rk1hAXLEbcH1TQSqxts0NYXXlOWqVpvS1SFS4fRg==}
+ engines: {node: '>= 10.0.0'}
+ cpu: [x64]
+ os: [darwin]
+
+ '@parcel/watcher-freebsd-x64@2.5.6':
+ resolution: {integrity: sha512-vJVi8yd/qzJxEKHkeemh7w3YAn6RJCtYlE4HPMoVnCpIXEzSrxErBW5SJBgKLbXU3WdIpkjBTeUNtyBVn8TRng==}
+ engines: {node: '>= 10.0.0'}
+ cpu: [x64]
+ os: [freebsd]
+
+ '@parcel/watcher-linux-arm-glibc@2.5.6':
+ resolution: {integrity: sha512-9JiYfB6h6BgV50CCfasfLf/uvOcJskMSwcdH1PHH9rvS1IrNy8zad6IUVPVUfmXr+u+Km9IxcfMLzgdOudz9EQ==}
+ engines: {node: '>= 10.0.0'}
+ cpu: [arm]
+ os: [linux]
+ libc: [glibc]
+
+ '@parcel/watcher-linux-arm-musl@2.5.6':
+ resolution: {integrity: sha512-Ve3gUCG57nuUUSyjBq/MAM0CzArtuIOxsBdQ+ftz6ho8n7s1i9E1Nmk/xmP323r2YL0SONs1EuwqBp2u1k5fxg==}
+ engines: {node: '>= 10.0.0'}
+ cpu: [arm]
+ os: [linux]
+ libc: [musl]
+
+ '@parcel/watcher-linux-arm64-glibc@2.5.6':
+ resolution: {integrity: sha512-f2g/DT3NhGPdBmMWYoxixqYr3v/UXcmLOYy16Bx0TM20Tchduwr4EaCbmxh1321TABqPGDpS8D/ggOTaljijOA==}
+ engines: {node: '>= 10.0.0'}
+ cpu: [arm64]
+ os: [linux]
+ libc: [glibc]
+
+ '@parcel/watcher-linux-arm64-musl@2.5.6':
+ resolution: {integrity: sha512-qb6naMDGlbCwdhLj6hgoVKJl2odL34z2sqkC7Z6kzir8b5W65WYDpLB6R06KabvZdgoHI/zxke4b3zR0wAbDTA==}
+ engines: {node: '>= 10.0.0'}
+ cpu: [arm64]
+ os: [linux]
+ libc: [musl]
+
+ '@parcel/watcher-linux-x64-glibc@2.5.6':
+ resolution: {integrity: sha512-kbT5wvNQlx7NaGjzPFu8nVIW1rWqV780O7ZtkjuWaPUgpv2NMFpjYERVi0UYj1msZNyCzGlaCWEtzc+exjMGbQ==}
+ engines: {node: '>= 10.0.0'}
+ cpu: [x64]
+ os: [linux]
+ libc: [glibc]
+
+ '@parcel/watcher-linux-x64-musl@2.5.6':
+ resolution: {integrity: sha512-1JRFeC+h7RdXwldHzTsmdtYR/Ku8SylLgTU/reMuqdVD7CtLwf0VR1FqeprZ0eHQkO0vqsbvFLXUmYm/uNKJBg==}
+ engines: {node: '>= 10.0.0'}
+ cpu: [x64]
+ os: [linux]
+ libc: [musl]
+
+ '@parcel/watcher-win32-arm64@2.5.6':
+ resolution: {integrity: sha512-3ukyebjc6eGlw9yRt678DxVF7rjXatWiHvTXqphZLvo7aC5NdEgFufVwjFfY51ijYEWpXbqF5jtrK275z52D4Q==}
+ engines: {node: '>= 10.0.0'}
+ cpu: [arm64]
+ os: [win32]
+
+ '@parcel/watcher-win32-ia32@2.5.6':
+ resolution: {integrity: sha512-k35yLp1ZMwwee3Ez/pxBi5cf4AoBKYXj00CZ80jUz5h8prpiaQsiRPKQMxoLstNuqe2vR4RNPEAEcjEFzhEz/g==}
+ engines: {node: '>= 10.0.0'}
+ cpu: [ia32]
+ os: [win32]
+
+ '@parcel/watcher-win32-x64@2.5.6':
+ resolution: {integrity: sha512-hbQlYcCq5dlAX9Qx+kFb0FHue6vbjlf0FrNzSKdYK2APUf7tGfGxQCk2ihEREmbR6ZMc0MVAD5RIX/41gpUzTw==}
+ engines: {node: '>= 10.0.0'}
+ cpu: [x64]
+ os: [win32]
+
+ '@parcel/watcher@2.5.6':
+ resolution: {integrity: sha512-tmmZ3lQxAe/k/+rNnXQRawJ4NjxO2hqiOLTHvWchtGZULp4RyFeh6aU4XdOYBFe2KE1oShQTv4AblOs2iOrNnQ==}
+ engines: {node: '>= 10.0.0'}
+
+ '@pkgjs/parseargs@0.11.0':
+ resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==}
+ engines: {node: '>=14'}
+
+ '@playwright/test@1.61.1':
+ resolution: {integrity: sha512-8nKv6+0RJSL9FE4jYOEGXnPeM/Hg12qZpmqzZjRh3qM0Y7c3z1mrOTfFLids72RDQYVh9WpLEfR5WdpNX4fkig==}
+ engines: {node: '>=18'}
+ hasBin: true
+
+ '@polka/url@1.0.0-next.29':
+ resolution: {integrity: sha512-wwQAWhWSuHaag8c4q/KN/vCoeOJYshAIvMQwD4GpSb3OiZklFfvAgmj0VCBBImRpuF/aFgIRzllXlVX93Jevww==}
+
+ '@posthog/core@1.29.3':
+ resolution: {integrity: sha512-OvJSAzqVfZx+L7D874q56FVRTxOIsFBVB3wSB/Uny+DhmfNRGDi1rpZAruEmQYl9WQlQJb1q6JXGAC+rxVXjPA==}
+
+ '@posthog/types@1.374.0':
+ resolution: {integrity: sha512-qouREpHIxsBS3Gc6a5gZvg6/ykK+4TJAs4wYTUIH/emH1HQfaaLrWzGoEm+/OPwlNxHzw4tQn9OOyxsmr9NF2g==}
+
+ '@protobufjs/aspromise@1.1.2':
+ resolution: {integrity: sha512-j+gKExEuLmKwvz3OgROXtrJ2UG2x8Ch2YZUxahh+s1F2HZ+wAceUNLkvy6zKCPVRkU++ZWQrdxsUeQXmcg4uoQ==}
+
+ '@protobufjs/base64@1.1.2':
+ resolution: {integrity: sha512-AZkcAA5vnN/v4PDqKyMR5lx7hZttPDgClv83E//FMNhR2TMcLUhfRUBHCmSl0oi9zMgDDqRUJkSxO3wm85+XLg==}
+
+ '@protobufjs/codegen@2.0.5':
+ resolution: {integrity: sha512-zgXFLzW3Ap33e6d0Wlj4MGIm6Ce8O89n/apUaGNB/jx+hw+ruWEp7EwGUshdLKVRCxZW12fp9r40E1mQrf/34g==}
+
+ '@protobufjs/eventemitter@1.1.0':
+ resolution: {integrity: sha512-j9ednRT81vYJ9OfVuXG6ERSTdEL1xVsNgqpkxMsbIabzSo3goCjDIveeGv5d03om39ML71RdmrGNjG5SReBP/Q==}
+
+ '@protobufjs/fetch@1.1.1':
+ resolution: {integrity: sha512-GpptLrs57adMSuHi3VNj0mAF8dwh36LMaYF6XyJ6JMWlVsc+t42tm1HSEDmOs3A8fC9yyeisgLhsTVQokOZ0zw==}
+
+ '@protobufjs/float@1.0.2':
+ resolution: {integrity: sha512-Ddb+kVXlXst9d+R9PfTIxh1EdNkgoRe5tOX6t01f1lYWOvJnSPDBlG241QLzcyPdoNTsblLUdujGSE4RzrTZGQ==}
+
+ '@protobufjs/inquire@1.1.2':
+ resolution: {integrity: sha512-pa0vFRuws4wkvaXKK1uXZMAwAX4/t8ANaJo45iw/oQHNQ9q5xUzwgFmVJGXiga2BeN+zpX7Vf9vmsiIa2J+MUw==}
+
+ '@protobufjs/path@1.1.2':
+ resolution: {integrity: sha512-6JOcJ5Tm08dOHAbdR3GrvP+yUUfkjG5ePsHYczMFLq3ZmMkAD98cDgcT2iA1lJ9NVwFd4tH/iSSoe44YWkltEA==}
+
+ '@protobufjs/pool@1.1.0':
+ resolution: {integrity: sha512-0kELaGSIDBKvcgS4zkjz1PeddatrjYcmMWOlAuAPwAeccUrPHdUqo/J6LiymHHEiJT5NrF1UVwxY14f+fy4WQw==}
+
+ '@protobufjs/utf8@1.1.1':
+ resolution: {integrity: sha512-oOAWABowe8EAbMyWKM0tYDKi8Yaox52D+HWZhAIJqQXbqe0xI/GV7FhLWqlEKreMkfDjshR5FKgi3mnle0h6Eg==}
+
+ '@radix-ui/number@1.1.2':
+ resolution: {integrity: sha512-ceTwaxc4I5IOi97DgCotl3pqiyRGvffcc0oOsE2dQYaJOFIDsDt4VWG6xEbg1QePv9QWausCEIppud/tJ1wNig==}
+
+ '@radix-ui/primitive@1.1.4':
+ resolution: {integrity: sha512-7AdCK9PQyiljKoBDbN8OuctCbd/esdwZPQ8RtOE3SsyQtUpiPb+ND75q0jEhC1m1ecBI0MFNeLJvwIh9iKHRcQ==}
+
+ '@radix-ui/primitive@1.1.5':
+ resolution: {integrity: sha512-d86WIWFYNtGA0H/d8exstrTRTp7eWJYlYJbtNofxr/3ljupZYn6EFDG/Qgu/0Kc8v7yMUxySagqJsL1+PdYjWg==}
+
+ '@radix-ui/react-arrow@1.1.11':
+ resolution: {integrity: sha512-Kdil9BB1rIFC/khmf4hC35bn8701AJcizTU7G7cUbEbk5XqqbjDuHW60uUfKqO5WojjZcbAW51Q7P0hRmMLw8A==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
+ '@radix-ui/react-collection@1.1.10':
+ resolution: {integrity: sha512-IVVz4EvBcKjrzKgof714qDnz/SzQAkLA2Emh5edlHbgcE6fNd3Un6CJLlaYcnm8N4JmAtzQgse4dOKxcD2yc9g==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
+ '@radix-ui/react-collection@1.1.12':
+ resolution: {integrity: sha512-nb67INpE0IahJKN7EYPp9m9YGwYeKlnzxT3MwXVkgCskaSJia97kG4T0ywpjNUSSnoJk/uvk12V8vbrEHEj+/Q==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
+ '@radix-ui/react-compose-refs@1.1.3':
+ resolution: {integrity: sha512-rYOP8OMnuuPMQF1uhPVlGNcCDlkokKqGFE3JcxFViIkAXP7EvFWUliJAstrapypaBLJNHbZL6jGhbVDGTwmVhA==}
+ peerDependencies:
+ '@types/react': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
+ '@radix-ui/react-context-menu@2.3.3':
+ resolution: {integrity: sha512-PS+gKE0z2prJ74Y0sM+brAGK4mYOHIR7TlcV5EJgUQ6E0xMvyswkK2X4yRqyganrzsRL+WCSKAPu0NQITICRWg==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
+ '@radix-ui/react-context@1.1.4':
+ resolution: {integrity: sha512-QwH4PO5urrbO+FaGd5Aglg+YJgWTyyuZ3g/6mKvsqraLkglDdckw9JafgL5McL5VEJ6EPNduPaT3ZE9BttDAqg==}
+ peerDependencies:
+ '@types/react': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
+ '@radix-ui/react-context@1.2.0':
+ resolution: {integrity: sha512-fOE+JtN9rygNZkCnHRBEP0TAvLldlhyOxMsbwFvTP4nAs+nBmfnna+o/Zski2wkmY1YMrFC0aSzsHoLY47iLrg==}
+ peerDependencies:
+ '@types/react': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
+ '@radix-ui/react-dialog@1.1.17':
+ resolution: {integrity: sha512-TDTYmpdq8dI2+Xgvgj9AJ8Ghqq+Eph/TRVEdaFQPDItIY+6QSkU7MJMeevw1568Yw/2Ijz8BTphPSP2XejKphw==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
+ '@radix-ui/react-direction@1.1.2':
+ resolution: {integrity: sha512-C3vFhbyi4SW3PmbAi6Awpu4OzJtd0MxGurvSsYtr7p7nM8RNB3VAF3CUmnp2j50knpkrRcB7+ycVXzgLgF6yNA==}
+ peerDependencies:
+ '@types/react': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
+ '@radix-ui/react-dismissable-layer@1.1.13':
+ resolution: {integrity: sha512-2v+zNAWWe0ySxgC0D0yeXMPQ23xZVgXZTerTz+JKlmdRj6gfTqmCcR29jb6d290DezXPGgruHWDX/vYUebtErg==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
+ '@radix-ui/react-dismissable-layer@1.1.15':
+ resolution: {integrity: sha512-b0XaRlzn2QKuo10XyNgi2DAJDf5XC9d1nD3FJcuvCjbR7+4Ad28zmZsLsqx+hvDEzMnRuZaZxZm9gYObV6RmRA==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
+ '@radix-ui/react-dropdown-menu@2.1.20':
+ resolution: {integrity: sha512-slfm+rRaZRuQBvHq60lXvSVUPhid0IPtjSZzIuUlWZMUs01iYZNlGS3mJgRD3ChLQVBAYlKiL/tFyWGX+dz8Xw==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
+ '@radix-ui/react-focus-guards@1.1.4':
+ resolution: {integrity: sha512-cot/aB/mOm0IYVYTTmQcEEK1M48lZWi8FlYe5nDPQQ8NYZUlXEFgncJ9p2Kzer3RKSrY7cTTpEMLZKNo9QoP5Q==}
+ peerDependencies:
+ '@types/react': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
+ '@radix-ui/react-focus-scope@1.1.10':
+ resolution: {integrity: sha512-Fas/lXQqhVvqwAb64s5RFeHiHYElZ6SUQbZaNd6EkfhP/Al7wTIQ9WIR4QVX475tlu5yFCEdDcJH6/UwsZjMWw==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
+ '@radix-ui/react-focus-scope@1.1.12':
+ resolution: {integrity: sha512-jjk/lqTeNL0azUx5ZYzVrl4NgaDIrdzTNE4mABV9yBFI7FQqN7pIgzV1bTleUezP2QiTGA1BFTqY8MegDgWX9A==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
+ '@radix-ui/react-form@0.1.12':
+ resolution: {integrity: sha512-JTX94E4LDL91rzLg7X0mHPdxr0A8JEdVwZEmeOwZJSMDHCGW5DFtSlTSJozUyUs807IQmnvbfzKZFVCK5DmkqQ==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
+ '@radix-ui/react-id@1.1.2':
+ resolution: {integrity: sha512-orBC88futVpqCmhX1p4cvquNHsELQ+w+vBJnuj3ftETI5bJb0bZn3Tqu3SWN2IOcPycTnMGnhwoermvISt72sA==}
+ peerDependencies:
+ '@types/react': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
+ '@radix-ui/react-label@2.1.11':
+ resolution: {integrity: sha512-3PKvDDxOn62k0oV1n4QtNtD2vpu+zYjXR7ojLBPaO6SPvhy53yg0vAmgNeBQeJW5rV3dffoRG+HYfLBZuzw0CQ==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
+ '@radix-ui/react-menu@2.1.20':
+ resolution: {integrity: sha512-VsUrXxFe9d2ScbZF0fR/oPR1+qjyeLs5p0jzG8h90puMoA9bq4SirYlXbE+USRg9Q2qTeJSFNqjw2nts8jJe4w==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
+ '@radix-ui/react-popper@1.3.3':
+ resolution: {integrity: sha512-mS7dGpyjv6b+gsDjLF7e0ia1W4Im1B1hSCy2yuXlHuvnZxHKagfDaobt/KAKt27EpZMit2pss8eJBVyVjEWM+g==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
+ '@radix-ui/react-portal@1.1.12':
+ resolution: {integrity: sha512-m309havGzsjLHHaIX50G5PlvRs3xkgPCsGk/5PTvYm8D5q33yG0J7w/712PTOhid7NTaFETtnSXjngHQavvhVw==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
+ '@radix-ui/react-portal@1.1.13':
+ resolution: {integrity: sha512-z3oXfmaHLJTF1wktbjgD6cn9jiEbq3WSondB10LIuIt2m2Ym4iJlrW04/euMwENDdWDdE7z+OuY7Qyp1YpRSwA==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
+ '@radix-ui/react-presence@1.1.6':
+ resolution: {integrity: sha512-zdTk4PlUO0E18HnZ3wYbW0KkJJxWCdiNYp6g6X1PtONFhxVkg01vliTJAmwIszU6mHiyBOoW9P0rAugl5/hULQ==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
+ '@radix-ui/react-presence@1.1.7':
+ resolution: {integrity: sha512-zBZ4QM5XG3JRanDmqXYf3MD6th4AFXFmgU6KNMFzUaV6F3uw9I5/zjMUvFriSEn5ewo1nxuibvyxJdmLlDcslA==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
+ '@radix-ui/react-primitive@2.1.6':
+ resolution: {integrity: sha512-wetd0QI77DbvrPpTAvH1SqOxsYF2wZe5TNxqwOd5Ty4XDpV3dpV0s8K/1MGMJBeY5o7lg8ub5VIt1Ub+yVen6g==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
+ '@radix-ui/react-primitive@2.1.7':
+ resolution: {integrity: sha512-bC3NiwsprbxKjuon9l7X6BUTw7FPVzEYaL92MPEY5SCd/9hUTPXVFtVwRix7778wtRsVao+zE062gL79FZleeQ==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
+ '@radix-ui/react-progress@1.1.12':
+ resolution: {integrity: sha512-ZPHyI0JyzoH/rP0tq2uRaIZTj/4s8+kAbqPz+e2N8+ejHvwPJ889dHhqn+vh7PNvNeq+boAoH9yzqeoShzwF2w==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
+ '@radix-ui/react-roving-focus@1.1.15':
+ resolution: {integrity: sha512-40svmmugfM3mUN7VUDGVE1tQGOhyi8enlGD0CNJEcMM36C1f71PKM21DFgNHUfem0XnA+d8H8oN3Z9ZpJjSslg==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
+ '@radix-ui/react-separator@1.1.11':
+ resolution: {integrity: sha512-jRhe86+8PF7VZ1u14eOWVOuh2BuAhALg/FT1VcMC4OHedMTRUazDnDlKTt+yxo5cRNKHMfmvZ4sSQtWDeMV4CQ==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
+ '@radix-ui/react-slider@1.4.1':
+ resolution: {integrity: sha512-r91WSpQucNGFKAIxT8FT0H0zyjd5tJlqObLp7LOMV4z49KoDCwjy01w3vDOU4e1wxhF9IgjYco7SB6byOW7Buw==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
+ '@radix-ui/react-slot@1.3.0':
+ resolution: {integrity: sha512-MojKku4U/miO8Av4Dkb+ctMAQx7JmY96LmtDQlAarCRtd7rN52QCSzBF+XAvr5S6coSVj9HEPBgHAHKEJVk/WA==}
+ peerDependencies:
+ '@types/react': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
+ '@radix-ui/react-use-callback-ref@1.1.2':
+ resolution: {integrity: sha512-xCso9j1/u8sEgP1RNHjFrXJLApL8LiqOkI1R4ywuN00rxWdYg4oQXuwKLS3i0j5NWLromUD27/4nlxj2UFVvIw==}
+ peerDependencies:
+ '@types/react': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
+ '@radix-ui/react-use-controllable-state@1.2.3':
+ resolution: {integrity: sha512-PLzC90MS+ReootmjC597dvopoelpZ8Q61HJkDXZSExitIq7PL55vHNnesAHwguHK0aPfBnpdNzQtv1uliaqQrA==}
+ peerDependencies:
+ '@types/react': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
+ '@radix-ui/react-use-effect-event@0.0.3':
+ resolution: {integrity: sha512-6c8ZqvPTWILEKnyVkP53EGRCcpnJiKTC21sS/6R1GF5xKyHJJWQEPfkqlcgUkdRQivd6tb23abUwe4ngWmY0JA==}
+ peerDependencies:
+ '@types/react': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
+ '@radix-ui/react-use-escape-keydown@1.1.2':
+ resolution: {integrity: sha512-2uVLvLjgO7NZCWw01/FdqRwmA42J0BcjPMUCA+koFEOAb+zjqIP7SiFz/7zWPrKnVmSqr76Omq2ALyCuX4dhLw==}
+ peerDependencies:
+ '@types/react': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
+ '@radix-ui/react-use-is-hydrated@0.1.1':
+ resolution: {integrity: sha512-qwOiz4Tjo8CNnrOLAYUMXeZwDzXgXpvK4TKQPmWLECM9XoWvA6+0Z2/7Ag3A4ivjS4ovbLJPbskkxioFyBhr8A==}
+ peerDependencies:
+ '@types/react': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
+ '@radix-ui/react-use-layout-effect@1.1.2':
+ resolution: {integrity: sha512-jrBWOxZITuGcnjRCM2t2U5ZPkCLxD+Ym6DjfssS5haTj2iiak/DOb64JeN6OdLfLgptb6/e2kKR+ZuTrGoZTPA==}
+ peerDependencies:
+ '@types/react': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
+ '@radix-ui/react-use-previous@1.1.2':
+ resolution: {integrity: sha512-IGBQPtRFdhN6MQ8dbegVmBq1LVZluya3F1jWY+puIcQC3MHctRwTDSBWCkL/3ZcnMJLTMJ++Z+ktmvg0F89iCw==}
+ peerDependencies:
+ '@types/react': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
+ '@radix-ui/react-use-rect@1.1.2':
+ resolution: {integrity: sha512-d8a+bBY/FxikNPlgJJoaBHZX+zKVbWHYJGTLnLvveQgFSTntkGdEKv3JDtHrMS0DNYpllz2nRsTLGLKYttbpmw==}
+ peerDependencies:
+ '@types/react': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
+ '@radix-ui/react-use-size@1.1.2':
+ resolution: {integrity: sha512-giWQp+4mxjBPt4KZ0MmyuykFNWfbDxKt4x+fPkRYmgRFJSbCZFzUglvMb/Kjn38tm10YP4ufiQZDx3zna4LU6w==}
+ peerDependencies:
+ '@types/react': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
+ '@radix-ui/react-visually-hidden@1.2.6':
+ resolution: {integrity: sha512-jCE0WljWifTI4niIMCll06kGpsJTAPiZVU9H4WR1N6qW7At9ystHbN7dDB+we2xH535roFHj7qKS+RGj0FMDWQ==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
+ '@radix-ui/rect@1.1.2':
+ resolution: {integrity: sha512-xnXE7wG13PI+cxieVssYXlQJuYVRhH9NBoxt3KNwzghDIA69GMm7d4wXRouHIYjE+KvS6U/MsMO73NdS2MH9ZA==}
+
+ '@react-spring/animated@10.1.2':
+ resolution: {integrity: sha512-yAsQ/bbp6+vko7WNCI1M00c6KLE9XKTGCrgRhQqS4JcK3oF5qBV4rHYrQEprvEvYXxt+1H5FsLS2eVValEPfFw==}
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
+
+ '@react-spring/core@10.1.2':
+ resolution: {integrity: sha512-lPGOAg0V+PV3ucopOajD+YCxoe8twALqAeG4c/+sqVjBsyUNNdx8qfz/DcNSPKA8PV3+AyQELlCxlDfap9cmBQ==}
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
+
+ '@react-spring/rafz@10.1.2':
+ resolution: {integrity: sha512-KC6vSFZyPnRJ2rXqipV9QqR4SaYbYXjvKfdYKWipNK2mWuV79gr20WmpVUOsTiEHGRY3WSOdWCHN+P9Pdaqb7Q==}
+
+ '@react-spring/shared@10.1.2':
+ resolution: {integrity: sha512-47/8bNQ/o0uEmxEnPBuERlC29VSqiTn5P9ln9tUMSVkYKYxBtouYE686F5kAGj+eHRPoNCw7drxWE9nv2d1LMw==}
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
+
+ '@react-spring/types@10.1.2':
+ resolution: {integrity: sha512-G4CWowmVPz+rDG1y9QRVq/prZNxiNwQaHC0kgT/MgY6jAGgdRgTV4VThpvJDwWvUitk3xZB4soP4d36fjeQ09g==}
+
+ '@react-spring/web@10.1.2':
+ resolution: {integrity: sha512-KxDB3zaDqy9qFsu7fdxjyraAxweHH4k5TW5WGT/OuMK6hKaxSDfhrQfRBzfFaSVvMBf+NghbJFanllV4ia6i7A==}
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
+ react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
+
+ '@rolldown/binding-android-arm64@1.1.3':
+ resolution: {integrity: sha512-DT6Z3PhvioeHMvxo+xHc3KtqggrI7CCTXCmC2h/5zUlp5jVitv7XEy+9q5/7v8IolhlioawpMo8Kg0EEBy7J0g==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [arm64]
+ os: [android]
+
+ '@rolldown/binding-darwin-arm64@1.1.3':
+ resolution: {integrity: sha512-0NwgwsjM7LrsuVnXMK3koTpagBNOhloc/BNjKqZjv4V5zI5r13qx69uVhRx+o5Z0yy4Hzq+lpy7TAgUG/ocvrw==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [arm64]
+ os: [darwin]
+
+ '@rolldown/binding-darwin-x64@1.1.3':
+ resolution: {integrity: sha512-YtiBp4disu6V560loT6PjMdiRaWmVvDNrUunAalbiFx2ggeJwxdAsgZMcoGP17uyAsTwAj5V1niksxlHnVQ1Sw==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [x64]
+ os: [darwin]
+
+ '@rolldown/binding-freebsd-x64@1.1.3':
+ resolution: {integrity: sha512-yD3EkEdXk2LypPxnf/kSZHirarsI8gcPzc62SukhR9VJTyvV+F9Q/GxWNuCojc7sXyuVC4DxRGhdDK4X8VSsbw==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [x64]
+ os: [freebsd]
+
+ '@rolldown/binding-linux-arm-gnueabihf@1.1.3':
+ resolution: {integrity: sha512-c+8vieQbsD7HNAHKIA34w0GJ9FedFFuJGD+7E6vz7Q3uqAIugL5p45fhlsj4UaAsHpcmlqugBWMhA0/j7o0sIg==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [arm]
+ os: [linux]
+
+ '@rolldown/binding-linux-arm64-gnu@1.1.3':
+ resolution: {integrity: sha512-50jD0uUwLvur7Zz9LHz17kaAdTPjn5wN93hEgjvmYFRZwiR7ZJYovTd5ipyWJDAnXKvZ+wgc+/Ika6dwSF5OcA==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [arm64]
+ os: [linux]
+ libc: [glibc]
+
+ '@rolldown/binding-linux-arm64-musl@1.1.3':
+ resolution: {integrity: sha512-BO9+oPL8K9poZJBfYPsXNtYjPE5uM3qeehT3aFcW4LITOl+iSqhp0abzjR2nWBUNjIZeKXjAEWBZ64WjNoHd6w==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [arm64]
+ os: [linux]
+ libc: [musl]
+
+ '@rolldown/binding-linux-ppc64-gnu@1.1.3':
+ resolution: {integrity: sha512-f3VpLB1vQ0Eo6ecr/6cekLnvYMFF4YBFoVGkfkvPLq1bAkbAwHYQPZKoAmG6OJyTcxxoC+AvezGx/S1obNC0Mw==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [ppc64]
+ os: [linux]
+ libc: [glibc]
+
+ '@rolldown/binding-linux-s390x-gnu@1.1.3':
+ resolution: {integrity: sha512-AmurZ26Pqx/RI9N1gzEOCklkKXl927yjfXWUUS0O7Puh8ARM/Ob8qfrD3qnWksScdw6cSrW5PSHE9DyLu7+PtA==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [s390x]
+ os: [linux]
+ libc: [glibc]
+
+ '@rolldown/binding-linux-x64-gnu@1.1.3':
+ resolution: {integrity: sha512-JJpqs8bRGITDOdbkNKnlojzBabbOHrqjSvDr0IVsZObE1lBcPjxItUEY9eWIDbxaJ3cGrXPWGfGkIxFijg/URg==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [x64]
+ os: [linux]
+ libc: [glibc]
+
+ '@rolldown/binding-linux-x64-musl@1.1.3':
+ resolution: {integrity: sha512-rSJcdjPxzA/by/6/rYs+v+bXU7UjvnbUWz8MJb6kh6+knqB1dCrtHg0uu7C/4haqJvqdkYHQ5IGn+tCH9GLW/g==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [x64]
+ os: [linux]
+ libc: [musl]
+
+ '@rolldown/binding-openharmony-arm64@1.1.3':
+ resolution: {integrity: sha512-hQ3/PYkDJICgevvyNcVrihVeqq7k1Pp3VZ9lY+dauAYUJKO+auqApvANhvR1An9BhmqYKvW2Mu1F9u4DXSMLxQ==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [arm64]
+ os: [openharmony]
+
+ '@rolldown/binding-wasm32-wasi@1.1.3':
+ resolution: {integrity: sha512-Elcv/BtML9lXrV6JuKITc/grN2kYV9gjsQpW8Jfw4ioK0TOkjBjye0nnyqQNy9STNaI20lXNaQBRrD5gSgR0Yg==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [wasm32]
+
+ '@rolldown/binding-win32-arm64-msvc@1.1.3':
+ resolution: {integrity: sha512-2DrEfhluH9yhiaFApmsjsjwrSYbNcY1oFTzYSP1a535jDbV98zCFanA/96TBUd0iDFcxGmw9QRExwGCXz3U+/g==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [arm64]
+ os: [win32]
+
+ '@rolldown/binding-win32-x64-msvc@1.1.3':
+ resolution: {integrity: sha512-OL4OMk7UPXOeVGGd3qo5zJyPIljf4AFgk5QAkPPS+OoLuOOozhuaQGC18MxVTnw/06q93gShAJzlwnSCY9YtqA==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [x64]
+ os: [win32]
+
+ '@rolldown/pluginutils@1.0.1':
+ resolution: {integrity: sha512-2j9bGt5Jh8hj+vPtgzPtl72j0yRxHAyumoo6TNfAjsLB04UtpSvPbPcDcBMxz7n+9CYB0c1GxQFxYRg2jimqGw==}
+
+ '@rollup/plugin-inject@5.0.5':
+ resolution: {integrity: sha512-2+DEJbNBoPROPkgTDNe8/1YXWcqxbN5DTjASVIOx8HS+pITXushyNiBV56RB08zuptzz8gT3YfkqriTBVycepg==}
+ engines: {node: '>=14.0.0'}
+ peerDependencies:
+ rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0
+ peerDependenciesMeta:
+ rollup:
+ optional: true
+
+ '@rollup/pluginutils@4.2.1':
+ resolution: {integrity: sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ==}
+ engines: {node: '>= 8.0.0'}
+
+ '@rollup/pluginutils@5.3.0':
+ resolution: {integrity: sha512-5EdhGZtnu3V88ces7s53hhfK5KSASnJZv8Lulpc04cWO3REESroJXg73DFsOmgbU2BhwV0E20bu2IDZb3VKW4Q==}
+ engines: {node: '>=14.0.0'}
+ peerDependencies:
+ rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0
+ peerDependenciesMeta:
+ rollup:
+ optional: true
+
+ '@rollup/pluginutils@5.4.0':
+ resolution: {integrity: sha512-MfPp06CjRLfXQ3wY0R8vJDYBy/MvVcc9OulEfR0B8Iv9ko+GCNaRZ+EpJYFl27LhKsZK0o420sYCRHCjfCgeUg==}
+ engines: {node: '>=14.0.0'}
+ peerDependencies:
+ rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0
+ peerDependenciesMeta:
+ rollup:
+ optional: true
+
+ '@rollup/rollup-android-arm-eabi@4.60.1':
+ resolution: {integrity: sha512-d6FinEBLdIiK+1uACUttJKfgZREXrF0Qc2SmLII7W2AD8FfiZ9Wjd+rD/iRuf5s5dWrr1GgwXCvPqOuDquOowA==}
+ cpu: [arm]
+ os: [android]
+
+ '@rollup/rollup-android-arm64@4.60.1':
+ resolution: {integrity: sha512-YjG/EwIDvvYI1YvYbHvDz/BYHtkY4ygUIXHnTdLhG+hKIQFBiosfWiACWortsKPKU/+dUwQQCKQM3qrDe8c9BA==}
+ cpu: [arm64]
+ os: [android]
+
+ '@rollup/rollup-darwin-arm64@4.60.1':
+ resolution: {integrity: sha512-mjCpF7GmkRtSJwon+Rq1N8+pI+8l7w5g9Z3vWj4T7abguC4Czwi3Yu/pFaLvA3TTeMVjnu3ctigusqWUfjZzvw==}
+ cpu: [arm64]
+ os: [darwin]
+
+ '@rollup/rollup-darwin-x64@4.60.1':
+ resolution: {integrity: sha512-haZ7hJ1JT4e9hqkoT9R/19XW2QKqjfJVv+i5AGg57S+nLk9lQnJ1F/eZloRO3o9Scy9CM3wQ9l+dkXtcBgN5Ew==}
+ cpu: [x64]
+ os: [darwin]
+
+ '@rollup/rollup-freebsd-arm64@4.60.1':
+ resolution: {integrity: sha512-czw90wpQq3ZsAVBlinZjAYTKduOjTywlG7fEeWKUA7oCmpA8xdTkxZZlwNJKWqILlq0wehoZcJYfBvOyhPTQ6w==}
+ cpu: [arm64]
+ os: [freebsd]
+
+ '@rollup/rollup-freebsd-x64@4.60.1':
+ resolution: {integrity: sha512-KVB2rqsxTHuBtfOeySEyzEOB7ltlB/ux38iu2rBQzkjbwRVlkhAGIEDiiYnO2kFOkJp+Z7pUXKyrRRFuFUKt+g==}
+ cpu: [x64]
+ os: [freebsd]
+
+ '@rollup/rollup-linux-arm-gnueabihf@4.60.1':
+ resolution: {integrity: sha512-L+34Qqil+v5uC0zEubW7uByo78WOCIrBvci69E7sFASRl0X7b/MB6Cqd1lky/CtcSVTydWa2WZwFuWexjS5o6g==}
+ cpu: [arm]
+ os: [linux]
+ libc: [glibc]
+
+ '@rollup/rollup-linux-arm-musleabihf@4.60.1':
+ resolution: {integrity: sha512-n83O8rt4v34hgFzlkb1ycniJh7IR5RCIqt6mz1VRJD6pmhRi0CXdmfnLu9dIUS6buzh60IvACM842Ffb3xd6Gg==}
+ cpu: [arm]
+ os: [linux]
+ libc: [musl]
+
+ '@rollup/rollup-linux-arm64-gnu@4.60.1':
+ resolution: {integrity: sha512-Nql7sTeAzhTAja3QXeAI48+/+GjBJ+QmAH13snn0AJSNL50JsDqotyudHyMbO2RbJkskbMbFJfIJKWA6R1LCJQ==}
+ cpu: [arm64]
+ os: [linux]
+ libc: [glibc]
+
+ '@rollup/rollup-linux-arm64-musl@4.60.1':
+ resolution: {integrity: sha512-+pUymDhd0ys9GcKZPPWlFiZ67sTWV5UU6zOJat02M1+PiuSGDziyRuI/pPue3hoUwm2uGfxdL+trT6Z9rxnlMA==}
+ cpu: [arm64]
+ os: [linux]
+ libc: [musl]
+
+ '@rollup/rollup-linux-loong64-gnu@4.60.1':
+ resolution: {integrity: sha512-VSvgvQeIcsEvY4bKDHEDWcpW4Yw7BtlKG1GUT4FzBUlEKQK0rWHYBqQt6Fm2taXS+1bXvJT6kICu5ZwqKCnvlQ==}
+ cpu: [loong64]
+ os: [linux]
+ libc: [glibc]
+
+ '@rollup/rollup-linux-loong64-musl@4.60.1':
+ resolution: {integrity: sha512-4LqhUomJqwe641gsPp6xLfhqWMbQV04KtPp7/dIp0nzPxAkNY1AbwL5W0MQpcalLYk07vaW9Kp1PBhdpZYYcEw==}
+ cpu: [loong64]
+ os: [linux]
+ libc: [musl]
+
+ '@rollup/rollup-linux-ppc64-gnu@4.60.1':
+ resolution: {integrity: sha512-tLQQ9aPvkBxOc/EUT6j3pyeMD6Hb8QF2BTBnCQWP/uu1lhc9AIrIjKnLYMEroIz/JvtGYgI9dF3AxHZNaEH0rw==}
+ cpu: [ppc64]
+ os: [linux]
+ libc: [glibc]
+
+ '@rollup/rollup-linux-ppc64-musl@4.60.1':
+ resolution: {integrity: sha512-RMxFhJwc9fSXP6PqmAz4cbv3kAyvD1etJFjTx4ONqFP9DkTkXsAMU4v3Vyc5BgzC+anz7nS/9tp4obsKfqkDHg==}
+ cpu: [ppc64]
+ os: [linux]
+ libc: [musl]
+
+ '@rollup/rollup-linux-riscv64-gnu@4.60.1':
+ resolution: {integrity: sha512-QKgFl+Yc1eEk6MmOBfRHYF6lTxiiiV3/z/BRrbSiW2I7AFTXoBFvdMEyglohPj//2mZS4hDOqeB0H1ACh3sBbg==}
+ cpu: [riscv64]
+ os: [linux]
+ libc: [glibc]
+
+ '@rollup/rollup-linux-riscv64-musl@4.60.1':
+ resolution: {integrity: sha512-RAjXjP/8c6ZtzatZcA1RaQr6O1TRhzC+adn8YZDnChliZHviqIjmvFwHcxi4JKPSDAt6Uhf/7vqcBzQJy0PDJg==}
+ cpu: [riscv64]
+ os: [linux]
+ libc: [musl]
+
+ '@rollup/rollup-linux-s390x-gnu@4.60.1':
+ resolution: {integrity: sha512-wcuocpaOlaL1COBYiA89O6yfjlp3RwKDeTIA0hM7OpmhR1Bjo9j31G1uQVpDlTvwxGn2nQs65fBFL5UFd76FcQ==}
+ cpu: [s390x]
+ os: [linux]
+ libc: [glibc]
+
+ '@rollup/rollup-linux-x64-gnu@4.60.1':
+ resolution: {integrity: sha512-77PpsFQUCOiZR9+LQEFg9GClyfkNXj1MP6wRnzYs0EeWbPcHs02AXu4xuUbM1zhwn3wqaizle3AEYg5aeoohhg==}
+ cpu: [x64]
+ os: [linux]
+ libc: [glibc]
+
+ '@rollup/rollup-linux-x64-musl@4.60.1':
+ resolution: {integrity: sha512-5cIATbk5vynAjqqmyBjlciMJl1+R/CwX9oLk/EyiFXDWd95KpHdrOJT//rnUl4cUcskrd0jCCw3wpZnhIHdD9w==}
+ cpu: [x64]
+ os: [linux]
+ libc: [musl]
+
+ '@rollup/rollup-openbsd-x64@4.60.1':
+ resolution: {integrity: sha512-cl0w09WsCi17mcmWqqglez9Gk8isgeWvoUZ3WiJFYSR3zjBQc2J5/ihSjpl+VLjPqjQ/1hJRcqBfLjssREQILw==}
+ cpu: [x64]
+ os: [openbsd]
+
+ '@rollup/rollup-openharmony-arm64@4.60.1':
+ resolution: {integrity: sha512-4Cv23ZrONRbNtbZa37mLSueXUCtN7MXccChtKpUnQNgF010rjrjfHx3QxkS2PI7LqGT5xXyYs1a7LbzAwT0iCA==}
+ cpu: [arm64]
+ os: [openharmony]
+
+ '@rollup/rollup-win32-arm64-msvc@4.60.1':
+ resolution: {integrity: sha512-i1okWYkA4FJICtr7KpYzFpRTHgy5jdDbZiWfvny21iIKky5YExiDXP+zbXzm3dUcFpkEeYNHgQ5fuG236JPq0g==}
+ cpu: [arm64]
+ os: [win32]
+
+ '@rollup/rollup-win32-ia32-msvc@4.60.1':
+ resolution: {integrity: sha512-u09m3CuwLzShA0EYKMNiFgcjjzwqtUMLmuCJLeZWjjOYA3IT2Di09KaxGBTP9xVztWyIWjVdsB2E9goMjZvTQg==}
+ cpu: [ia32]
+ os: [win32]
+
+ '@rollup/rollup-win32-x64-gnu@4.60.1':
+ resolution: {integrity: sha512-k+600V9Zl1CM7eZxJgMyTUzmrmhB/0XZnF4pRypKAlAgxmedUA+1v9R+XOFv56W4SlHEzfeMtzujLJD22Uz5zg==}
+ cpu: [x64]
+ os: [win32]
+
+ '@rollup/rollup-win32-x64-msvc@4.60.1':
+ resolution: {integrity: sha512-lWMnixq/QzxyhTV6NjQJ4SFo1J6PvOX8vUx5Wb4bBPsEb+8xZ89Bz6kOXpfXj9ak9AHTQVQzlgzBEc1SyM27xQ==}
+ cpu: [x64]
+ os: [win32]
+
+ '@sec-ant/readable-stream@0.4.1':
+ resolution: {integrity: sha512-831qok9r2t8AlxLko40y2ebgSDhenenCatLVeW/uBtnHPyhHOvG0C7TvfgecV+wHzIm5KUICgzmVpWS+IMEAeg==}
+
+ '@sentry-internal/browser-utils@8.55.2':
+ resolution: {integrity: sha512-GnKod+gL/Y+1FUM/RGV8q6le1CoyiGbT40MitEK7eVwWe+bfTRq1gN7ioupyHFMUg1RlQkDQ4/sENmio/uow5A==}
+ engines: {node: '>=14.18'}
+
+ '@sentry-internal/feedback@8.55.2':
+ resolution: {integrity: sha512-XQy//NWbL0mLLM5w8wNDWMNpXz39VUyW2397dUrH8++kR63WhUVAvTOtL0o0GMVadSAzl1b08oHP9zSUNFQwcg==}
+ engines: {node: '>=14.18'}
+
+ '@sentry-internal/replay-canvas@8.55.2':
+ resolution: {integrity: sha512-P/jGiuR7dRLG9IzD/463fLgiibyYceauav/9prRG0ZxJm1AtuO02OKball2Fs3bbzdzwHCTlcsUuL2ivDF4b5A==}
+ engines: {node: '>=14.18'}
+
+ '@sentry-internal/replay@8.55.2':
+ resolution: {integrity: sha512-+W43Z697EVe/OgpGW07B773sa8xO1UbpnW0Cr+E+3FMDb6ZbXlaBUoagPTUkkQPdwBe35SDh6r8y2M3EOPGbxg==}
+ engines: {node: '>=14.18'}
+
+ '@sentry/babel-plugin-component-annotate@3.6.1':
+ resolution: {integrity: sha512-zmvUa4RpzDG3LQJFpGCE8lniz8Rk1Wa6ZvvK+yEH+snZeaHHRbSnAQBMR607GOClP+euGHNO2YtaY4UAdNTYbg==}
+ engines: {node: '>= 14'}
+
+ '@sentry/browser@8.55.2':
+ resolution: {integrity: sha512-xHuPIEKhx9zw5quWvv4YgZprnwoVMCfxIhmOIf6KJ9iizyUHeUDcKpLS59xERroqwX4RpvK+l/27AZu4zfZlzQ==}
+ engines: {node: '>=14.18'}
+
+ '@sentry/bundler-plugin-core@3.6.1':
+ resolution: {integrity: sha512-/ubWjPwgLep84sUPzHfKL2Ns9mK9aQrEX4aBFztru7ygiJidKJTxYGtvjh4dL2M1aZ0WRQYp+7PF6+VKwdZXcQ==}
+ engines: {node: '>= 14'}
+
+ '@sentry/cli-darwin@2.58.5':
+ resolution: {integrity: sha512-lYrNzenZFJftfwSya7gwrHGxtE+Kob/e1sr9lmHMFOd4utDlmq0XFDllmdZAMf21fxcPRI1GL28ejZ3bId01fQ==}
+ engines: {node: '>=10'}
+ os: [darwin]
+
+ '@sentry/cli-linux-arm64@2.58.5':
+ resolution: {integrity: sha512-/4gywFeBqRB6tR/iGMRAJ3HRqY6Z7Yp4l8ZCbl0TDLAfHNxu7schEw4tSnm2/Hh9eNMiOVy4z58uzAWlZXAYBQ==}
+ engines: {node: '>=10'}
+ cpu: [arm64]
+ os: [linux, freebsd, android]
+
+ '@sentry/cli-linux-arm@2.58.5':
+ resolution: {integrity: sha512-KtHweSIomYL4WVDrBrYSYJricKAAzxUgX86kc6OnlikbyOhoK6Fy8Vs6vwd52P6dvWPjgrMpUYjW2M5pYXQDUw==}
+ engines: {node: '>=10'}
+ cpu: [arm]
+ os: [linux, freebsd, android]
+
+ '@sentry/cli-linux-i686@2.58.5':
+ resolution: {integrity: sha512-G7261dkmyxqlMdyvyP06b+RTIVzp1gZNgglj5UksxSouSUqRd/46W/2pQeOMPhloDYo9yLtCN2YFb3Mw4aUsWw==}
+ engines: {node: '>=10'}
+ cpu: [x86, ia32]
+ os: [linux, freebsd, android]
+
+ '@sentry/cli-linux-x64@2.58.5':
+ resolution: {integrity: sha512-rP04494RSmt86xChkQ+ecBNRYSPbyXc4u0IA7R7N1pSLCyO74e5w5Al+LnAq35cMfVbZgz5Sm0iGLjyiUu4I1g==}
+ engines: {node: '>=10'}
+ cpu: [x64]
+ os: [linux, freebsd, android]
+
+ '@sentry/cli-win32-arm64@2.58.5':
+ resolution: {integrity: sha512-AOJ2nCXlQL1KBaCzv38m3i2VmSHNurUpm7xVKd6yAHX+ZoVBI8VT0EgvwmtJR2TY2N2hNCC7UrgRmdUsQ152bA==}
+ engines: {node: '>=10'}
+ cpu: [arm64]
+ os: [win32]
+
+ '@sentry/cli-win32-i686@2.58.5':
+ resolution: {integrity: sha512-EsuboLSOnlrN7MMPJ1eFvfMDm+BnzOaSWl8eYhNo8W/BIrmNgpRUdBwnWn9Q2UOjJj5ZopukmsiMYtU/D7ml9g==}
+ engines: {node: '>=10'}
+ cpu: [x86, ia32]
+ os: [win32]
+
+ '@sentry/cli-win32-x64@2.58.5':
+ resolution: {integrity: sha512-IZf+XIMiQwj+5NzqbOQfywlOitmCV424Vtf9c+ep61AaVScUFD1TSrQbOcJJv5xGxhlxNOMNgMeZhdexdzrKZg==}
+ engines: {node: '>=10'}
+ cpu: [x64]
+ os: [win32]
+
+ '@sentry/cli@2.58.5':
+ resolution: {integrity: sha512-tavJ7yGUZV+z3Ct2/ZB6mg339i08sAk6HDkgqmSRuQEu2iLS5sl9HIvuXfM6xjv8fwlgFOSy++WNABNAcGHUbg==}
+ engines: {node: '>= 10'}
+ hasBin: true
+
+ '@sentry/core@8.55.2':
+ resolution: {integrity: sha512-YlEBwybUcOQ/KjMHDmof1vwweVnBtBxYlQp7DE3fOdtW4pqqdHWTnTntQs4VgYfxzjJYgtkd9LHlGtg8qy+JVQ==}
+ engines: {node: '>=14.18'}
+
+ '@sentry/react@8.55.2':
+ resolution: {integrity: sha512-1TPfKZYkJal2Dyt2W0tf1roOZmu7sqr6/dTqjdsuu2WgGTilMEreK26YqB8ROOYdMjkVJpNCcIKXQHyMp2eCwA==}
+ engines: {node: '>=14.18'}
+ peerDependencies:
+ react: ^16.14.0 || 17.x || 18.x || 19.x
+
+ '@sentry/vite-plugin@3.6.1':
+ resolution: {integrity: sha512-x8WMdv2K2HcGS2ezEUIEZXpT/fNeWQ9rsEeF0K9DfKXK8Z9lzRmCr6TVA6I9+yW39Is+1/0cv1Rsu0LhO7lHzg==}
+ engines: {node: '>= 14'}
+
+ '@sindresorhus/merge-streams@4.0.0':
+ resolution: {integrity: sha512-tlqY9xq5ukxTUZBmoOp+m61cqwQD5pHJtFY3Mn8CA8ps6yghLH/Hw8UPdqg4OLmFW3IFlcXnQNmo/dh8HzXYIQ==}
+ engines: {node: '>=18'}
+
+ '@standard-schema/spec@1.1.0':
+ resolution: {integrity: sha512-l2aFy5jALhniG5HgqrD6jXLi/rUWrKvqN/qJx6yoJsgKhblVd+iqqU4RCXavm/jPityDo5TCvKMnpjKnOriy0w==}
+
+ '@storybook/addon-docs@10.4.6':
+ resolution: {integrity: sha512-aWAfP5JMiT5a3zBJizwroCRzOCqZwDTJmvsYvwMD3ilIEa/kT1vhf6Xrbk4XIPhDwbh8Hpb/Gfnka1xBYEISWg==}
+ peerDependencies:
+ '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
+ storybook: ^10.4.6
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
+ '@storybook/addon-vitest@10.4.6':
+ resolution: {integrity: sha512-VvskHge0GZy86LG6kcY5Ww34z8rDV8JBxqSdUpcJVsWfIvyX6MfAbqI76LlereSyBIJGZJZsqaLwRXsQoVY+0Q==}
+ peerDependencies:
+ '@vitest/browser': ^3.0.0 || ^4.0.0
+ '@vitest/browser-playwright': ^4.0.0
+ '@vitest/runner': ^3.0.0 || ^4.0.0
+ storybook: ^10.4.6
+ vitest: ^3.0.0 || ^4.0.0
+ peerDependenciesMeta:
+ '@vitest/browser':
+ optional: true
+ '@vitest/browser-playwright':
+ optional: true
+ '@vitest/runner':
+ optional: true
+ vitest:
+ optional: true
+
+ '@storybook/builder-vite@10.4.6':
+ resolution: {integrity: sha512-BHBtD81HiXUiDQz/CaFynLtWmm7AFUQn8VnXuHipZ8KlnUANopa4yqdVuy/Gwz8ub254uFI5NMZsW/KlgWNgNg==}
+ peerDependencies:
+ storybook: ^10.4.6
+ vite: ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0
+
+ '@storybook/csf-plugin@10.4.6':
+ resolution: {integrity: sha512-NILLxDqpA/JR/AazGWpsz+4fadJwRU4uhHephGtYpVOWnQA/DkJfKT6zpcJVq8+QA8A2zKMLX3GVKsXIrxjuDA==}
+ peerDependencies:
+ esbuild: ^0.28.0
+ rollup: '*'
+ storybook: ^10.4.6
+ vite: '*'
+ webpack: '*'
+ peerDependenciesMeta:
+ esbuild:
+ optional: true
+ rollup:
+ optional: true
+ vite:
+ optional: true
+ webpack:
+ optional: true
+
+ '@storybook/global@5.0.0':
+ resolution: {integrity: sha512-FcOqPAXACP0I3oJ/ws6/rrPT9WGhu915Cg8D02a9YxLo0DE9zI+a9A5gRGvmQ09fiWPukqI8ZAEoQEdWUKMQdQ==}
+
+ '@storybook/icons@2.1.0':
+ resolution: {integrity: sha512-Fxh9vYpX9bQqFeHRiY8h2ApeRGDzRSMLwJwNZ/AIRqnyOKHxRKL+yFe+ctEkVJmuptRE9u1Hrn8ZZNHyfDKKNg==}
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
+
+ '@storybook/react-dom-shim@10.4.6':
+ resolution: {integrity: sha512-iGNmKzrq9vgl2PDrYAnZKI+yvac3Ym+lJXXuQaqlFRS23zA5MNm4EBX+rAG7WulqchoK6NaZ0KQOs2mAgEpTMg==}
+ peerDependencies:
+ '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
+ '@types/react-dom': ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
+ react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
+ storybook: ^10.4.6
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
+ '@storybook/react-vite@10.4.6':
+ resolution: {integrity: sha512-0arEQtybqGYXHbXpTot+Wv9YtG+V5Vp43QayXavPKQ20M8mpEzhyCPKd0EhqMGSC1Z1UEt0hm365WUBhI9LfKA==}
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
+ react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
+ storybook: ^10.4.6
+ vite: ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0
+
+ '@storybook/react@10.4.6':
+ resolution: {integrity: sha512-9Y7YecrVFe1/01KYjfOLxVqTg2Aq+IO6TEv6sC2U0PfD0AWCSCmQ91QqgBpN/XW4aFFWoiZNinyXMUlU8zxy2w==}
+ peerDependencies:
+ '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
+ '@types/react-dom': ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
+ react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
+ storybook: ^10.4.6
+ typescript: '>= 4.9.x'
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+ typescript:
+ optional: true
+
+ '@svgr/babel-plugin-add-jsx-attribute@8.0.0':
+ resolution: {integrity: sha512-b9MIk7yhdS1pMCZM8VeNfUlSKVRhsHZNMl5O9SfaX0l0t5wjdgu4IDzGB8bpnGBBOjGST3rRFVsaaEtI4W6f7g==}
+ engines: {node: '>=14'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@svgr/babel-plugin-remove-jsx-attribute@8.0.0':
+ resolution: {integrity: sha512-BcCkm/STipKvbCl6b7QFrMh/vx00vIP63k2eM66MfHJzPr6O2U0jYEViXkHJWqXqQYjdeA9cuCl5KWmlwjDvbA==}
+ engines: {node: '>=14'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@svgr/babel-plugin-remove-jsx-empty-expression@8.0.0':
+ resolution: {integrity: sha512-5BcGCBfBxB5+XSDSWnhTThfI9jcO5f0Ai2V24gZpG+wXF14BzwxxdDb4g6trdOux0rhibGs385BeFMSmxtS3uA==}
+ engines: {node: '>=14'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@svgr/babel-plugin-replace-jsx-attribute-value@8.0.0':
+ resolution: {integrity: sha512-KVQ+PtIjb1BuYT3ht8M5KbzWBhdAjjUPdlMtpuw/VjT8coTrItWX6Qafl9+ji831JaJcu6PJNKCV0bp01lBNzQ==}
+ engines: {node: '>=14'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@svgr/babel-plugin-svg-dynamic-title@8.0.0':
+ resolution: {integrity: sha512-omNiKqwjNmOQJ2v6ge4SErBbkooV2aAWwaPFs2vUY7p7GhVkzRkJ00kILXQvRhA6miHnNpXv7MRnnSjdRjK8og==}
+ engines: {node: '>=14'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@svgr/babel-plugin-svg-em-dimensions@8.0.0':
+ resolution: {integrity: sha512-mURHYnu6Iw3UBTbhGwE/vsngtCIbHE43xCRK7kCw4t01xyGqb2Pd+WXekRRoFOBIY29ZoOhUCTEweDMdrjfi9g==}
+ engines: {node: '>=14'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@svgr/babel-plugin-transform-react-native-svg@8.1.0':
+ resolution: {integrity: sha512-Tx8T58CHo+7nwJ+EhUwx3LfdNSG9R2OKfaIXXs5soiy5HtgoAEkDay9LIimLOcG8dJQH1wPZp/cnAv6S9CrR1Q==}
+ engines: {node: '>=14'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@svgr/babel-plugin-transform-svg-component@8.0.0':
+ resolution: {integrity: sha512-DFx8xa3cZXTdb/k3kfPeaixecQLgKh5NVBMwD0AQxOzcZawK4oo1Jh9LbrcACUivsCA7TLG8eeWgrDXjTMhRmw==}
+ engines: {node: '>=12'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@svgr/babel-preset@8.1.0':
+ resolution: {integrity: sha512-7EYDbHE7MxHpv4sxvnVPngw5fuR6pw79SkcrILHJ/iMpuKySNCl5W1qcwPEpU+LgyRXOaAFgH0KhwD18wwg6ug==}
+ engines: {node: '>=14'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@svgr/core@8.1.0':
+ resolution: {integrity: sha512-8QqtOQT5ACVlmsvKOJNEaWmRPmcojMOzCz4Hs2BGG/toAp/K38LcsMRyLp349glq5AzJbCEeimEoxaX6v/fLrA==}
+ engines: {node: '>=14'}
+
+ '@svgr/hast-util-to-babel-ast@8.0.0':
+ resolution: {integrity: sha512-EbDKwO9GpfWP4jN9sGdYwPBU0kdomaPIL2Eu4YwmgP+sJeXT+L7bMwJUBnhzfH8Q2qMBqZ4fJwpCyYsAN3mt2Q==}
+ engines: {node: '>=14'}
+
+ '@svgr/plugin-jsx@8.1.0':
+ resolution: {integrity: sha512-0xiIyBsLlr8quN+WyuxooNW9RJ0Dpr8uOnH/xrCVO8GLUcwHISwj1AG0k+LFzteTkAA0GbX0kj9q6Dk70PTiPA==}
+ engines: {node: '>=14'}
+ peerDependencies:
+ '@svgr/core': '*'
+
+ '@swc/core-darwin-arm64@1.15.43':
+ resolution: {integrity: sha512-v1aVuvXdo/BHxJzco9V2xpHrvwWmhfS8t6gziY5wJxd+Z2h8AeJRnAwPD8itCDaGXVBwJ/CaKfxEzTkG0Va0OA==}
+ engines: {node: '>=10'}
+ cpu: [arm64]
+ os: [darwin]
+
+ '@swc/core-darwin-x64@1.15.43':
+ resolution: {integrity: sha512-lp3d4Lamc8dt5huYdGLSR+9hLxmfr1jb0l+4XXG2zPqZwYWRN9R0U2qYoTrggiU2RWW0oV9VbWM3kBnqIc2kdQ==}
+ engines: {node: '>=10'}
+ cpu: [x64]
+ os: [darwin]
+
+ '@swc/core-linux-arm-gnueabihf@1.15.43':
+ resolution: {integrity: sha512-JWTQQELtsG5GgphDrr/XqqmM2pDN3cZqbMS0Mrg+iTiXL3F74sn/S2IyYE/5u4h2KLkTf9qQ7dXyxsbx7YzkeA==}
+ engines: {node: '>=10'}
+ cpu: [arm]
+ os: [linux]
+
+ '@swc/core-linux-arm64-gnu@1.15.43':
+ resolution: {integrity: sha512-B4otJRdPWIsmiSBf0uG7Z/+vMWmkufjz5MmYxubwKuZazDW14Zd3symga1N62QR4RT+kEFeHEgsXfZGyn/w0hw==}
+ engines: {node: '>=10'}
+ cpu: [arm64]
+ os: [linux]
+ libc: [glibc]
+
+ '@swc/core-linux-arm64-musl@1.15.43':
+ resolution: {integrity: sha512-6zB6OnpViBxYy4tgY3v2i6AZY9fwkcHZ032UOwtwUuW1d19sdT07qF0kZe6/3UR1tUaK6jjg2rmVcUIBCEYVjQ==}
+ engines: {node: '>=10'}
+ cpu: [arm64]
+ os: [linux]
+ libc: [musl]
+
+ '@swc/core-linux-ppc64-gnu@1.15.43':
+ resolution: {integrity: sha512-coxE1ZWdB3uSDVNoEtYNrRi/1epvckZx9cTJ8ICUxTMTxGk+yvQ/Twacp3ruZSaMPGCriUjP86C37VhaT6nyRg==}
+ engines: {node: '>=10'}
+ cpu: [ppc64]
+ os: [linux]
+ libc: [glibc]
+
+ '@swc/core-linux-s390x-gnu@1.15.43':
+ resolution: {integrity: sha512-lXfLhs+LpBsD5inuYx+YDH5WsPPBQ95KPUiy8P5wq9ob9xKDZFqwNfU2QW6bGO8NqRO/H9JQomTSt5Yyh+FGfA==}
+ engines: {node: '>=10'}
+ cpu: [s390x]
+ os: [linux]
+ libc: [glibc]
+
+ '@swc/core-linux-x64-gnu@1.15.43':
+ resolution: {integrity: sha512-07XnKwTmKy8TGOZG3D9fRnLWGynxPjwQnZLVmBFbo6F+7vHYzBIOuwXEhemrChBWb6yDNZsVCcMWCPX6FDD2xg==}
+ engines: {node: '>=10'}
+ cpu: [x64]
+ os: [linux]
+ libc: [glibc]
+
+ '@swc/core-linux-x64-musl@1.15.43':
+ resolution: {integrity: sha512-TJc+bsSIaBh+hZvZ5GRtW/K1bw66TJ9vsUwvVIsZdiWxU5ObLwZvfcnZ3UpgVfMnFibRes9uriJrQNBHEEogRQ==}
+ engines: {node: '>=10'}
+ cpu: [x64]
+ os: [linux]
+ libc: [musl]
+
+ '@swc/core-win32-arm64-msvc@1.15.43':
+ resolution: {integrity: sha512-jfd7s2/bUQYkOHLs+LWQNKZdmDa8+sufKLllhpWAhVQ2GDCwsHe3vR/j+OSiItZNtkzFuaawa3+SAKz9y5gYfw==}
+ engines: {node: '>=10'}
+ cpu: [arm64]
+ os: [win32]
+
+ '@swc/core-win32-ia32-msvc@1.15.43':
+ resolution: {integrity: sha512-rLAE8JvucqEW1ZGohxPQrQWPBQeJG4+ypKbWfdlU/qmKScvCkxf9/Jxnzki1dkUQCQ7P5Enp13RlvqOlvx/32g==}
+ engines: {node: '>=10'}
+ cpu: [ia32]
+ os: [win32]
+
+ '@swc/core-win32-x64-msvc@1.15.43':
+ resolution: {integrity: sha512-h8MLDHZcfIukwQWj03rIJZx1I0E81AYj2X7J/nGErG4nz+QAv6G1Z+peotvinL3lqpbo32tLYSMFo32/ySzxKg==}
+ engines: {node: '>=10'}
+ cpu: [x64]
+ os: [win32]
+
+ '@swc/core@1.15.43':
+ resolution: {integrity: sha512-1CuKjFkPxIgGdeHVuNbkxmBxkcbdc08u0aiI43pFq6yY1tTVKmXT9hFEooyyKs/sJ3xf1GPHyEwTtk9Xl8dvQw==}
+ engines: {node: '>=10'}
+ peerDependencies:
+ '@swc/helpers': '>=0.5.17'
+ peerDependenciesMeta:
+ '@swc/helpers':
+ optional: true
+
+ '@swc/counter@0.1.3':
+ resolution: {integrity: sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ==}
+
+ '@swc/types@0.1.27':
+ resolution: {integrity: sha512-K6h3iUlqeM946U4sXFYeahefR1YBbXJvko+hv8WS8/0BNJ4OHiHRywMnQUJCqkR7Y9+hqQ1TvEpiKqUhz7NEFg==}
+
+ '@testing-library/dom@10.4.1':
+ resolution: {integrity: sha512-o4PXJQidqJl82ckFaXUeoAW+XysPLauYI43Abki5hABd853iMhitooc6znOnczgbTYmEP6U6/y1ZyKAIsvMKGg==}
+ engines: {node: '>=18'}
+
+ '@testing-library/jest-dom@6.9.1':
+ resolution: {integrity: sha512-zIcONa+hVtVSSep9UT3jZ5rizo2BsxgyDYU7WFD5eICBE7no3881HGeb/QkGfsJs6JTkY1aQhT7rIPC7e+0nnA==}
+ engines: {node: '>=14', npm: '>=6', yarn: '>=1'}
+
+ '@testing-library/react@16.3.2':
+ resolution: {integrity: sha512-XU5/SytQM+ykqMnAnvB2umaJNIOsLF3PVv//1Ew4CTcpz0/BRyy/af40qqrt7SjKpDdT1saBMc42CUok5gaw+g==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ '@testing-library/dom': ^10.0.0
+ '@types/react': ^18.0.0 || ^19.0.0
+ '@types/react-dom': ^18.0.0 || ^19.0.0
+ react: ^18.0.0 || ^19.0.0
+ react-dom: ^18.0.0 || ^19.0.0
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
+ '@testing-library/user-event@14.6.1':
+ resolution: {integrity: sha512-vq7fv0rnt+QTXgPxr5Hjc210p6YKq2kmdziLgnsZGgLJ9e6VAShx1pACLuRjd/AS/sr7phAR58OIIpf0LlmQNw==}
+ engines: {node: '>=12', npm: '>=6'}
+ peerDependencies:
+ '@testing-library/dom': '>=7.21.4'
+
+ '@tybys/wasm-util@0.10.2':
+ resolution: {integrity: sha512-RoBvJ2X0wuKlWFIjrwffGw1IqZHKQqzIchKaadZZfnNpsAYp2mM0h36JtPCjNDAHGgYez/15uMBpfGwchhiMgg==}
+
+ '@tybys/wasm-util@0.10.3':
+ resolution: {integrity: sha512-F3fo1MYrRJYL3zER0OUOmkutjr1Vp23m7OsSgp7nq4SP6OqX6C/56XFIPAl5bt3zaBRjmW7SGz3u/6LwFpYcOg==}
+
+ '@types/aria-query@5.0.4':
+ resolution: {integrity: sha512-rfT93uj5s0PRL7EzccGMs3brplhcrghnDoV26NqKhCAS1hVo+WdNsPvE/yb6ilfr5hi2MEk6d5EWJTKdxg8jVw==}
+
+ '@types/babel__core@7.20.5':
+ resolution: {integrity: sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==}
+
+ '@types/babel__generator@7.27.0':
+ resolution: {integrity: sha512-ufFd2Xi92OAVPYsy+P4n7/U7e68fex0+Ee8gSG9KX7eo084CWiQ4sdxktvdl0bOPupXtVJPY19zk6EwWqUQ8lg==}
+
+ '@types/babel__template@7.4.4':
+ resolution: {integrity: sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==}
+
+ '@types/babel__traverse@7.28.0':
+ resolution: {integrity: sha512-8PvcXf70gTDZBgt9ptxJ8elBeBjcLOAcOtoO/mPJjtji1+CdGbHgm77om1GrsPxsiE+uXIpNSK64UYaIwQXd4Q==}
+
+ '@types/chai@5.2.3':
+ resolution: {integrity: sha512-Mw558oeA9fFbv65/y4mHtXDs9bPnFMZAL/jxdPFUpOHHIXX91mcgEHbS5Lahr+pwZFR8A7GQleRWeI6cGFC2UA==}
+
+ '@types/deep-eql@4.0.2':
+ resolution: {integrity: sha512-c9h9dVVMigMPc4bwTvC5dxqtqJZwQPePsWjPlpSOnojbor6pGqdk541lfA7AqFQr5pB1BRdq0juY9db81BwyFw==}
+
+ '@types/doctrine@0.0.9':
+ resolution: {integrity: sha512-eOIHzCUSH7SMfonMG1LsC2f8vxBFtho6NGBznK41R84YzPuvSBzrhEps33IsQiOW9+VL6NQ9DbjQJznk/S4uRA==}
+
+ '@types/dom-mediacapture-record@1.0.22':
+ resolution: {integrity: sha512-mUMZLK3NvwRLcAAT9qmcK+9p7tpU2FHdDsntR3YI4+GY88XrgG4XiE7u1Q2LAN2/FZOz/tdMDC3GQCR4T8nFuw==}
+
+ '@types/dom-mediacapture-transform@0.1.11':
+ resolution: {integrity: sha512-Y2p+nGf1bF2XMttBnsVPHUWzRRZzqUoJAKmiP10b5umnO6DDrWI0BrGDJy1pOHoOULVmGSfFNkQrAlC5dcj6nQ==}
+
+ '@types/dom-webcodecs@0.1.18':
+ resolution: {integrity: sha512-vAvE8C9DGWR+tkb19xyjk1TSUlJ7RUzzp4a9Anu7mwBT+fpyePWK1UxmH14tMO5zHmrnrRIMg5NutnnDztLxgg==}
+
+ '@types/eslint@9.6.1':
+ resolution: {integrity: sha512-FXx2pKgId/WyYo2jXw63kk7/+TY7u7AziEJxJAnSFzHlqTAS3Ync6SvgYAN/k4/PQpnnVuzoMuVnByKK2qp0ag==}
+
+ '@types/estree@1.0.8':
+ resolution: {integrity: sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==}
+
+ '@types/estree@1.0.9':
+ resolution: {integrity: sha512-GhdPgy1el4/ImP05X05Uw4cw2/M93BCUmnEvWZNStlCzEKME4Fkk+YpoA5OiHNQmoS7Cafb8Xa3Pya8m1Qrzeg==}
+
+ '@types/events@3.0.3':
+ resolution: {integrity: sha512-trOc4AAUThEz9hapPtSd7wf5tiQKvTtu5b371UxXdTuqzIh0ArcRspRP0i0Viu+LXstIQ1z96t1nsPxT9ol01g==}
+
+ '@types/glob-to-regexp@0.4.4':
+ resolution: {integrity: sha512-nDKoaKJYbnn1MZxUY0cA1bPmmgZbg0cTq7Rh13d0KWYNOiKbqoR+2d89SnRPszGh7ROzSwZ/GOjZ4jPbmmZ6Eg==}
+
+ '@types/grecaptcha@3.0.9':
+ resolution: {integrity: sha512-fFxMtjAvXXMYTzDFK5NpcVB7WHnrHVLl00QzEGpuFxSAC789io6M+vjcn+g5FTEamIJtJr/IHkCDsqvJxeWDyw==}
+
+ '@types/jsdom@21.1.7':
+ resolution: {integrity: sha512-yOriVnggzrnQ3a9OKOCxaVuSug3w3/SbOj5i7VwXWZEyUNl3bLF9V3MfxGbZKuwqJOQyRfqXyROBB1CoZLFWzA==}
+
+ '@types/json-schema@7.0.15':
+ resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==}
+
+ '@types/lodash-es@4.17.12':
+ resolution: {integrity: sha512-0NgftHUcV4v34VhXm8QBSftKVXtbkBG3ViCjs6+eJ5a6y6Mi/jiFGPc1sC7QK+9BFhWrURE3EOggmWaSxL9OzQ==}
+
+ '@types/lodash@4.17.24':
+ resolution: {integrity: sha512-gIW7lQLZbue7lRSWEFql49QJJWThrTFFeIMJdp3eH4tKoxm1OvEPg02rm4wCCSHS0cL3/Fizimb35b7k8atwsQ==}
+
+ '@types/mdx@2.0.14':
+ resolution: {integrity: sha512-T48PeuJtvLosNTPVhfnIp3i/n3a4g4Bad7YCq5k64D4u7NwDrAotikQ+5+sjtUvBmxCMlbo3dVL+C2dP0rWHzg==}
+
+ '@types/node@24.13.2':
+ resolution: {integrity: sha512-fRa09kZTgu8o71KFcDjUFuc7F+dEbZYZmkI0mg5YBTRs0yMKjYHsq/c0urDKeDb+D5qVgXOdFcuu+DZPKOITwA==}
+
+ '@types/pako@2.0.4':
+ resolution: {integrity: sha512-VWDCbrLeVXJM9fihYodcLiIv0ku+AlOa/TQ1SvYOaBuyrSKgEcro95LJyIsJ4vSo6BXIxOKxiJAat04CmST9Fw==}
+
+ '@types/qrcode@1.5.6':
+ resolution: {integrity: sha512-te7NQcV2BOvdj2b1hCAHzAoMNuj65kNBMz0KBaxM6c3VGBOhU0dURQKOtH8CFNI/dsKkwlv32p26qYQTWoB5bw==}
+
+ '@types/react-dom@19.2.3':
+ resolution: {integrity: sha512-jp2L/eY6fn+KgVVQAOqYItbF0VY/YApe5Mz2F0aykSO8gx31bYCZyvSeYxCHKvzHG5eZjc+zyaS5BrBWya2+kQ==}
+ peerDependencies:
+ '@types/react': ^19.2.0
+
+ '@types/react@19.2.17':
+ resolution: {integrity: sha512-MXfmqaVPEVgkBT/aY0aGCkRWWtByiYQXo3xdQ8r5RzuFrPiRn8Gar2tQdXSUQ2GKV3bkXckek89V8wQBY2Q/Aw==}
+
+ '@types/resolve@1.20.6':
+ resolution: {integrity: sha512-A4STmOXPhMUtHH+S6ymgE2GiBSMqf4oTvcQZMcHzokuTLVYzXTB8ttjcgxOVaAp2lGwEdzZ0J+cRbbeevQj1UQ==}
+
+ '@types/sdp-transform@2.15.0':
+ resolution: {integrity: sha512-ikIFF0EaYt/2XetIYYVeMj6SB52oVXFasJUXDzWHgzNJS5ep2Pbsu7f8f3Za+dEie8HQtt3Zr9mHYBpWT0XgxQ==}
+
+ '@types/tough-cookie@4.0.5':
+ resolution: {integrity: sha512-/Ad8+nIOV7Rl++6f1BdKxFSMgmoqEoYbHRpPcx3JEfv8VRsQe9Z4mCXeJBzxs7mbHY/XOZZuXlRNfhpVPbs6ZA==}
+
+ '@types/trusted-types@2.0.7':
+ resolution: {integrity: sha512-ScaPdn1dQczgbl0QFTeTOmVHFULt394XJgOQNoyVhZ6r2vLnMLJfBPd53SB52T/3G36VI1/g2MZaX0cwDuXsfw==}
+
+ '@typescript-eslint/project-service@8.62.0':
+ resolution: {integrity: sha512-wexnCqiTg7BOGtbLDftYpRWlmLq4xfoMd7BKFR6Y75sZS3QmRKLdN3yWLhmIYgqMmP/OXWpj3H8odkb5nGURCQ==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ peerDependencies:
+ typescript: '>=4.8.4 <6.1.0'
+
+ '@typescript-eslint/scope-manager@8.62.0':
+ resolution: {integrity: sha512-1lX38kNxXIRb8mEc3lbq5mdHq1Pf2+U0nFU65KfT18mtPxxl0fvjuEE92mHuXPuCtElJhOrddOpyMlM3Z0umEA==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+
+ '@typescript-eslint/tsconfig-utils@8.62.0':
+ resolution: {integrity: sha512-y2GAdB6ykaXUvuspbYnizQc4oDDz0Tz/Yc7iWrXf9mx8vm/L/0vLHCe0tS2boG96Zy+DivnVDQ9ZUEWoHqqx1g==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ peerDependencies:
+ typescript: '>=4.8.4 <6.1.0'
+
+ '@typescript-eslint/types@8.62.0':
+ resolution: {integrity: sha512-KvAclkktORPvM54TgLgA4z9HIV1M8zOgw9ZVNXl9f/8dLYfXYX1wkMXP7qmabpijQRV5bHJLOmoyGQbLMaUYeg==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+
+ '@typescript-eslint/typescript-estree@8.62.0':
+ resolution: {integrity: sha512-+hVbNxtW64pIcZWDPGbyaKF7vp2IBTVY5ma1blwwksrjdsbdqqEKvJWMGbBofei4F6Dovx1M0RJgoFeNu2279A==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ peerDependencies:
+ typescript: '>=4.8.4 <6.1.0'
+
+ '@typescript-eslint/utils@8.62.0':
+ resolution: {integrity: sha512-82r66fi9zYwZ+mTq3vKgwjbZ1PVk/DJzrXFLpG6RnBbdvH8TEGVHIs9H4d2drhkOzf0syZuD/OZvvlu6GDbP4g==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ peerDependencies:
+ eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
+ typescript: '>=4.8.4 <6.1.0'
+
+ '@typescript-eslint/visitor-keys@8.62.0':
+ resolution: {integrity: sha512-CY3uyFSRbcQv3nnSv8S0+lDftMVz6P963PoRlxrV7ew/Md564g9ut60PYzdLM5qW4jFn93GBF+Soi90ISAN+GQ==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+
+ '@ungap/structured-clone@1.3.3':
+ resolution: {integrity: sha512-60YRaenCQcVjYEKOcG824+DRGGIQ3VKErcBoAEDJZz5bKIs2ZG+X/H9Nk+Q6EVkwJk5QNApxbrc5QtBSwtrXAg==}
+
+ '@use-gesture/core@10.3.1':
+ resolution: {integrity: sha512-WcINiDt8WjqBdUXye25anHiNxPc0VOrlT8F6LLkU6cycrOGUDyY/yyFmsg3k8i5OLvv25llc0QC45GhR/C8llw==}
+
+ '@use-gesture/react@10.3.1':
+ resolution: {integrity: sha512-Yy19y6O2GJq8f7CHf7L0nxL8bf4PZCPaVOCgJrusOeFHY1LvHgYXnmnXg6N5iwAnbgbZCDjo60SiM6IPJi9C5g==}
+ peerDependencies:
+ react: '>= 16.8.0'
+
+ '@vector-im/compound-design-tokens@10.2.3':
+ resolution: {integrity: sha512-K2xNkjOzYn2Ya0kUqCy7JIYyx9jbkNIWpex2t9m3FUG4wzkNscvaiRJ/a9Wse1aJmwDDARcHU6mUjtHf5os5MA==}
+ peerDependencies:
+ '@types/react': '*'
+ react: ^17 || ^18 || ^19.0.0
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ react:
+ optional: true
+
+ '@vector-im/compound-web@9.8.0':
+ resolution: {integrity: sha512-1Xy9eacbp9qD0uhLKb9SoyZ2iM868+M2BOiVX8oGfoZOyJYwihTwWmh2+0K8Kn8pag86t0yqyYplL0NVLY0sUA==}
+ peerDependencies:
+ '@fontsource/inconsolata': ^5
+ '@fontsource/inter': ^5
+ '@types/react': '*'
+ '@vector-im/compound-design-tokens': '>=1.6.1 <11.0.0'
+ react: ^18 || ^19.0.0
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
+ '@vitejs/plugin-react@6.0.3':
+ resolution: {integrity: sha512-vmFvco5/QuC2f9Oj+wTk0+9XeDFkHxSamwZKYc7MxYwKICfvUvlMhqKI0VuICPltGqh1neqBKDvO4kes1ya8vg==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ peerDependencies:
+ '@rolldown/plugin-babel': ^0.1.7 || ^0.2.0
+ babel-plugin-react-compiler: ^1.0.0
+ vite: ^8.0.0
+ peerDependenciesMeta:
+ '@rolldown/plugin-babel':
+ optional: true
+ babel-plugin-react-compiler:
+ optional: true
+
+ '@vitest/browser-playwright@4.1.9':
+ resolution: {integrity: sha512-Bq1rOGf9waevzG3EOkO/dene6bvKTUsZMVg8S1i+WH3JcMjuXEjiahP9rAqZRELUqjBySOJsvvSWqK/B3wjKQw==}
+ peerDependencies:
+ playwright: '*'
+ vitest: 4.1.9
+
+ '@vitest/browser@4.1.9':
+ resolution: {integrity: sha512-j1BKtWmPcqpMhmx/L9EPLgAJpCb0zKfwoWLmqBbxaogCXHjOwHFSEoHCBfnGtx93xKQwilZ26m+UOsHqHMkRNg==}
+ peerDependencies:
+ vitest: 4.1.9
+
+ '@vitest/coverage-v8@4.1.9':
+ resolution: {integrity: sha512-G9/lgqibheLVBDRuya45EbsEXTYcWoSG+TLg7i2axuzx0Eq62eXn+aWXyaVdV5vKvFSWd6ywcX8hA7la9Pvu8g==}
+ peerDependencies:
+ '@vitest/browser': 4.1.9
+ vitest: 4.1.9
+ peerDependenciesMeta:
+ '@vitest/browser':
+ optional: true
+
+ '@vitest/expect@3.2.4':
+ resolution: {integrity: sha512-Io0yyORnB6sikFlt8QW5K7slY4OjqNX9jmJQ02QDda8lyM6B5oNgVWoSoKPac8/kgnCUzuHQKrSLtu/uOqqrig==}
+
+ '@vitest/expect@4.1.9':
+ resolution: {integrity: sha512-vl/rYsUKcBr3SnQn166+XR5ZQcgMx3DQhFWdfli/cWpLnLUmbxZvyrJZotLFUryib+LtArYMSTJ5RbQ57ZqrlA==}
+
+ '@vitest/mocker@4.1.9':
+ resolution: {integrity: sha512-EVkXzBjrPGM+cK8/ANWgBrkUCfJfb38/EfTSO8h7pWvKkyPkpWxvR7BkD2MyItMF62C97zAEoqdpUixwR/e+Rw==}
+ peerDependencies:
+ msw: ^2.4.9
+ vite: ^6.0.0 || ^7.0.0 || ^8.0.0
+ peerDependenciesMeta:
+ msw:
+ optional: true
+ vite:
+ optional: true
+
+ '@vitest/pretty-format@3.2.4':
+ resolution: {integrity: sha512-IVNZik8IVRJRTr9fxlitMKeJeXFFFN0JaB9PHPGQ8NKQbGpfjlTx9zO4RefN8gp7eqjNy8nyK3NZmBzOPeIxtA==}
+
+ '@vitest/pretty-format@4.1.9':
+ resolution: {integrity: sha512-s0iufns3iIFitdgm+YR7g1whCAaGtXz459VS9/PqyKDEEFgYIhsHOQmXgIgDuYCt7DeQmiZT0Qe2OA2p4ZPu5A==}
+
+ '@vitest/runner@4.1.9':
+ resolution: {integrity: sha512-KXLMDtc7oe70+3mJfGrPUWPesswH+3sTxAMAMl8DG7I8IUQT4XW718dY5ID3vPUcmlu27CcKfY4P3h3I29SLJg==}
+
+ '@vitest/snapshot@4.1.9':
+ resolution: {integrity: sha512-Jc7RKGNBo8Z28WYIm0Niej4xdSPByRf6mU58VpHQkd6Zh05rlnA+twjbK5HyeIGHxrzsc3mJgS43uM0CZKzaIA==}
+
+ '@vitest/spy@3.2.4':
+ resolution: {integrity: sha512-vAfasCOe6AIK70iP5UD11Ac4siNUNJ9i/9PZ3NKx07sG6sUxeag1LWdNrMWeKKYBLlzuK+Gn65Yd5nyL6ds+nw==}
+
+ '@vitest/spy@4.1.9':
+ resolution: {integrity: sha512-fHpsS6mIi+PiEW+vcRVOMkX1oSaPKne3VOclSFICPcGOmfKgXPU5iAah+wcNcj2xPrCCmfq99IDGf+EojhhvhA==}
+
+ '@vitest/ui@4.1.9':
+ resolution: {integrity: sha512-U/cRvtqfEPj27FI1n9cyUvi4vXXdcLhjJiI+InYKdk8hP4VrS6RXOjGL7rfFaeBc37iRKANsR6eEzIoC7lmgBQ==}
+ peerDependencies:
+ vitest: 4.1.9
+
+ '@vitest/utils@3.2.4':
+ resolution: {integrity: sha512-fB2V0JFrQSMsCo9HiSq3Ezpdv4iYaXRG1Sx8edX3MwxfyNn83mKiGzOcH+Fkxt4MHxr3y42fQi1oeAInqgX2QA==}
+
+ '@vitest/utils@4.1.9':
+ resolution: {integrity: sha512-A51o8ymO5PpqlWNnBP9ZHPXDIpuMtTLlGSjN7la4US+LJzoUMyhwjA5QXlm39JexgwHKW4Xjs8Z2d3dLCXOeuA==}
+
+ '@webcontainer/env@1.1.1':
+ resolution: {integrity: sha512-6aN99yL695Hi9SuIk1oC88l9o0gmxL1nGWWQ/kNy81HigJ0FoaoTXpytCj6ItzgyCEwA9kF1wixsTuv5cjsgng==}
+
+ acorn-jsx@5.3.2:
+ resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
+ peerDependencies:
+ acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
+
+ acorn@8.16.0:
+ resolution: {integrity: sha512-UVJyE9MttOsBQIDKw1skb9nAwQuR5wuGD3+82K6JgJlm/Y+KI92oNsMNGZCYdDsVtRHSak0pcV5Dno5+4jh9sw==}
+ engines: {node: '>=0.4.0'}
+ hasBin: true
+
+ acorn@8.17.0:
+ resolution: {integrity: sha512-xRQbDb9BnwDafYNn6Vwl839DYVjqXYb1XVGtWAZ1kcDc6iwAL4hg3B1dZlRiuENFeO2H53gFG3in621AdERVAg==}
+ engines: {node: '>=0.4.0'}
+ hasBin: true
+
+ acorn@8.18.0:
+ resolution: {integrity: sha512-lGq+9yr1/GuAWaVYIHRjvvySG5/4VfKIvC8EWxStPdcDh/Ka7FG3twP6v4d5BkravUilhIAsG4Qj83t02LWUPQ==}
+ engines: {node: '>=0.4.0'}
+ hasBin: true
+
+ agent-base@6.0.2:
+ resolution: {integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==}
+ engines: {node: '>= 6.0.0'}
+
+ agent-base@7.1.4:
+ resolution: {integrity: sha512-MnA+YT8fwfJPgBx3m60MNqakm30XOkyIoH1y6huTQvC0PwZG7ki8NacLBcrPbNoo8vEZy7Jpuk7+jMO+CUovTQ==}
+ engines: {node: '>= 14'}
+
+ ajv@6.15.0:
+ resolution: {integrity: sha512-fgFx7Hfoq60ytK2c7DhnF8jIvzYgOMxfugjLOSMHjLIPgenqa7S7oaagATUq99mV6IYvN2tRmC0wnTYX6iPbMw==}
+
+ another-json@0.2.0:
+ resolution: {integrity: sha512-/Ndrl68UQLhnCdsAzEXLMFuOR546o2qbYRqCglaNHbjXrwG1ayTcdwr3zkSGOGtGXDyR5X9nCFfnyG2AFJIsqg==}
+
+ ansi-regex@5.0.1:
+ resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}
+ engines: {node: '>=8'}
+
+ ansi-regex@6.2.2:
+ resolution: {integrity: sha512-Bq3SmSpyFHaWjPk8If9yc6svM8c56dB5BAtW4Qbw5jHTwwXXcTLoRMkpDJp6VL0XzlWaCHTXrkFURMYmD0sLqg==}
+ engines: {node: '>=12'}
+
+ ansi-styles@4.3.0:
+ resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==}
+ engines: {node: '>=8'}
+
+ ansi-styles@5.2.0:
+ resolution: {integrity: sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==}
+ engines: {node: '>=10'}
+
+ ansi-styles@6.2.3:
+ resolution: {integrity: sha512-4Dj6M28JB+oAH8kFkTLUo+a2jwOFkuqb3yucU0CANcRRUbxS0cP0nZYCGjcc3BNXwRIsUVmDGgzawme7zvJHvg==}
+ engines: {node: '>=12'}
+
+ anymatch@3.1.3:
+ resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==}
+ engines: {node: '>= 8'}
+
+ argparse@2.0.1:
+ resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==}
+
+ aria-hidden@1.2.6:
+ resolution: {integrity: sha512-ik3ZgC9dY/lYVVM++OISsaYDeg1tb0VtP5uL3ouh1koGOaUMDPpbFIei4JkFimWUFPn90sbMNMXQAIVOlnYKJA==}
+ engines: {node: '>=10'}
+
+ aria-query@5.3.0:
+ resolution: {integrity: sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==}
+
+ aria-query@5.3.2:
+ resolution: {integrity: sha512-COROpnaoap1E2F000S62r6A60uHZnmlvomhfyT2DlTcrY1OrBKn2UhH7qn5wTC9zMvD0AY7csdPSNwKP+7WiQw==}
+ engines: {node: '>= 0.4'}
+
+ asn1.js@4.10.1:
+ resolution: {integrity: sha512-p32cOF5q0Zqs9uBiONKYLm6BClCoBCM5O9JfeUSlnQLBTxYdTK+pW+nXflm8UkKd2UYlEbYz5qEi0JuZR9ckSw==}
+
+ assert@2.1.0:
+ resolution: {integrity: sha512-eLHpSK/Y4nhMJ07gDaAzoX/XAKS8PSaojml3M0DM4JpV1LAi5JOJ/p6H/XWrl8L+DzVEvVCW1z3vWAaB9oTsQw==}
+
+ assertion-error@2.0.1:
+ resolution: {integrity: sha512-Izi8RQcffqCeNVgFigKli1ssklIbpHnCYc6AknXGYoB6grJqyeby7jv12JUQgmTAnIDnbck1uxksT4dzN3PWBA==}
+ engines: {node: '>=12'}
+
+ ast-types@0.16.1:
+ resolution: {integrity: sha512-6t10qk83GOG8p0vKmaCr8eiilZwO171AvbROMtvvNiwrTly62t+7XkA8RdIIVbpMhCASAsxgAzdRSwh6nw/5Dg==}
+ engines: {node: '>=4'}
+
+ ast-v8-to-istanbul@1.0.4:
+ resolution: {integrity: sha512-0bC0/4bTSrnwdhU3IsZDwEdojvuPrSg59OYZfKsLRtJZ0u8VBx9DebfqqG8bRdCC0I7vjgxmPi41P0lpkhJHtA==}
+
+ async@3.2.6:
+ resolution: {integrity: sha512-htCUDlxyyCLMgaM3xXg0C0LW2xqfuQ6p05pCEIsXuyQ+a1koYKTuBMzRNwmybfLgvJDMd0r1LTn4+E0Ti6C2AA==}
+
+ autoprefixer@10.5.0:
+ resolution: {integrity: sha512-FMhOoZV4+qR6aTUALKX2rEqGG+oyATvwBt9IIzVR5rMa2HRWPkxf+P+PAJLD1I/H5/II+HuZcBJYEFBpq39ong==}
+ engines: {node: ^10 || ^12 || >=14}
+ hasBin: true
+ peerDependencies:
+ postcss: ^8.1.0
+
+ available-typed-arrays@1.0.7:
+ resolution: {integrity: sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==}
+ engines: {node: '>= 0.4'}
+
+ axe-core@4.11.3:
+ resolution: {integrity: sha512-zBQouZixDTbo3jMGqHKyePxYxr1e5W8UdTmBQ7sNtaA9M2bE32daxxPLS/jojhKOHxQ7LWwPjfiwf/fhaJWzlg==}
+ engines: {node: '>=4'}
+
+ balanced-match@4.0.4:
+ resolution: {integrity: sha512-BLrgEcRTwX2o6gGxGOCNyMvGSp35YofuYzw9h1IMTRmKqttAZZVU67bdb9Pr2vUHA8+j3i2tJfjO6C6+4myGTA==}
+ engines: {node: 18 || 20 || >=22}
+
+ base-x@5.0.1:
+ resolution: {integrity: sha512-M7uio8Zt++eg3jPj+rHMfCC+IuygQHHCOU+IYsVtik6FWjuYpVt/+MRKcgsAMHh8mMFAwnB+Bs+mTrFiXjMzKg==}
+
+ base64-js@1.5.1:
+ resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==}
+
+ baseline-browser-mapping@2.10.19:
+ resolution: {integrity: sha512-qCkNLi2sfBOn8XhZQ0FXsT1Ki/Yo5P90hrkRamVFRS7/KV9hpfA4HkoWNU152+8w0zPjnxo5psx5NL3PSGgv5g==}
+ engines: {node: '>=6.0.0'}
+ hasBin: true
+
+ before-after-hook@2.2.3:
+ resolution: {integrity: sha512-NzUnlZexiaH/46WDhANlyR2bXRopNg4F/zuSA3OpZnllCUgRaOF2znDioDWrmbNVsuZk6l9pMquQB38cfBZwkQ==}
+
+ binary-extensions@2.3.0:
+ resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==}
+ engines: {node: '>=8'}
+
+ bn.js@4.12.3:
+ resolution: {integrity: sha512-fGTi3gxV/23FTYdAoUtLYp6qySe2KE3teyZitipKNRuVYcBkoP/bB3guXN/XVKUe9mxCHXnc9C4ocyz8OmgN0g==}
+
+ bn.js@5.2.3:
+ resolution: {integrity: sha512-EAcmnPkxpntVL+DS7bO1zhcZNvCkxqtkd0ZY53h06GNQ3DEkkGZ/gKgmDv6DdZQGj9BgfSPKtJJ7Dp1GPP8f7w==}
+
+ boolbase@1.0.0:
+ resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==}
+
+ brace-expansion@5.0.7:
+ resolution: {integrity: sha512-7oFy703dxfY3/NLxC1fh2SUCQ0H9rmAY+5EpDVfXjUTTs+HEwR2nYaqLv+GWcTsumwxPfiz6CzCNkwXwBUwqCA==}
+ engines: {node: 18 || 20 || >=22}
+
+ brace-expansion@5.0.8:
+ resolution: {integrity: sha512-JZyDyq3D4AUifKTPOB7DELf6XsB3WdPuNxCtob1vFXPsSXhdAiHBWJ/tJ8HAc9aH84BK+5JFZLNkJKx3G9kzQg==}
+ engines: {node: 20 || >=22}
+
+ braces@3.0.3:
+ resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==}
+ engines: {node: '>=8'}
+
+ brorand@1.1.0:
+ resolution: {integrity: sha512-cKV8tMCEpQs4hK/ik71d6LrPOnpkpGBR0wzxqr68g2m/LB2GxVYQroAjMJZRVM1Y4BCjCKc3vAamxSzOY2RP+w==}
+
+ browser-resolve@2.0.0:
+ resolution: {integrity: sha512-7sWsQlYL2rGLy2IWm8WL8DCTJvYLc/qlOnsakDac87SOoCd16WLsaAMdCiAqsTNHIe+SXfaqyxyo6THoWqs8WQ==}
+
+ browserify-aes@1.2.0:
+ resolution: {integrity: sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==}
+
+ browserify-cipher@1.0.1:
+ resolution: {integrity: sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w==}
+
+ browserify-des@1.0.2:
+ resolution: {integrity: sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A==}
+
+ browserify-rsa@4.1.1:
+ resolution: {integrity: sha512-YBjSAiTqM04ZVei6sXighu679a3SqWORA3qZTEqZImnlkDIFtKc6pNutpjyZ8RJTjQtuYfeetkxM11GwoYXMIQ==}
+ engines: {node: '>= 0.10'}
+
+ browserify-sign@4.2.5:
+ resolution: {integrity: sha512-C2AUdAJg6rlM2W5QMp2Q4KGQMVBwR1lIimTsUnutJ8bMpW5B52pGpR2gEnNBNwijumDo5FojQ0L9JrXA8m4YEw==}
+ engines: {node: '>= 0.10'}
+
+ browserify-zlib@0.2.0:
+ resolution: {integrity: sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==}
+
+ browserslist@4.28.2:
+ resolution: {integrity: sha512-48xSriZYYg+8qXna9kwqjIVzuQxi+KYWp2+5nCYnYKPTr0LvD89Jqk2Or5ogxz0NUMfIjhh2lIUX/LyX9B4oIg==}
+ engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
+ hasBin: true
+
+ bs58@6.0.0:
+ resolution: {integrity: sha512-PD0wEnEYg6ijszw/u8s+iI3H17cTymlrwkKhDhPZq+Sokl3AU4htyBFTjAeNAlCCmg0f53g6ih3jATyCKftTfw==}
+
+ buffer-from@1.1.2:
+ resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==}
+
+ buffer-xor@1.0.3:
+ resolution: {integrity: sha512-571s0T7nZWK6vB67HI5dyUF7wXiNcfaPPPTl6zYCNApANjIvYJTg7hlud/+cJpdAhS7dVzqMLmfhfHR3rAcOjQ==}
+
+ buffer@5.7.1:
+ resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==}
+
+ builtin-status-codes@3.0.0:
+ resolution: {integrity: sha512-HpGFw18DgFWlncDfjTa2rcQ4W88O1mC8e8yZ2AvQY5KDaktSTwo+KRf6nHK6FRI5FyRyb/5T6+TSxfP7QyGsmQ==}
+
+ bundle-name@4.1.0:
+ resolution: {integrity: sha512-tjwM5exMg6BGRI+kNmTntNsvdZS1X8BFYS6tnJ2hdH0kVxM6/eVZ2xy+FqStSWvYmtfFMDLIxurorHwDKfDz5Q==}
+ engines: {node: '>=18'}
+
+ call-bind-apply-helpers@1.0.2:
+ resolution: {integrity: sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==}
+ engines: {node: '>= 0.4'}
+
+ call-bind@1.0.9:
+ resolution: {integrity: sha512-a/hy+pNsFUTR+Iz8TCJvXudKVLAnz/DyeSUo10I5yvFDQJBFU2s9uqQpoSrJlroHUKoKqzg+epxyP9lqFdzfBQ==}
+ engines: {node: '>= 0.4'}
+
+ call-bound@1.0.4:
+ resolution: {integrity: sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==}
+ engines: {node: '>= 0.4'}
+
+ callsites@3.1.0:
+ resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==}
+ engines: {node: '>=6'}
+
+ camel-case@4.1.2:
+ resolution: {integrity: sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==}
+
+ camelcase@5.3.1:
+ resolution: {integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==}
+ engines: {node: '>=6'}
+
+ camelcase@6.3.0:
+ resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==}
+ engines: {node: '>=10'}
+
+ caniuse-lite@1.0.30001788:
+ resolution: {integrity: sha512-6q8HFp+lOQtcf7wBK+uEenxymVWkGKkjFpCvw5W25cmMwEDU45p1xQFBQv8JDlMMry7eNxyBaR+qxgmTUZkIRQ==}
+
+ chai@5.3.3:
+ resolution: {integrity: sha512-4zNhdJD/iOjSH0A05ea+Ke6MU5mmpQcbQsSOkgdaUMJ9zTlDTD/GYlwohmIE2u0gaxHYiVHEn1Fw9mZ/ktJWgw==}
+ engines: {node: '>=18'}
+
+ chai@6.2.2:
+ resolution: {integrity: sha512-NUPRluOfOiTKBKvWPtSD4PhFvWCqOi0BGStNWs57X9js7XGTprSmFoz5F0tWhR4WPjNeR9jXqdC7/UpSJTnlRg==}
+ engines: {node: '>=18'}
+
+ chalk@4.1.2:
+ resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==}
+ engines: {node: '>=10'}
+
+ chalk@5.6.2:
+ resolution: {integrity: sha512-7NzBL0rN6fMUW+f7A6Io4h40qQlG+xGmtMxfbnH/K7TAtt8JQWVQK+6g0UXKMeVJoyV5EkkNsErQ8pVD3bLHbA==}
+ engines: {node: ^12.17.0 || ^14.13 || >=16.0.0}
+
+ chardet@2.2.0:
+ resolution: {integrity: sha512-rddelWYNPRrXq6PtNEN2S3f6t9ILzvqaN5pVgi4kqt9jHQaXIial9PznB5iSPVlQSLNaaH22ItWz3EJtQ10+OA==}
+
+ check-error@2.1.3:
+ resolution: {integrity: sha512-PAJdDJusoxnwm1VwW07VWwUN1sl7smmC3OKggvndJFadxxDRyFJBX/ggnu/KE4kQAB7a3Dp8f/YXC1FlUprWmA==}
+ engines: {node: '>= 16'}
+
+ chokidar@3.6.0:
+ resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==}
+ engines: {node: '>= 8.10.0'}
+
+ chokidar@5.0.0:
+ resolution: {integrity: sha512-TQMmc3w+5AxjpL8iIiwebF73dRDF4fBIieAqGn9RGCWaEVwQ6Fb2cGe31Yns0RRIzii5goJ1Y7xbMwo1TxMplw==}
+ engines: {node: '>= 20.19.0'}
+
+ cipher-base@1.0.7:
+ resolution: {integrity: sha512-Mz9QMT5fJe7bKI7MH31UilT5cEK5EHHRCccw/YRFsRY47AuNgaV6HY3rscp0/I4Q+tTW/5zoqpSeRRI54TkDWA==}
+ engines: {node: '>= 0.10'}
+
+ classnames@2.5.1:
+ resolution: {integrity: sha512-saHYOzhIQs6wy2sVxTM6bUDsQO4F50V9RQ22qBpEdCW+I+/Wmke2HOl6lS6dTpdxVhb88/I6+Hs+438c3lfUow==}
+
+ clean-css@5.3.3:
+ resolution: {integrity: sha512-D5J+kHaVb/wKSFcyyV75uCn8fiY4sV38XJoe4CUyGQ+mOU/fMVYUdH1hJC+CJQ5uY3EnW27SbJYS4X8BiLrAFg==}
+ engines: {node: '>= 10.0'}
+
+ cli-cursor@5.0.0:
+ resolution: {integrity: sha512-aCj4O5wKyszjMmDT4tZj93kxyydN/K5zPWSCe6/0AV/AA1pqe5ZBIw0a2ZfPQV7lL5/yb5HsUreJ6UFAF1tEQw==}
+ engines: {node: '>=18'}
+
+ cli-spinners@3.4.0:
+ resolution: {integrity: sha512-bXfOC4QcT1tKXGorxL3wbJm6XJPDqEnij2gQ2m7ESQuE+/z9YFIWnl/5RpTiKWbMq3EVKR4fRLJGn6DVfu0mpw==}
+ engines: {node: '>=18.20'}
+
+ cli-width@4.1.0:
+ resolution: {integrity: sha512-ouuZd4/dm2Sw5Gmqy6bGyNNNe1qt9RpmxveLSO7KcgsTnU7RXfsw+/bukWGo1abgBiMAic068rclZsO4IWmmxQ==}
+ engines: {node: '>= 12'}
+
+ cliui@6.0.0:
+ resolution: {integrity: sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==}
+
+ clsx@2.1.1:
+ resolution: {integrity: sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==}
+ engines: {node: '>=6'}
+
+ color-convert@2.0.1:
+ resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
+ engines: {node: '>=7.0.0'}
+
+ color-name@1.1.4:
+ resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
+
+ colorette@2.0.20:
+ resolution: {integrity: sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==}
+
+ commander@14.0.3:
+ resolution: {integrity: sha512-H+y0Jo/T1RZ9qPP4Eh1pkcQcLRglraJaSLoyOtHxu6AapkjWVCy2Sit1QQ4x3Dng8qDlSsZEet7g5Pq06MvTgw==}
+ engines: {node: '>=20'}
+
+ commander@2.20.3:
+ resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==}
+
+ commander@8.3.0:
+ resolution: {integrity: sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==}
+ engines: {node: '>= 12'}
+
+ connect-history-api-fallback@1.6.0:
+ resolution: {integrity: sha512-e54B99q/OUoH64zYYRf3HBP5z24G38h5D3qXu23JGRoigpX5Ss4r9ZnDk3g0Z8uQC2x2lPaJ+UlWBc1ZWBWdLg==}
+ engines: {node: '>=0.8'}
+
+ consola@2.15.3:
+ resolution: {integrity: sha512-9vAdYbHj6x2fLKC4+oPH0kFzY/orMZyG2Aj+kNylHxKGJ/Ed4dpNyAQYwJOdqO4zdM7XpVHmyejQDcQHrnuXbw==}
+
+ console-browserify@1.2.0:
+ resolution: {integrity: sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA==}
+
+ constants-browserify@1.0.0:
+ resolution: {integrity: sha512-xFxOwqIzR/e1k1gLiWEophSCMqXcwVHIH7akf7b/vxcUeGunlj3hvZaaqxwHsTgn+IndtkQJgSztIDWeumWJDQ==}
+
+ content-type@2.0.0:
+ resolution: {integrity: sha512-j/O/d7GcZCyNl7/hwZAb606rzqkyvaDctLmckbxLzHvFBzTJHuGEdodATcP3yIRoDrLHkIATJuvzbFlp/ki2cQ==}
+ engines: {node: '>=18'}
+
+ convert-source-map@2.0.0:
+ resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==}
+
+ cookie@1.1.1:
+ resolution: {integrity: sha512-ei8Aos7ja0weRpFzJnEA9UHJ/7XQmqglbRwnf2ATjcB9Wq874VKH9kfjjirM6UhU2/E5fFYadylyhFldcqSidQ==}
+ engines: {node: '>=18'}
+
+ copy-to-clipboard@3.3.3:
+ resolution: {integrity: sha512-2KV8NhB5JqC3ky0r9PMCAZKbUHSwtEo4CwCs0KXgruG43gX5PMqDEBbVU4OUzw2MuAWUfsuFmWvEKG5QRfSnJA==}
+
+ core-js@3.49.0:
+ resolution: {integrity: sha512-es1U2+YTtzpwkxVLwAFdSpaIMyQaq0PBgm3YD1W3Qpsn1NAmO3KSgZfu+oGSWVu6NvLHoHCV/aYcsE5wiB7ALg==}
+
+ core-util-is@1.0.3:
+ resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==}
+
+ cosmiconfig@8.3.6:
+ resolution: {integrity: sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==}
+ engines: {node: '>=14'}
+ peerDependencies:
+ typescript: '>=4.9.5'
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+
+ create-ecdh@4.0.4:
+ resolution: {integrity: sha512-mf+TCx8wWc9VpuxfP2ht0iSISLZnt0JgWlrOKZiNqyUZWnjIaCIVNQArMHnCZKfEYRg6IM7A+NeJoN8gf/Ws0A==}
+
+ create-hash@1.2.0:
+ resolution: {integrity: sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==}
+
+ create-hmac@1.1.7:
+ resolution: {integrity: sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==}
+
+ create-require@1.1.1:
+ resolution: {integrity: sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==}
+
+ cross-spawn@7.0.6:
+ resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==}
+ engines: {node: '>= 8'}
+
+ crypto-browserify@3.12.1:
+ resolution: {integrity: sha512-r4ESw/IlusD17lgQi1O20Fa3qNnsckR126TdUuBgAu7GBYSIPvdNyONd3Zrxh0xCwA4+6w/TDArBPsMvhur+KQ==}
+ engines: {node: '>= 0.10'}
+
+ css-blank-pseudo@7.0.1:
+ resolution: {integrity: sha512-jf+twWGDf6LDoXDUode+nc7ZlrqfaNphrBIBrcmeP3D8yw1uPaix1gCC8LUQUGQ6CycuK2opkbFFWFuq/a94ag==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ postcss: ^8.4
+
+ css-has-pseudo@7.0.3:
+ resolution: {integrity: sha512-oG+vKuGyqe/xvEMoxAQrhi7uY16deJR3i7wwhBerVrGQKSqUC5GiOVxTpM9F9B9hw0J+eKeOWLH7E9gZ1Dr5rA==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ postcss: ^8.4
+
+ css-prefers-color-scheme@10.0.0:
+ resolution: {integrity: sha512-VCtXZAWivRglTZditUfB4StnsWr6YVZ2PRtuxQLKTNRdtAf8tpzaVPE9zXIF3VaSc7O70iK/j1+NXxyQCqdPjQ==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ postcss: ^8.4
+
+ css-select@4.3.0:
+ resolution: {integrity: sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==}
+
+ css-what@6.2.2:
+ resolution: {integrity: sha512-u/O3vwbptzhMs3L1fQE82ZSLHQQfto5gyZzwteVIEyeaY5Fc7R4dapF/BvRoSYFeqfBk4m0V1Vafq5Pjv25wvA==}
+ engines: {node: '>= 6'}
+
+ css.escape@1.5.1:
+ resolution: {integrity: sha512-YUifsXXuknHlUsmlgyY0PKzgPOr7/FjCePfHNt0jxm83wHZi44VDMQ7/fGNkjY3/jV1MC+1CmZbaHzugyeRtpg==}
+
+ cssdb@8.8.0:
+ resolution: {integrity: sha512-QbLeyz2Bgso1iRlh7IpWk6OKa3lLNGXsujVjDMPl9rOZpxKeiG69icLpbLCFxeURwmcdIfZqQyhlooKJYM4f8Q==}
+
+ cssesc@3.0.0:
+ resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==}
+ engines: {node: '>=4'}
+ hasBin: true
+
+ cssstyle@4.6.0:
+ resolution: {integrity: sha512-2z+rWdzbbSZv6/rhtvzvqeZQHrBaqgogqt85sqFNbabZOuFbCVFb8kPeEtZjiKkbrm395irpNKiYeFeLiQnFPg==}
+ engines: {node: '>=18'}
+
+ csstype@3.2.3:
+ resolution: {integrity: sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==}
+
+ data-urls@5.0.0:
+ resolution: {integrity: sha512-ZYP5VBHshaDAiVZxjbRVcFJpc+4xGgT0bK3vzy1HLN8jTO975HEbuYzZJcHoQEY5K1a0z8YayJkyVETa08eNTg==}
+ engines: {node: '>=18'}
+
+ debug@4.4.3:
+ resolution: {integrity: sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==}
+ engines: {node: '>=6.0'}
+ peerDependencies:
+ supports-color: '*'
+ peerDependenciesMeta:
+ supports-color:
+ optional: true
+
+ decamelize@1.2.0:
+ resolution: {integrity: sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==}
+ engines: {node: '>=0.10.0'}
+
+ decimal.js@10.6.0:
+ resolution: {integrity: sha512-YpgQiITW3JXGntzdUmyUR1V812Hn8T1YVXhCu+wO3OpS4eU9l4YdD3qjyiKdV6mvV29zapkMeD390UVEf2lkUg==}
+
+ deep-eql@5.0.2:
+ resolution: {integrity: sha512-h5k/5U50IJJFpzfL6nO9jaaumfjO/f2NjK/oYB2Djzm4p9L+3T9qWpZqZ2hAbLPuuYq9wrU08WQyBTL5GbPk5Q==}
+ engines: {node: '>=6'}
+
+ deep-is@0.1.4:
+ resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==}
+
+ default-browser-id@5.0.1:
+ resolution: {integrity: sha512-x1VCxdX4t+8wVfd1so/9w+vQ4vx7lKd2Qp5tDRutErwmR85OgmfX7RlLRMWafRMY7hbEiXIbudNrjOAPa/hL8Q==}
+ engines: {node: '>=18'}
+
+ default-browser@5.5.0:
+ resolution: {integrity: sha512-H9LMLr5zwIbSxrmvikGuI/5KGhZ8E2zH3stkMgM5LpOWDutGM2JZaj460Udnf1a+946zc7YBgrqEWwbk7zHvGw==}
+ engines: {node: '>=18'}
+
+ define-data-property@1.1.4:
+ resolution: {integrity: sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==}
+ engines: {node: '>= 0.4'}
+
+ define-lazy-prop@3.0.0:
+ resolution: {integrity: sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg==}
+ engines: {node: '>=12'}
+
+ define-properties@1.2.1:
+ resolution: {integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==}
+ engines: {node: '>= 0.4'}
+
+ deprecation@2.3.1:
+ resolution: {integrity: sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ==}
+
+ dequal@2.0.3:
+ resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==}
+ engines: {node: '>=6'}
+
+ des.js@1.1.0:
+ resolution: {integrity: sha512-r17GxjhUCjSRy8aiJpr8/UadFIzMzJGexI3Nmz4ADi9LYSFx4gTBp80+NaX/YsXWWLhpZ7v/v/ubEc/bCNfKwg==}
+
+ detect-libc@2.1.2:
+ resolution: {integrity: sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==}
+ engines: {node: '>=8'}
+
+ detect-node-es@1.1.0:
+ resolution: {integrity: sha512-ypdmJU/TbBby2Dxibuv7ZLW3Bs1QEmM7nHjEANfohJLvE0XVujisn1qPJcZxg+qDucsr+bP6fLD1rPS3AhJ7EQ==}
+
+ diffie-hellman@5.0.3:
+ resolution: {integrity: sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg==}
+
+ dijkstrajs@1.0.3:
+ resolution: {integrity: sha512-qiSlmBq9+BCdCA/L46dw8Uy93mloxsPSbwnm5yrKn2vMPiy8KyAskTF6zuV/j5BMsmOGZDPs7KjU+mjb670kfA==}
+
+ doctrine@3.0.0:
+ resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==}
+ engines: {node: '>=6.0.0'}
+
+ dom-accessibility-api@0.5.16:
+ resolution: {integrity: sha512-X7BJ2yElsnOJ30pZF4uIIDfBEVgF4XEBxL9Bxhy6dnrm5hkzqmsWHGTiHqRiITNhMyFLyAiWndIJP7Z1NTteDg==}
+
+ dom-accessibility-api@0.6.3:
+ resolution: {integrity: sha512-7ZgogeTnjuHbo+ct10G9Ffp0mif17idi0IyWNVA/wcwcm7NPOD/WEHVP3n7n3MhXqxoIYm8d6MuZohYWIZ4T3w==}
+
+ dom-serializer@1.4.1:
+ resolution: {integrity: sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==}
+
+ domain-browser@4.22.0:
+ resolution: {integrity: sha512-IGBwjF7tNk3cwypFNH/7bfzBcgSCbaMOD3GsaY1AU/JRrnHnYgEM0+9kQt52iZxjNsjBtJYtao146V+f8jFZNw==}
+ engines: {node: '>=10'}
+
+ domelementtype@2.3.0:
+ resolution: {integrity: sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==}
+
+ domhandler@4.3.1:
+ resolution: {integrity: sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==}
+ engines: {node: '>= 4'}
+
+ dompurify@3.4.12:
+ resolution: {integrity: sha512-zQvGet8Z2sWbQhCmfFz/T5QWH2oBmjnqK3qvOjaqaNLrLEF912WamU+ohnTp0TCep/MFVHpdJuCZEdFOdTnEFg==}
+
+ domutils@2.8.0:
+ resolution: {integrity: sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==}
+
+ dot-case@3.0.4:
+ resolution: {integrity: sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==}
+
+ dotenv-expand@8.0.3:
+ resolution: {integrity: sha512-SErOMvge0ZUyWd5B0NXMQlDkN+8r+HhVUsxgOO7IoPDOdDRD2JjExpN6y3KnFR66jsJMwSn1pqIivhU5rcJiNg==}
+ engines: {node: '>=12'}
+
+ dotenv@16.6.1:
+ resolution: {integrity: sha512-uBq4egWHTcTt33a72vpSG0z3HnPuIl6NqYcTrKEg2azoEyl2hpW0zqlxysq2pK9HlDIHyHyakeYaYnSAwd8bow==}
+ engines: {node: '>=12'}
+
+ dunder-proto@1.0.1:
+ resolution: {integrity: sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==}
+ engines: {node: '>= 0.4'}
+
+ eastasianwidth@0.2.0:
+ resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==}
+
+ ejs@3.1.10:
+ resolution: {integrity: sha512-UeJmFfOrAQS8OJWPZ4qtgHyWExa088/MtK5UEyoJGFH67cDEXkZSviOiKRCZ4Xij0zxI3JECgYs3oKx+AizQBA==}
+ engines: {node: '>=0.10.0'}
+ hasBin: true
+
+ electron-to-chromium@1.5.339:
+ resolution: {integrity: sha512-Is+0BBHJ4NrdpAYiperrmp53pLywG/yV/6lIMTAnhxvzj/Cmn5Q/ogSHC6AKe7X+8kPLxxFk0cs5oc/3j/fxIg==}
+
+ elliptic@6.6.1:
+ resolution: {integrity: sha512-RaddvvMatK2LJHqFJ+YA4WysVN5Ita9E35botqIYspQ4TkRAlCicdzKOjlyv/1Za5RyTNn7di//eEV0uTAfe3g==}
+
+ emoji-regex@8.0.0:
+ resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==}
+
+ emoji-regex@9.2.2:
+ resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==}
+
+ empathic@2.0.1:
+ resolution: {integrity: sha512-YGRs8knHhKHVShLkFET/rWAU8kmHbOV5LwN938RHI0pljAJ1Gf6SzXsSmRaEzcXTtOOmVqJ5+WtQPL5uigY50Q==}
+ engines: {node: '>=14'}
+
+ entities@2.2.0:
+ resolution: {integrity: sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==}
+
+ entities@4.5.0:
+ resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==}
+ engines: {node: '>=0.12'}
+
+ entities@6.0.1:
+ resolution: {integrity: sha512-aN97NXWF6AWBTahfVOIrB/NShkzi5H7F9r1s9mD3cDj4Ko5f2qhhVoYMibXF7GlLveb/D2ioWay8lxI97Ven3g==}
+ engines: {node: '>=0.12'}
+
+ error-ex@1.3.4:
+ resolution: {integrity: sha512-sqQamAnR14VgCr1A618A3sGrygcpK+HEbenA/HiEAkkUwcZIIB/tgWqHFxWgOyDh4nB4JCRimh79dR5Ywc9MDQ==}
+
+ es-define-property@1.0.1:
+ resolution: {integrity: sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==}
+ engines: {node: '>= 0.4'}
+
+ es-errors@1.3.0:
+ resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==}
+ engines: {node: '>= 0.4'}
+
+ es-module-lexer@2.2.0:
+ resolution: {integrity: sha512-3lGxdTXCLfe1MYfTz1y2ksAAUM4NAOP6rPEjxGJVKO7TZ5+tvHCaQWGpC4Y3IXvW3ece0Cz1cIP4FWBxOnGCTQ==}
+
+ es-object-atoms@1.1.1:
+ resolution: {integrity: sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==}
+ engines: {node: '>= 0.4'}
+
+ esbuild@0.28.1:
+ resolution: {integrity: sha512-HrJrvZv5ayxBzPfwphOoNzkzOIIlifzk0KJrGK2c8R4+LKpMtpYLQeUdjnwjWv/LZlkH2laZk+4w78pi99D4Vw==}
+ engines: {node: '>=18'}
+ hasBin: true
+
+ escalade@3.2.0:
+ resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==}
+ engines: {node: '>=6'}
+
+ escape-string-regexp@4.0.0:
+ resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==}
+ engines: {node: '>=10'}
+
+ eslint-plugin-storybook@10.4.6:
+ resolution: {integrity: sha512-CfGSXn6zFspeYTU8R7v797MOmJFj8xc6MWf/oGuRwbKeMoSwnliR+OlXSjMZYM1D6gfmwiuH1VX58LSHdn+ZPg==}
+ peerDependencies:
+ eslint: '>=8'
+ storybook: ^10.4.6
+
+ eslint-scope@7.2.2:
+ resolution: {integrity: sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==}
+ engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+
+ eslint-visitor-keys@3.4.3:
+ resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==}
+ engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+
+ eslint-visitor-keys@5.0.1:
+ resolution: {integrity: sha512-tD40eHxA35h0PEIZNeIjkHoDR4YjjJp34biM0mDvplBe//mB+IHCqHDGV7pxF+7MklTvighcCPPZC7ynWyjdTA==}
+ engines: {node: ^20.19.0 || ^22.13.0 || >=24}
+
+ eslint@8.57.1:
+ resolution: {integrity: sha512-ypowyDxpVSYpkXr9WPv2PAZCtNip1Mv5KTW0SCurXv/9iOpcrH9PaqUElksqEB6pChqHGDRCFTyrZlGhnLNGiA==}
+ engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ deprecated: This version is no longer supported. Please see https://eslint.org/version-support for other options.
+ hasBin: true
+
+ espree@9.6.1:
+ resolution: {integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==}
+ engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+
+ esprima@4.0.1:
+ resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==}
+ engines: {node: '>=4'}
+ hasBin: true
+
+ esquery@1.7.0:
+ resolution: {integrity: sha512-Ap6G0WQwcU/LHsvLwON1fAQX9Zp0A2Y6Y/cJBl9r/JbW90Zyg4/zbG6zzKa2OTALELarYHmKu0GhpM5EO+7T0g==}
+ engines: {node: '>=0.10'}
+
+ esrecurse@4.3.0:
+ resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==}
+ engines: {node: '>=4.0'}
+
+ estraverse@5.3.0:
+ resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==}
+ engines: {node: '>=4.0'}
+
+ estree-walker@2.0.2:
+ resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==}
+
+ estree-walker@3.0.3:
+ resolution: {integrity: sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==}
+
+ esutils@2.0.3:
+ resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==}
+ engines: {node: '>=0.10.0'}
+
+ events@3.3.0:
+ resolution: {integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==}
+ engines: {node: '>=0.8.x'}
+
+ evp_bytestokey@1.0.3:
+ resolution: {integrity: sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==}
+
+ execa@9.6.1:
+ resolution: {integrity: sha512-9Be3ZoN4LmYR90tUoVu2te2BsbzHfhJyfEiAVfz7N5/zv+jduIfLrV2xdQXOHbaD6KgpGdO9PRPM1Y4Q9QkPkA==}
+ engines: {node: ^18.19.0 || >=20.5.0}
+
+ expect-type@1.4.0:
+ resolution: {integrity: sha512-KfYbmpRm0VbLjEvVa9yGwCi9GI34xvi7A/HXYWQO65CSD2u3MczUJSuwXKFIxlGsgBQizV9q5J9NHj4VG0n+pA==}
+ engines: {node: '>=12.0.0'}
+
+ fast-deep-equal@3.1.3:
+ resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
+
+ fast-glob@3.3.3:
+ resolution: {integrity: sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==}
+ engines: {node: '>=8.6.0'}
+
+ fast-json-stable-stringify@2.1.0:
+ resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==}
+
+ fast-levenshtein@2.0.6:
+ resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==}
+
+ fast-string-truncated-width@3.0.3:
+ resolution: {integrity: sha512-0jjjIEL6+0jag3l2XWWizO64/aZVtpiGE3t0Zgqxv0DPuxiMjvB3M24fCyhZUO4KomJQPj3LTSUnDP3GpdwC0g==}
+
+ fast-string-width@3.0.2:
+ resolution: {integrity: sha512-gX8LrtNEI5hq8DVUfRQMbr5lpaS4nMIWV+7XEbXk2b8kiQIizgnlr12B4dA3ZEx3308ze0O4Q1R+cHts8kyUJg==}
+
+ fast-wrap-ansi@0.2.2:
+ resolution: {integrity: sha512-7F2Fl+TjRSenLqlU3UjSH0iyqopqoZIu7eZVpEirP2g1GtWa2G/ecEmBdgz31+Mxr+ELclgg6sokpSFIQiZ02Q==}
+
+ fastq@1.20.1:
+ resolution: {integrity: sha512-GGToxJ/w1x32s/D2EKND7kTil4n8OVk/9mycTc4VDza13lOvpUZTGX3mFSCtV9ksdGBVzvsyAVLM6mHFThxXxw==}
+
+ fd-package-json@2.0.0:
+ resolution: {integrity: sha512-jKmm9YtsNXN789RS/0mSzOC1NUq9mkVd65vbSSVsKdjGvYXBuE4oWe2QOEoFeRmJg+lPuZxpmrfFclNhoRMneQ==}
+
+ fdir@6.5.0:
+ resolution: {integrity: sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==}
+ engines: {node: '>=12.0.0'}
+ peerDependencies:
+ picomatch: ^3 || ^4
+ peerDependenciesMeta:
+ picomatch:
+ optional: true
+
+ fetch-mock@11.1.5:
+ resolution: {integrity: sha512-KHmZDnZ1ry0pCTrX4YG5DtThHi0MH+GNI9caESnzX/nMJBrvppUHMvLx47M0WY9oAtKOMiPfZDRpxhlHg89BOA==}
+ engines: {node: '>=8.0.0'}
+ peerDependencies:
+ node-fetch: '*'
+ peerDependenciesMeta:
+ node-fetch:
+ optional: true
+
+ fflate@0.4.8:
+ resolution: {integrity: sha512-FJqqoDBR00Mdj9ppamLa/Y7vxm+PRmNWA67N846RvsoYVMKB4q3y/de5PA7gUmRMYK/8CMz2GDZQmCRN1wBcWA==}
+
+ fflate@0.8.2:
+ resolution: {integrity: sha512-cPJU47OaAoCbg0pBvzsgpTPhmhqI5eJjh/JIu8tPj5q+T7iLvW/JAYUqmE7KOB4R1ZyEhzBaIQpQpardBF5z8A==}
+
+ figures@6.1.0:
+ resolution: {integrity: sha512-d+l3qxjSesT4V7v2fh+QnmFnUWv9lSpjarhShNTgBOfA0ttejbQUAlHLitbjkoRiDulW0OPoQPYIGhIC8ohejg==}
+ engines: {node: '>=18'}
+
+ file-entry-cache@6.0.1:
+ resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==}
+ engines: {node: ^10.12.0 || >=12.0.0}
+
+ filelist@1.0.6:
+ resolution: {integrity: sha512-5giy2PkLYY1cP39p17Ech+2xlpTRL9HLspOfEgm0L6CwBXBTgsK5ou0JtzYuepxkaQ/tvhCFIJ5uXo0OrM2DxA==}
+
+ fill-range@7.1.1:
+ resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==}
+ engines: {node: '>=8'}
+
+ find-up@4.1.0:
+ resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==}
+ engines: {node: '>=8'}
+
+ find-up@5.0.0:
+ resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==}
+ engines: {node: '>=10'}
+
+ flat-cache@3.2.0:
+ resolution: {integrity: sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==}
+ engines: {node: ^10.12.0 || >=12.0.0}
+
+ flatted@3.4.2:
+ resolution: {integrity: sha512-PjDse7RzhcPkIJwy5t7KPWQSZ9cAbzQXcafsetQoD7sOJRQlGikNbx7yZp2OotDnJyrDcbyRq3Ttb18iYOqkxA==}
+
+ flatted@3.4.3:
+ resolution: {integrity: sha512-/zipXxyO6rGvuNGDiULY9MvEGSkb2gaG4GGH4ygMi0ZZzyMHdUZBmntJmx5x1G2VuPytCwGN4xsJP6cw+sK+vQ==}
+
+ for-each@0.3.5:
+ resolution: {integrity: sha512-dKx12eRCVIzqCxFGplyFKJMPvLEWgmNtUrpTiJIR5u97zEhRG8ySrtboPHZXx7daLxQVrl643cTzbab2tkQjxg==}
+ engines: {node: '>= 0.4'}
+
+ foreground-child@3.3.1:
+ resolution: {integrity: sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==}
+ engines: {node: '>=14'}
+
+ formatly@0.3.0:
+ resolution: {integrity: sha512-9XNj/o4wrRFyhSMJOvsuyMwy8aUfBaZ1VrqHVfohyXf0Sw0e+yfKG+xZaY3arGCOMdwFsqObtzVOc1gU9KiT9w==}
+ engines: {node: '>=18.3.0'}
+ hasBin: true
+
+ fraction.js@5.3.4:
+ resolution: {integrity: sha512-1X1NTtiJphryn/uLQz3whtY6jK3fTqoE3ohKs0tT+Ujr1W59oopxmoEh7Lu5p6vBaPbgoM0bzveAW4Qi5RyWDQ==}
+
+ fs-extra@10.1.0:
+ resolution: {integrity: sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==}
+ engines: {node: '>=12'}
+
+ fsevents@2.3.2:
+ resolution: {integrity: sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==}
+ engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
+ os: [darwin]
+
+ fsevents@2.3.3:
+ resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
+ engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
+ os: [darwin]
+
+ function-bind@1.1.2:
+ resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==}
+
+ generator-function@2.0.1:
+ resolution: {integrity: sha512-SFdFmIJi+ybC0vjlHN0ZGVGHc3lgE0DxPAT0djjVg+kjOnSqclqmj0KQ7ykTOLP6YxoqOvuAODGdcHJn+43q3g==}
+ engines: {node: '>= 0.4'}
+
+ gensync@1.0.0-beta.2:
+ resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==}
+ engines: {node: '>=6.9.0'}
+
+ get-caller-file@2.0.5:
+ resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==}
+ engines: {node: 6.* || 8.* || >= 10.*}
+
+ get-east-asian-width@1.6.0:
+ resolution: {integrity: sha512-QRbvDIbx6YklUe6RxeTeleMR0yv3cYH6PsPZHcnVn7xv7zO1BHN8r0XETu8n6Ye3Q+ahtSarc3WgtNWmehIBfA==}
+ engines: {node: '>=18'}
+
+ get-intrinsic@1.3.0:
+ resolution: {integrity: sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==}
+ engines: {node: '>= 0.4'}
+
+ get-nonce@1.0.1:
+ resolution: {integrity: sha512-FJhYRoDaiatfEkUK8HKlicmu/3SGFD51q3itKDGoSTysQJBnfOcxU5GxnhE1E6soB76MbT0MBtnKJuXyAx+96Q==}
+ engines: {node: '>=6'}
+
+ get-proto@1.0.1:
+ resolution: {integrity: sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==}
+ engines: {node: '>= 0.4'}
+
+ get-stream@9.0.1:
+ resolution: {integrity: sha512-kVCxPF3vQM/N0B1PmoqVUqgHP+EeVjmZSQn+1oCRPxd2P21P2F19lIgbR3HBosbB1PUhOAoctJnfEn2GbN2eZA==}
+ engines: {node: '>=18'}
+
+ glob-parent@5.1.2:
+ resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==}
+ engines: {node: '>= 6'}
+
+ glob-parent@6.0.2:
+ resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==}
+ engines: {node: '>=10.13.0'}
+
+ glob-to-regexp@0.4.1:
+ resolution: {integrity: sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==}
+
+ glob@10.5.0:
+ resolution: {integrity: sha512-DfXN8DfhJ7NH3Oe7cFmu3NCu1wKbkReJ8TorzSAFbSKrlNaQSKfIzqYqVY8zlbs2NLBbWpRiU52GX2PbaBVNkg==}
+ deprecated: Old versions of glob are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me
+ hasBin: true
+
+ globals@13.24.0:
+ resolution: {integrity: sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==}
+ engines: {node: '>=8'}
+
+ gopd@1.2.0:
+ resolution: {integrity: sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==}
+ engines: {node: '>= 0.4'}
+
+ graceful-fs@4.2.11:
+ resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==}
+
+ graphemer@1.4.0:
+ resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==}
+
+ has-flag@4.0.0:
+ resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==}
+ engines: {node: '>=8'}
+
+ has-property-descriptors@1.0.2:
+ resolution: {integrity: sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==}
+
+ has-symbols@1.1.0:
+ resolution: {integrity: sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==}
+ engines: {node: '>= 0.4'}
+
+ has-tostringtag@1.0.2:
+ resolution: {integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==}
+ engines: {node: '>= 0.4'}
+
+ hash-base@3.0.5:
+ resolution: {integrity: sha512-vXm0l45VbcHEVlTCzs8M+s0VeYsB2lnlAaThoLKGXr3bE/VWDOelNUnycUPEhKEaXARL2TEFjBOyUiM6+55KBg==}
+ engines: {node: '>= 0.10'}
+
+ hash-base@3.1.2:
+ resolution: {integrity: sha512-Bb33KbowVTIj5s7Ked1OsqHUeCpz//tPwR+E2zJgJKo9Z5XolZ9b6bdUgjmYlwnWhoOQKoTd1TYToZGn5mAYOg==}
+ engines: {node: '>= 0.8'}
+
+ hash.js@1.1.7:
+ resolution: {integrity: sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==}
+
+ hasown@2.0.4:
+ resolution: {integrity: sha512-T2UbfbBEF32wiepXIsMlTW9+dDYC6wMh/t/vYA4tuOMKqWz/n3vr1NFSxQiyP+zk2mXsoMA/i/7qV6LKut1t1A==}
+ engines: {node: '>= 0.4'}
+
+ he@1.2.0:
+ resolution: {integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==}
+ hasBin: true
+
+ hmac-drbg@1.0.1:
+ resolution: {integrity: sha512-Tti3gMqLdZfhOQY1Mzf/AanLiqh1WTiJgEj26ZuYQ9fbkLomzGchCws4FyrSd4VkpBfiNhaE1On+lOz894jvXg==}
+
+ hoist-non-react-statics@3.3.2:
+ resolution: {integrity: sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==}
+
+ html-encoding-sniffer@4.0.0:
+ resolution: {integrity: sha512-Y22oTqIU4uuPgEemfz7NDJz6OeKf12Lsu+QC+s3BVpda64lTiMYCyGwg5ki4vFxkMwQdeZDl2adZoqUgdFuTgQ==}
+ engines: {node: '>=18'}
+
+ html-escaper@2.0.2:
+ resolution: {integrity: sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==}
+
+ html-minifier-terser@6.1.0:
+ resolution: {integrity: sha512-YXxSlJBZTP7RS3tWnQw74ooKa6L9b9i9QYXY21eUEvhZ3u9XLfv6OnFsQq6RxkhHygsaUMvYsZRV5rU/OVNZxw==}
+ engines: {node: '>=12'}
+ hasBin: true
+
+ html-parse-stringify@3.0.1:
+ resolution: {integrity: sha512-KknJ50kTInJ7qIScF3jeaFRpMpE8/lfiTdzf/twXyPBLAGrLRTmkz3AdTnKeh40X8k9L2fdYwEp/42WGXIRGcg==}
+
+ http-proxy-agent@7.0.2:
+ resolution: {integrity: sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==}
+ engines: {node: '>= 14'}
+
+ https-browserify@1.0.0:
+ resolution: {integrity: sha512-J+FkSdyD+0mA0N+81tMotaRMfSL9SGi+xpD3T6YApKsc3bGSXJlfXri3VyFOeYkfLRQisDk1W+jIFFKBeUBbBg==}
+
+ https-proxy-agent@5.0.1:
+ resolution: {integrity: sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==}
+ engines: {node: '>= 6'}
+
+ https-proxy-agent@7.0.6:
+ resolution: {integrity: sha512-vK9P5/iUfdl95AI+JVyUuIcVtd4ofvtrOr3HNtM2yxC9bnMbEdp3x01OhQNnjb8IJYi38VlTE3mBXwcfvywuSw==}
+ engines: {node: '>= 14'}
+
+ human-signals@8.0.1:
+ resolution: {integrity: sha512-eKCa6bwnJhvxj14kZk5NCPc6Hb6BdsU9DZcOnmQKSnO1VKrfV0zCvtttPZUsBvjmNDn8rpcJfpwSYnHBjc95MQ==}
+ engines: {node: '>=18.18.0'}
+
+ i18next-browser-languagedetector@8.2.1:
+ resolution: {integrity: sha512-bZg8+4bdmaOiApD7N7BPT9W8MLZG+nPTOFlLiJiT8uzKXFjhxw4v2ierCXOwB5sFDMtuA5G4kgYZ0AznZxQ/cw==}
+
+ i18next-cli@1.64.2:
+ resolution: {integrity: sha512-9drqYU5Gfg540nG8ju/UNW1CuRRlEZ+PPDIsUD4nqxAX+xLzfLnOmaGcgCUOv8ksmV4i9pq8ijYl/vp55+8QDw==}
+ engines: {node: '>=22'}
+ hasBin: true
+
+ i18next-resources-for-ts@2.1.0:
+ resolution: {integrity: sha512-n5UexwEVt0OoIAhG2MWpSnAVJW1U8mQrQTmXyxc5DMAx+NLhcLZhSMJo/FnUsA5JQ3obTYqTgB7YIuZKWpDgow==}
+ hasBin: true
+
+ i18next@25.10.10:
+ resolution: {integrity: sha512-cqUW2Z3EkRx7NqSyywjkgCLK7KLCL6IFVFcONG7nVYIJ3ekZ1/N5jUsihHV6Bq37NfhgtczxJcxduELtjTwkuQ==}
+ peerDependencies:
+ typescript: ^5 || ^6
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+
+ i18next@26.3.3:
+ resolution: {integrity: sha512-aYVegyBdXSO93CMMihvr47jI7GHSOcIahMpJX+qzUXDzW4xDJf2uenIA+45vDU+YhiVdcfsql70AC9RVdMNrHg==}
+ peerDependencies:
+ typescript: ^5 || ^6
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+
+ iconv-lite@0.6.3:
+ resolution: {integrity: sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==}
+ engines: {node: '>=0.10.0'}
+
+ iconv-lite@0.7.2:
+ resolution: {integrity: sha512-im9DjEDQ55s9fL4EYzOAv0yMqmMBSZp6G0VvFyTMPKWxiSBHUj9NW/qqLmXUwXrrM7AvqSlTCfvqRb0cM8yYqw==}
+ engines: {node: '>=0.10.0'}
+
+ ieee754@1.2.1:
+ resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==}
+
+ ignore@5.3.2:
+ resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==}
+ engines: {node: '>= 4'}
+
+ immutable@5.1.9:
+ resolution: {integrity: sha512-m8nVez3rwrgmWxtLMt1ZYXB2Lv7OKYn/disyxAlSDYAlKSlFoPPfIAmAM/M5xqL4m4C/wAPw7S2/CNaUii1Hxg==}
+
+ import-fresh@3.3.1:
+ resolution: {integrity: sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==}
+ engines: {node: '>=6'}
+
+ imurmurhash@0.1.4:
+ resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==}
+ engines: {node: '>=0.8.19'}
+
+ indent-string@4.0.0:
+ resolution: {integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==}
+ engines: {node: '>=8'}
+
+ inherits@2.0.4:
+ resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==}
+
+ inquirer@14.0.2:
+ resolution: {integrity: sha512-VsSx1JneSNp3ld1veMTLe+UDcUD8Tw2/jjOthhkX3/IX2q+xHhVELifeb/hsb1fBw31pabEPNUf/xUOyb+KZjA==}
+ engines: {node: '>=23.5.0 || ^22.13.0 || ^20.17.0'}
+ peerDependencies:
+ '@types/node': '>=18'
+ peerDependenciesMeta:
+ '@types/node':
+ optional: true
+
+ is-arguments@1.2.0:
+ resolution: {integrity: sha512-7bVbi0huj/wrIAOzb8U1aszg9kdi3KN/CyU19CTI7tAoZYEZoL9yCDXpbXN+uPsuWnP02cyug1gleqq+TU+YCA==}
+ engines: {node: '>= 0.4'}
+
+ is-arrayish@0.2.1:
+ resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==}
+
+ is-binary-path@2.1.0:
+ resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==}
+ engines: {node: '>=8'}
+
+ is-callable@1.2.7:
+ resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==}
+ engines: {node: '>= 0.4'}
+
+ is-core-module@2.16.2:
+ resolution: {integrity: sha512-evOr8xfXKxE6qSR0hSXL2r3sd7ALj8+7jQEUvPYcm5sgZFdJ+AYzT6yNmJenvIYQBgIGwfwz08sL8zoL7yq2BA==}
+ engines: {node: '>= 0.4'}
+
+ is-docker@3.0.0:
+ resolution: {integrity: sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==}
+ engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
+ hasBin: true
+
+ is-extglob@2.1.1:
+ resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
+ engines: {node: '>=0.10.0'}
+
+ is-fullwidth-code-point@3.0.0:
+ resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==}
+ engines: {node: '>=8'}
+
+ is-generator-function@1.1.2:
+ resolution: {integrity: sha512-upqt1SkGkODW9tsGNG5mtXTXtECizwtS2kA161M+gJPc1xdb/Ax629af6YrTwcOeQHbewrPNlE5Dx7kzvXTizA==}
+ engines: {node: '>= 0.4'}
+
+ is-glob@4.0.3:
+ resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==}
+ engines: {node: '>=0.10.0'}
+
+ is-inside-container@1.0.0:
+ resolution: {integrity: sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==}
+ engines: {node: '>=14.16'}
+ hasBin: true
+
+ is-interactive@2.0.0:
+ resolution: {integrity: sha512-qP1vozQRI+BMOPcjFzrjXuQvdak2pHNUMZoeG2eRbiSqyvbEf/wQtEOTOX1guk6E3t36RkaqiSt8A/6YElNxLQ==}
+ engines: {node: '>=12'}
+
+ is-nan@1.3.2:
+ resolution: {integrity: sha512-E+zBKpQ2t6MEo1VsonYmluk9NxGrbzpeeLC2xIViuO2EjU2xsXsBPwTr3Ykv9l08UYEVEdWeRZNouaZqF6RN0w==}
+ engines: {node: '>= 0.4'}
+
+ is-network-error@1.3.1:
+ resolution: {integrity: sha512-6QCxa49rQbmUWLfk0nuGqzql9U8uaV2H6279bRErPBHe/109hCzsLUBUHfbEtvLIHBd6hyXbgedBSHevm43Edw==}
+ engines: {node: '>=16'}
+
+ is-number@7.0.0:
+ resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==}
+ engines: {node: '>=0.12.0'}
+
+ is-path-inside@3.0.3:
+ resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==}
+ engines: {node: '>=8'}
+
+ is-plain-obj@4.1.0:
+ resolution: {integrity: sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==}
+ engines: {node: '>=12'}
+
+ is-potential-custom-element-name@1.0.1:
+ resolution: {integrity: sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==}
+
+ is-regex@1.2.1:
+ resolution: {integrity: sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g==}
+ engines: {node: '>= 0.4'}
+
+ is-stream@4.0.1:
+ resolution: {integrity: sha512-Dnz92NInDqYckGEUJv689RbRiTSEHCQ7wOVeALbkOz999YpqT46yMRIGtSNl2iCL1waAZSx40+h59NV/EwzV/A==}
+ engines: {node: '>=18'}
+
+ is-subset@0.1.1:
+ resolution: {integrity: sha512-6Ybun0IkarhmEqxXCNw/C0bna6Zb/TkfUX9UbwJtK6ObwAVCxmAP308WWTHviM/zAqXk05cdhYsUsZeGQh99iw==}
+
+ is-typed-array@1.1.15:
+ resolution: {integrity: sha512-p3EcsicXjit7SaskXHs1hA91QxgTw46Fv6EFKKGS5DRFLD8yKnohjF3hxoju94b/OcMZoQukzpPpBE9uLVKzgQ==}
+ engines: {node: '>= 0.4'}
+
+ is-unicode-supported@2.1.0:
+ resolution: {integrity: sha512-mE00Gnza5EEB3Ds0HfMyllZzbBrmLOX3vfWoj9A9PEnTfratQ/BcaJOuMhnkhjXvb2+FkY3VuHqtAGpTPmglFQ==}
+ engines: {node: '>=18'}
+
+ is-wsl@3.1.1:
+ resolution: {integrity: sha512-e6rvdUCiQCAuumZslxRJWR/Doq4VpPR82kqclvcS0efgt430SlGIk05vdCN58+VrzgtIcfNODjozVielycD4Sw==}
+ engines: {node: '>=16'}
+
+ isarray@1.0.0:
+ resolution: {integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==}
+
+ isarray@2.0.5:
+ resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==}
+
+ isexe@2.0.0:
+ resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
+
+ isomorphic-timers-promises@1.0.1:
+ resolution: {integrity: sha512-u4sej9B1LPSxTGKB/HiuzvEQnXH0ECYkSVQU39koSwmFAxhlEAFl9RdTvLv4TOTQUgBS5O3O5fwUxk6byBZ+IQ==}
+ engines: {node: '>=10'}
+
+ istanbul-lib-coverage@3.2.2:
+ resolution: {integrity: sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==}
+ engines: {node: '>=8'}
+
+ istanbul-lib-report@3.0.1:
+ resolution: {integrity: sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==}
+ engines: {node: '>=10'}
+
+ istanbul-reports@3.2.0:
+ resolution: {integrity: sha512-HGYWWS/ehqTV3xN10i23tkPkpH46MLCIMFNCaaKNavAXTF1RkqxawEPtnjnGZ6XKSInBKkiOA5BKS+aZiY3AvA==}
+ engines: {node: '>=8'}
+
+ jackspeak@3.4.3:
+ resolution: {integrity: sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==}
+
+ jake@10.9.4:
+ resolution: {integrity: sha512-wpHYzhxiVQL+IV05BLE2Xn34zW1S223hvjtqk0+gsPrwd/8JNLXJgZZM/iPFsYc1xyphF+6M6EvdE5E9MBGkDA==}
+ engines: {node: '>=10'}
+ hasBin: true
+
+ jiti@2.6.1:
+ resolution: {integrity: sha512-ekilCSN1jwRvIbgeg/57YFh8qQDNbwDb9xT/qu2DAHbFFZUicIl4ygVaAvzveMhMVr3LnpSKTNnwt8PoOfmKhQ==}
+ hasBin: true
+
+ jiti@2.7.0:
+ resolution: {integrity: sha512-AC/7JofJvZGrrneWNaEnJeOLUx+JlGt7tNa0wZiRPT4MY1wmfKjt2+6O2p2uz2+skll8OZZmJMNqeke7kKbNgQ==}
+ hasBin: true
+
+ jose@6.2.3:
+ resolution: {integrity: sha512-YYVDInQKFJfR/xa3ojUTl8c2KoTwiL1R5Wg9YCydwH0x0B9grbzlg5HC7mMjCtUJjbQ/YnGEZIhI5tCgfTb4Hw==}
+
+ jose@6.2.4:
+ resolution: {integrity: sha512-N8acGzVsQy6M/fjFcxtysNc4Q379TcM5dM/qKkNtsHFji88yANnXTr7BLeP75iPnFwBfQzM/jg2BZ9+HZrHCZA==}
+
+ js-tokens@10.0.0:
+ resolution: {integrity: sha512-lM/UBzQmfJRo9ABXbPWemivdCW8V2G8FHaHdypQaIy523snUjog0W71ayWXTjiR+ixeMyVHN2XcpnTd/liPg/Q==}
+
+ js-tokens@4.0.0:
+ resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
+
+ js-yaml@4.3.0:
+ resolution: {integrity: sha512-1td788aAnnZ5qs7V2QIRl1owjtYpbKt749Y3xauqQgwIIGF/xXWz1wMTEBx5O3LK3lXLVuqXPdPxj2BoFHaW9Q==}
+ hasBin: true
+
+ jsdom@26.1.0:
+ resolution: {integrity: sha512-Cvc9WUhxSMEo4McES3P7oK3QaXldCfNWp7pl2NNeiIFlCoLr3kfq9kb1fxftiwk1FLV7CvpvDfonxtzUDeSOPg==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ canvas: ^3.0.0
+ peerDependenciesMeta:
+ canvas:
+ optional: true
+
+ jsesc@3.1.0:
+ resolution: {integrity: sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==}
+ engines: {node: '>=6'}
+ hasBin: true
+
+ json-buffer@3.0.1:
+ resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==}
+
+ json-parse-even-better-errors@2.3.1:
+ resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==}
+
+ json-schema-traverse@0.4.1:
+ resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==}
+
+ json-stable-stringify-without-jsonify@1.0.1:
+ resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==}
+
+ json5@2.2.3:
+ resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==}
+ engines: {node: '>=6'}
+ hasBin: true
+
+ jsonc-parser@3.3.1:
+ resolution: {integrity: sha512-HUgH65KyejrUFPvHFPbqOY0rsFip3Bo5wb4ngvdi1EpCYWUQDC5V+Y7mZws+DLkr4M//zQJoanu1SP+87Dv1oQ==}
+
+ jsonfile@6.2.0:
+ resolution: {integrity: sha512-FGuPw30AdOIUTRMC2OMRtQV+jkVj2cfPqSeWXv1NEAJ1qZ5zb1X6z1mFhbfOB/iy3ssJCD+3KuZ8r8C3uVFlAg==}
+
+ jwt-decode@4.0.0:
+ resolution: {integrity: sha512-+KJGIyHgkGuIq3IEBNftfhW/LfWhXUIY6OmyVWjliu5KH1y0fw7VQ8YndE2O4qZdMSd9SqbnC8GOcZEy0Om7sA==}
+ engines: {node: '>=18'}
+
+ keyv@4.5.4:
+ resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==}
+
+ knip@5.88.1:
+ resolution: {integrity: sha512-tpy5o7zu1MjawVkLPuahymVJekYY3kYjvzcoInhIchgePxTlo+api90tBv2KfhAIe5uXh+mez1tAfmbv8/TiZg==}
+ engines: {node: '>=18.18.0'}
+ hasBin: true
+ peerDependencies:
+ '@types/node': '>=18'
+ typescript: '>=5.0.4 <7'
+
+ levn@0.4.1:
+ resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==}
+ engines: {node: '>= 0.8.0'}
+
+ lightningcss-android-arm64@1.32.0:
+ resolution: {integrity: sha512-YK7/ClTt4kAK0vo6w3X+Pnm0D2cf2vPHbhOXdoNti1Ga0al1P4TBZhwjATvjNwLEBCnKvjJc2jQgHXH0NEwlAg==}
+ engines: {node: '>= 12.0.0'}
+ cpu: [arm64]
+ os: [android]
+
+ lightningcss-darwin-arm64@1.32.0:
+ resolution: {integrity: sha512-RzeG9Ju5bag2Bv1/lwlVJvBE3q6TtXskdZLLCyfg5pt+HLz9BqlICO7LZM7VHNTTn/5PRhHFBSjk5lc4cmscPQ==}
+ engines: {node: '>= 12.0.0'}
+ cpu: [arm64]
+ os: [darwin]
+
+ lightningcss-darwin-x64@1.32.0:
+ resolution: {integrity: sha512-U+QsBp2m/s2wqpUYT/6wnlagdZbtZdndSmut/NJqlCcMLTWp5muCrID+K5UJ6jqD2BFshejCYXniPDbNh73V8w==}
+ engines: {node: '>= 12.0.0'}
+ cpu: [x64]
+ os: [darwin]
+
+ lightningcss-freebsd-x64@1.32.0:
+ resolution: {integrity: sha512-JCTigedEksZk3tHTTthnMdVfGf61Fky8Ji2E4YjUTEQX14xiy/lTzXnu1vwiZe3bYe0q+SpsSH/CTeDXK6WHig==}
+ engines: {node: '>= 12.0.0'}
+ cpu: [x64]
+ os: [freebsd]
+
+ lightningcss-linux-arm-gnueabihf@1.32.0:
+ resolution: {integrity: sha512-x6rnnpRa2GL0zQOkt6rts3YDPzduLpWvwAF6EMhXFVZXD4tPrBkEFqzGowzCsIWsPjqSK+tyNEODUBXeeVHSkw==}
+ engines: {node: '>= 12.0.0'}
+ cpu: [arm]
+ os: [linux]
+
+ lightningcss-linux-arm64-gnu@1.32.0:
+ resolution: {integrity: sha512-0nnMyoyOLRJXfbMOilaSRcLH3Jw5z9HDNGfT/gwCPgaDjnx0i8w7vBzFLFR1f6CMLKF8gVbebmkUN3fa/kQJpQ==}
+ engines: {node: '>= 12.0.0'}
+ cpu: [arm64]
+ os: [linux]
+ libc: [glibc]
+
+ lightningcss-linux-arm64-musl@1.32.0:
+ resolution: {integrity: sha512-UpQkoenr4UJEzgVIYpI80lDFvRmPVg6oqboNHfoH4CQIfNA+HOrZ7Mo7KZP02dC6LjghPQJeBsvXhJod/wnIBg==}
+ engines: {node: '>= 12.0.0'}
+ cpu: [arm64]
+ os: [linux]
+ libc: [musl]
+
+ lightningcss-linux-x64-gnu@1.32.0:
+ resolution: {integrity: sha512-V7Qr52IhZmdKPVr+Vtw8o+WLsQJYCTd8loIfpDaMRWGUZfBOYEJeyJIkqGIDMZPwPx24pUMfwSxxI8phr/MbOA==}
+ engines: {node: '>= 12.0.0'}
+ cpu: [x64]
+ os: [linux]
+ libc: [glibc]
+
+ lightningcss-linux-x64-musl@1.32.0:
+ resolution: {integrity: sha512-bYcLp+Vb0awsiXg/80uCRezCYHNg1/l3mt0gzHnWV9XP1W5sKa5/TCdGWaR/zBM2PeF/HbsQv/j2URNOiVuxWg==}
+ engines: {node: '>= 12.0.0'}
+ cpu: [x64]
+ os: [linux]
+ libc: [musl]
+
+ lightningcss-win32-arm64-msvc@1.32.0:
+ resolution: {integrity: sha512-8SbC8BR40pS6baCM8sbtYDSwEVQd4JlFTOlaD3gWGHfThTcABnNDBda6eTZeqbofalIJhFx0qKzgHJmcPTnGdw==}
+ engines: {node: '>= 12.0.0'}
+ cpu: [arm64]
+ os: [win32]
+
+ lightningcss-win32-x64-msvc@1.32.0:
+ resolution: {integrity: sha512-Amq9B/SoZYdDi1kFrojnoqPLxYhQ4Wo5XiL8EVJrVsB8ARoC1PWW6VGtT0WKCemjy8aC+louJnjS7U18x3b06Q==}
+ engines: {node: '>= 12.0.0'}
+ cpu: [x64]
+ os: [win32]
+
+ lightningcss@1.32.0:
+ resolution: {integrity: sha512-NXYBzinNrblfraPGyrbPoD19C1h9lfI/1mzgWYvXUTe414Gz/X1FD2XBZSZM7rRTrMA8JL3OtAaGifrIKhQ5yQ==}
+ engines: {node: '>= 12.0.0'}
+
+ lines-and-columns@1.2.4:
+ resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==}
+
+ livekit-client@2.21.0:
+ resolution: {integrity: sha512-RBUhPkV/sl1nzl8lokVlK5uATPwn0AlsudCBZXissw/kDl9yz8ac4pNJ43iPpMVoHOeBYH/BZ3vUC1adqa/zFQ==}
+ peerDependencies:
+ '@types/dom-mediacapture-record': ^1
+
+ locate-path@5.0.0:
+ resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==}
+ engines: {node: '>=8'}
+
+ locate-path@6.0.0:
+ resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==}
+ engines: {node: '>=10'}
+
+ lodash-es@4.18.1:
+ resolution: {integrity: sha512-J8xewKD/Gk22OZbhpOVSwcs60zhd95ESDwezOFuA3/099925PdHJ7OFHNTGtajL3AlZkykD32HykiMo+BIBI8A==}
+
+ lodash.debounce@4.0.8:
+ resolution: {integrity: sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==}
+
+ lodash.merge@4.6.2:
+ resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==}
+
+ log-symbols@7.0.1:
+ resolution: {integrity: sha512-ja1E3yCr9i/0hmBVaM0bfwDjnGy8I/s6PP4DFp+yP+a+mrHO4Rm7DtmnqROTUkHIkqffC84YY7AeqX6oFk0WFg==}
+ engines: {node: '>=18'}
+
+ loglevel@1.9.1:
+ resolution: {integrity: sha512-hP3I3kCrDIMuRwAwHltphhDM1r8i55H33GgqjXbrisuJhF4kRhW1dNuxsRklp4bXl8DSdLaNLuiL4A/LWRfxvg==}
+ engines: {node: '>= 0.6.0'}
+
+ loglevel@1.9.2:
+ resolution: {integrity: sha512-HgMmCqIJSAKqo68l0rS2AanEWfkxaZ5wNiEFb5ggm08lDs9Xl2KxBlX3PTcaD2chBM1gXAYf491/M2Rv8Jwayg==}
+ engines: {node: '>= 0.6.0'}
+
+ long@5.3.2:
+ resolution: {integrity: sha512-mNAgZ1GmyNhD7AuqnTG3/VQ26o760+ZYBPKjPvugO8+nLbYfX6TVpJPseBvopbdY+qpZ/lKUnmEc1LeZYS3QAA==}
+
+ loupe@3.2.1:
+ resolution: {integrity: sha512-CdzqowRJCeLU72bHvWqwRBBlLcMEtIvGrlvef74kMnV2AolS9Y8xUv1I0U/MNAWMhBlKIoyuEgoJ0t/bbwHbLQ==}
+
+ lower-case@2.0.2:
+ resolution: {integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==}
+
+ lru-cache@10.4.3:
+ resolution: {integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==}
+
+ lru-cache@5.1.1:
+ resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==}
+
+ lz-string@1.5.0:
+ resolution: {integrity: sha512-h5bgJWpxJNswbU7qCrV0tIKQCaS3blPDrqKWx+QxzuzL1zGUzij9XCWLrSLsJPu5t+eWA/ycetzYAO5IOMcWAQ==}
+ hasBin: true
+
+ magic-string@0.30.21:
+ resolution: {integrity: sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==}
+
+ magic-string@0.30.8:
+ resolution: {integrity: sha512-ISQTe55T2ao7XtlAStud6qwYPZjE4GK1S/BeVPus4jrq6JuOnQ00YKQC581RWhR122W7msZV263KzVeLoqidyQ==}
+ engines: {node: '>=12'}
+
+ magicast@0.5.3:
+ resolution: {integrity: sha512-pVKE4UdSQ7DvHzivsCIFx2BJn1mHG6KsyrFcaxFx6tONdneEuThrDx0Cj3AMg58KyN4pzYT+LHOotxDQDjNvkw==}
+
+ make-dir@4.0.0:
+ resolution: {integrity: sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==}
+ engines: {node: '>=10'}
+
+ math-intrinsics@1.1.0:
+ resolution: {integrity: sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==}
+ engines: {node: '>= 0.4'}
+
+ matrix-events-sdk@0.0.1:
+ resolution: {integrity: sha512-1QEOsXO+bhyCroIe2/A5OwaxHvBm7EsSQ46DEDn8RBIfQwN5HWBpFvyWWR4QY0KHPPnnJdI99wgRiAl7Ad5qaA==}
+
+ matrix-js-sdk@https://codeload.github.com/matrix-org/matrix-js-sdk/tar.gz/8c95727b6278fe7942c20d0b9485f984dd0694b7:
+ resolution: {gitHosted: true, integrity: sha512-ThGe61xx0d1L1weA8hvodzZOcATv2jR+LXd/WKwSsVT2GcR8AADY4pPxgaNvhFfl9tLMi2qMHeNay36RjDa6Zw==, tarball: https://codeload.github.com/matrix-org/matrix-js-sdk/tar.gz/8c95727b6278fe7942c20d0b9485f984dd0694b7}
+ version: 41.7.0
+ engines: {node: '>=22.0.0'}
+
+ matrix-widget-api@1.17.0:
+ resolution: {integrity: sha512-5FHoo3iEP3Bdlv5jsYPWOqj+pGdFQNLWnJLiB0V7Ygne7bb+Gsj3ibyFyHWC6BVw+Z+tSW4ljHpO17I9TwStwQ==}
+
+ md5.js@1.3.5:
+ resolution: {integrity: sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==}
+
+ merge2@1.4.1:
+ resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==}
+ engines: {node: '>= 8'}
+
+ micromatch@4.0.8:
+ resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==}
+ engines: {node: '>=8.6'}
+
+ miller-rabin@4.0.1:
+ resolution: {integrity: sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==}
+ hasBin: true
+
+ mime-db@1.52.0:
+ resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==}
+ engines: {node: '>= 0.6'}
+
+ mime-types@2.1.35:
+ resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==}
+ engines: {node: '>= 0.6'}
+
+ mimic-function@5.0.1:
+ resolution: {integrity: sha512-VP79XUPxV2CigYP3jWwAUFSku2aKqBH7uTAapFWCBqutsbmDo96KY5o8uh6U+/YSIn5OxJnXp73beVkpqMIGhA==}
+ engines: {node: '>=18'}
+
+ min-indent@1.0.1:
+ resolution: {integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==}
+ engines: {node: '>=4'}
+
+ minimalistic-assert@1.0.1:
+ resolution: {integrity: sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==}
+
+ minimalistic-crypto-utils@1.0.1:
+ resolution: {integrity: sha512-JIYlbt6g8i5jKfJ3xz7rF0LXmv2TkDxBLUkiBeZ7bAx4GnnNMr8xFpGnOxn6GhTEHx3SjRrZEoU+j04prX1ktg==}
+
+ minimatch@10.2.5:
+ resolution: {integrity: sha512-MULkVLfKGYDFYejP07QOurDLLQpcjk7Fw+7jXS2R2czRQzR56yHRveU5NDJEOviH+hETZKSkIk5c+T23GjFUMg==}
+ engines: {node: 18 || 20 || >=22}
+
+ minimatch@10.2.6:
+ resolution: {integrity: sha512-vpLQEs+VLCr1nU0BXS07maYoFwlDAH0gngQuuttxIwutDFEMHq2blX+8vpgxDdK3J1PwjCJiep77OitTZ4Ll1A==}
+ engines: {node: 18 || 20 || >=22}
+
+ minimist@1.2.8:
+ resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==}
+
+ minipass@7.1.3:
+ resolution: {integrity: sha512-tEBHqDnIoM/1rXME1zgka9g6Q2lcoCkxHLuc7ODJ5BxbP5d4c2Z5cGgtXAku59200Cx7diuHTOYfSBD8n6mm8A==}
+ engines: {node: '>=16 || 14 >=14.17'}
+
+ mrmime@2.0.1:
+ resolution: {integrity: sha512-Y3wQdFg2Va6etvQ5I82yUhGdsKrcYox6p7FfL1LbK2J4V01F9TGlepTIhnK24t7koZibmg82KGglhA1XK5IsLQ==}
+ engines: {node: '>=10'}
+
+ ms@2.1.3:
+ resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
+
+ mute-stream@3.0.0:
+ resolution: {integrity: sha512-dkEJPVvun4FryqBmZ5KhDo0K9iDXAwn08tMLDinNdRBNPcYEDiWYysLcc6k3mjTMlbP9KyylvRpd4wFtwrT9rw==}
+ engines: {node: ^20.17.0 || >=22.9.0}
+
+ nanoid@3.3.16:
+ resolution: {integrity: sha512-bzlKTyNJ7+LdGIIwy8ijFpIqEQIvafahV7eYykJ8Cvh42EdJeODoJ6gUJXpQJvej1BddH8OqTXZNE/KfbWAu8Q==}
+ engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
+ hasBin: true
+
+ natural-compare@1.4.0:
+ resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==}
+
+ no-case@3.0.4:
+ resolution: {integrity: sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==}
+
+ node-addon-api@7.1.1:
+ resolution: {integrity: sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==}
+
+ node-fetch@2.7.0:
+ resolution: {integrity: sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==}
+ engines: {node: 4.x || >=6.0.0}
+ peerDependencies:
+ encoding: ^0.1.0
+ peerDependenciesMeta:
+ encoding:
+ optional: true
+
+ node-html-parser@5.4.2:
+ resolution: {integrity: sha512-RaBPP3+51hPne/OolXxcz89iYvQvKOydaqoePpOgXcrOKZhjVIzmpKZz+Hd/RBO2/zN2q6CNJhQzucVz+u3Jyw==}
+
+ node-releases@2.0.37:
+ resolution: {integrity: sha512-1h5gKZCF+pO/o3Iqt5Jp7wc9rH3eJJ0+nh/CIoiRwjRxde/hAHyLPXYN4V3CqKAbiZPSeJFSWHmJsbkicta0Eg==}
+
+ node-stdlib-browser@1.3.1:
+ resolution: {integrity: sha512-X75ZN8DCLftGM5iKwoYLA3rjnrAEs97MkzvSd4q2746Tgpg8b8XWiBGiBG4ZpgcAqBgtgPHTiAc8ZMCvZuikDw==}
+ engines: {node: '>=10'}
+
+ normalize-path@3.0.0:
+ resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==}
+ engines: {node: '>=0.10.0'}
+
+ normalize.css@8.0.1:
+ resolution: {integrity: sha512-qizSNPO93t1YUuUhP22btGOo3chcvDFqFaj2TRybP0DMxkHOCTYwp3n34fel4a31ORXy4m1Xq0Gyqpb5m33qIg==}
+
+ npm-run-path@6.0.0:
+ resolution: {integrity: sha512-9qny7Z9DsQU8Ou39ERsPU4OZQlSTP47ShQzuKZ6PRXpYLtIFgl/DEBYEXKlvcEa+9tHVcK8CF81Y2V72qaZhWA==}
+ engines: {node: '>=18'}
+
+ nth-check@2.1.1:
+ resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==}
+
+ nwsapi@2.2.23:
+ resolution: {integrity: sha512-7wfH4sLbt4M0gCDzGE6vzQBo0bfTKjU7Sfpqy/7gs1qBfYz2vEJH6vXcBKpO3+6Yu1telwd0t9HpyOoLEQQbIQ==}
+
+ object-inspect@1.13.4:
+ resolution: {integrity: sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==}
+ engines: {node: '>= 0.4'}
+
+ object-is@1.1.6:
+ resolution: {integrity: sha512-F8cZ+KfGlSGi09lJT7/Nd6KJZ9ygtvYC0/UYYLI9nmQKLMnydpB9yvbv9K1uSkEu7FU9vYPmVwLg328tX+ot3Q==}
+ engines: {node: '>= 0.4'}
+
+ object-keys@1.1.1:
+ resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==}
+ engines: {node: '>= 0.4'}
+
+ object.assign@4.1.7:
+ resolution: {integrity: sha512-nK28WOo+QIjBkDduTINE4JkF/UJJKyf2EJxvJKfblDpyg0Q+pkOHNTL0Qwy6NP6FhE/EnzV73BxxqcJaXY9anw==}
+ engines: {node: '>= 0.4'}
+
+ observable-hooks@4.2.4:
+ resolution: {integrity: sha512-FdTQgyw1h5bG/QHCBIqctdBSnv9VARJCEilgpV6L2qlw1yeLqFIwPm4U15dMtl5kDmNN0hSt+Nl6iYbLFwEcQA==}
+ peerDependencies:
+ react: '>=16.8.0'
+ react-dom: '>=16.8.0'
+ rxjs: '>=6.0.0'
+
+ obug@2.1.3:
+ resolution: {integrity: sha512-9miFgM2OFba7hB+pRgvtV84pYTBaoTHohvmIgiRt6dRIzbwEOIaNaP+dIlGs2fNFoB0SeISs0Jz5WFVRid6Xyg==}
+ engines: {node: '>=12.20.0'}
+
+ oidc-client-ts@3.5.0:
+ resolution: {integrity: sha512-l2q8l9CTCTOlbX+AnK4p3M+4CEpKpyQhle6blQkdFhm0IsBqsxm15bYaSa11G7pWdsYr6epdsRZxJpCyCRbT8A==}
+ engines: {node: '>=18'}
+
+ once@1.4.0:
+ resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==}
+
+ onetime@7.0.0:
+ resolution: {integrity: sha512-VXJjc87FScF88uafS3JllDgvAm+c/Slfz06lorj2uAY34rlUu0Nt+v8wreiImcrgAjjIHp1rXpTDlLOGw29WwQ==}
+ engines: {node: '>=18'}
+
+ open@10.2.0:
+ resolution: {integrity: sha512-YgBpdJHPyQ2UE5x+hlSXcnejzAvD0b22U2OuAP+8OnlJT+PjWPxtgmGqKKc+RgTM63U9gN0YzrYc71R2WT/hTA==}
+ engines: {node: '>=18'}
+
+ optionator@0.9.4:
+ resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==}
+ engines: {node: '>= 0.8.0'}
+
+ ora@9.4.1:
+ resolution: {integrity: sha512-6VlU9MLXbjVQD04AZCMX28hVtA5bUoadvUqO76MUCVA0ilwJbMiHsITRPfyVm6p/BC0Av/BXMujx39WCe1LEqw==}
+ engines: {node: '>=20'}
+
+ os-browserify@0.3.0:
+ resolution: {integrity: sha512-gjcpUc3clBf9+210TRaDWbf+rZZZEshZ+DlXMRCeAjp0xhTrnQsKHypIy1J3d5hKdUzj69t708EHtU8P6bUn0A==}
+
+ oxc-parser@0.127.0:
+ resolution: {integrity: sha512-bkgD4qHlN7WxLdX8bLXdaU54TtQtAIg/ZBAfm0aje/mo3MRDo3P0hZSgr4U7O3xfX+fQmR5AP04JS/TGcZLcFA==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+
+ oxc-resolver@11.19.1:
+ resolution: {integrity: sha512-qE/CIg/spwrTBFt5aKmwe3ifeDdLfA2NESN30E42X/lII5ClF8V7Wt6WIJhcGZjp0/Q+nQ+9vgxGk//xZNX2hg==}
+
+ oxc-resolver@11.21.3:
+ resolution: {integrity: sha512-2Mx3fKQz7+xgrBONjsxOgCGtMHOn38/HxMzW1I5efwXB5a4lRN0Vp40gYUJFBWJslcrvwoofTrqoTnLbwTd3pA==}
+
+ oxfmt@0.56.0:
+ resolution: {integrity: sha512-9Dv0wV3zKiyvhjD7bRKaInKmHQ1sPx3RGOjQkGFJbbdQ16576yf8qhMSO9Q9cvHcs+1NpBsRTkuDDYFFPTJ6gw==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ hasBin: true
+ peerDependencies:
+ svelte: ^5.0.0
+ vite-plus: '*'
+ peerDependenciesMeta:
+ svelte:
+ optional: true
+ vite-plus:
+ optional: true
+
+ oxlint-tsgolint@0.23.0:
+ resolution: {integrity: sha512-3mBv3CoPbh8dFbzfDGIWa2ytZjn2v+3EX4aKRXjIhsoGFzG8GCjfRirz3rwZf1wYbZzsNLTSgpw8VjQuWdp/jA==}
+ hasBin: true
+
+ oxlint@1.71.0:
+ resolution: {integrity: sha512-U1m1X+C0vDj7DC1e13IoZULzEcPczE7UOMTs8VlZGHUEIUaSTZKo5qkPsQEfzpgnQ29Pea/w3Xntk62UCecxZw==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ hasBin: true
+ peerDependencies:
+ oxlint-tsgolint: '>=0.22.1'
+ vite-plus: '*'
+ peerDependenciesMeta:
+ oxlint-tsgolint:
+ optional: true
+ vite-plus:
+ optional: true
+
+ p-limit@2.3.0:
+ resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==}
+ engines: {node: '>=6'}
+
+ p-limit@3.1.0:
+ resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==}
+ engines: {node: '>=10'}
+
+ p-locate@4.1.0:
+ resolution: {integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==}
+ engines: {node: '>=8'}
+
+ p-locate@5.0.0:
+ resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==}
+ engines: {node: '>=10'}
+
+ p-retry@8.0.0:
+ resolution: {integrity: sha512-kFVqH1HxOHp8LupNsOys7bSV09VYTRLxarH/mokO4Rqhk6wGi70E0jh4VzvVGXfEVNggHoHLAMWsQqHyU1Ey9A==}
+ engines: {node: '>=22'}
+
+ p-try@2.2.0:
+ resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==}
+ engines: {node: '>=6'}
+
+ package-json-from-dist@1.0.1:
+ resolution: {integrity: sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==}
+
+ pako@1.0.11:
+ resolution: {integrity: sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==}
+
+ pako@2.2.0:
+ resolution: {integrity: sha512-zJq6RP/5q+TO2OpFV3FHzlPnFjmkb7Nc99a5SNjJE+uu/PkpChs+NIZSSzbBoD+6kjiISXjfYdwj1ZRQ81dz/w==}
+
+ param-case@3.0.4:
+ resolution: {integrity: sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==}
+
+ parent-module@1.0.1:
+ resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==}
+ engines: {node: '>=6'}
+
+ parse-asn1@5.1.9:
+ resolution: {integrity: sha512-fIYNuZ/HastSb80baGOuPRo1O9cf4baWw5WsAp7dBuUzeTD/BoaG8sVTdlPFksBE2lF21dN+A1AnrpIjSWqHHg==}
+ engines: {node: '>= 0.10'}
+
+ parse-json@5.2.0:
+ resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==}
+ engines: {node: '>=8'}
+
+ parse-ms@4.0.0:
+ resolution: {integrity: sha512-TXfryirbmq34y8QBwgqCVLi+8oA3oWx2eAnSn62ITyEhEYaWRlVZ2DvMM9eZbMs/RfxPu/PK/aBLyGj4IrqMHw==}
+ engines: {node: '>=18'}
+
+ parse5@7.3.0:
+ resolution: {integrity: sha512-IInvU7fabl34qmi9gY8XOVxhYyMyuH2xUNpb2q8/Y+7552KlejkRvqvD19nMoUW/uQGGbqNpA6Tufu5FL5BZgw==}
+
+ pascal-case@3.1.2:
+ resolution: {integrity: sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==}
+
+ path-browserify@1.0.1:
+ resolution: {integrity: sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==}
+
+ path-exists@4.0.0:
+ resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==}
+ engines: {node: '>=8'}
+
+ path-key@3.1.1:
+ resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==}
+ engines: {node: '>=8'}
+
+ path-key@4.0.0:
+ resolution: {integrity: sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==}
+ engines: {node: '>=12'}
+
+ path-parse@1.0.7:
+ resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==}
+
+ path-scurry@1.11.1:
+ resolution: {integrity: sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==}
+ engines: {node: '>=16 || 14 >=14.18'}
+
+ path-type@4.0.0:
+ resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==}
+ engines: {node: '>=8'}
+
+ pathe@0.2.0:
+ resolution: {integrity: sha512-sTitTPYnn23esFR3RlqYBWn4c45WGeLcsKzQiUpXJAyfcWkolvlYpV8FLo7JishK946oQwMFUCHXQ9AjGPKExw==}
+
+ pathe@2.0.3:
+ resolution: {integrity: sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==}
+
+ pathval@2.0.1:
+ resolution: {integrity: sha512-//nshmD55c46FuFw26xV/xFAaB5HF9Xdap7HJBBnrKdAd6/GxDBaNA1870O79+9ueg61cZLSVc+OaFlfmObYVQ==}
+ engines: {node: '>= 14.16'}
+
+ pbkdf2@3.1.5:
+ resolution: {integrity: sha512-Q3CG/cYvCO1ye4QKkuH7EXxs3VC/rI1/trd+qX2+PolbaKG0H+bgcZzrTt96mMyRtejk+JMCiLUn3y29W8qmFQ==}
+ engines: {node: '>= 0.10'}
+
+ picocolors@1.1.1:
+ resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==}
+
+ picomatch@2.3.2:
+ resolution: {integrity: sha512-V7+vQEJ06Z+c5tSye8S+nHUfI51xoXIXjHQ99cQtKUkQqqO1kO/KCJUfZXuB47h/YBlDhah2H3hdUGXn8ie0oA==}
+ engines: {node: '>=8.6'}
+
+ picomatch@4.0.4:
+ resolution: {integrity: sha512-QP88BAKvMam/3NxH6vj2o21R6MjxZUAd6nlwAS/pnGvN9IVLocLHxGYIzFhg6fUQ+5th6P4dv4eW9jX3DSIj7A==}
+ engines: {node: '>=12'}
+
+ pkg-dir@5.0.0:
+ resolution: {integrity: sha512-NPE8TDbzl/3YQYY7CSS228s3g2ollTFnc+Qi3tqmqJp9Vg2ovUpixcJEo2HJScN2Ez+kEaal6y70c0ehqJBJeA==}
+ engines: {node: '>=10'}
+
+ playwright-core@1.61.1:
+ resolution: {integrity: sha512-h7Qlt6m4REp25qvIdvbDtVmD4LqVXfpRxhORv9L0jzETM05p4fuPJ3dKyuSXQxDSbXnmS79HAgi9589lGSpLkg==}
+ engines: {node: '>=18'}
+ hasBin: true
+
+ playwright@1.61.1:
+ resolution: {integrity: sha512-DWnY5o3YbLWK4GovuAVwpqL+1VwGNdUGrRr++8j8PtQQzvAVZUIMjKQ90fY689sEJZJBbZVw1rXaOKSTitkzPQ==}
+ engines: {node: '>=18'}
+ hasBin: true
+
+ pngjs@5.0.0:
+ resolution: {integrity: sha512-40QW5YalBNfQo5yRYmiw7Yz6TKKVr3h6970B2YE+3fQpsWcrbj1PzJgxeJ19DRQjhMbKPIuMY8rFaXc8moolVw==}
+ engines: {node: '>=10.13.0'}
+
+ pngjs@7.0.0:
+ resolution: {integrity: sha512-LKWqWJRhstyYo9pGvgor/ivk2w94eSjE3RGVuzLGlr3NmD8bf7RcYGze1mNdEHRP6TRP6rMuDHk5t44hnTRyow==}
+ engines: {node: '>=14.19.0'}
+
+ possible-typed-array-names@1.1.0:
+ resolution: {integrity: sha512-/+5VFTchJDoVj3bhoqi6UeymcD00DAwb1nJwamzPvHEszJ4FpF6SNNbUbOS8yI56qHzdV8eK0qEfOSiodkTdxg==}
+ engines: {node: '>= 0.4'}
+
+ postcss-attribute-case-insensitive@7.0.1:
+ resolution: {integrity: sha512-Uai+SupNSqzlschRyNx3kbCTWgY/2hcwtHEI/ej2LJWc9JJ77qKgGptd8DHwY1mXtZ7Aoh4z4yxfwMBue9eNgw==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ postcss: ^8.4
+
+ postcss-clamp@4.1.0:
+ resolution: {integrity: sha512-ry4b1Llo/9zz+PKC+030KUnPITTJAHeOwjfAyyB60eT0AorGLdzp52s31OsPRHRf8NchkgFoG2y6fCfn1IV1Ow==}
+ engines: {node: '>=7.6.0'}
+ peerDependencies:
+ postcss: ^8.4.6
+
+ postcss-color-functional-notation@7.0.12:
+ resolution: {integrity: sha512-TLCW9fN5kvO/u38/uesdpbx3e8AkTYhMvDZYa9JpmImWuTE99bDQ7GU7hdOADIZsiI9/zuxfAJxny/khknp1Zw==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ postcss: ^8.4
+
+ postcss-color-hex-alpha@10.0.0:
+ resolution: {integrity: sha512-1kervM2cnlgPs2a8Vt/Qbe5cQ++N7rkYo/2rz2BkqJZIHQwaVuJgQH38REHrAi4uM0b1fqxMkWYmese94iMp3w==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ postcss: ^8.4
+
+ postcss-color-rebeccapurple@10.0.0:
+ resolution: {integrity: sha512-JFta737jSP+hdAIEhk1Vs0q0YF5P8fFcj+09pweS8ktuGuZ8pPlykHsk6mPxZ8awDl4TrcxUqJo9l1IhVr/OjQ==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ postcss: ^8.4
+
+ postcss-custom-media@11.0.6:
+ resolution: {integrity: sha512-C4lD4b7mUIw+RZhtY7qUbf4eADmb7Ey8BFA2px9jUbwg7pjTZDl4KY4bvlUV+/vXQvzQRfiGEVJyAbtOsCMInw==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ postcss: ^8.4
+
+ postcss-custom-properties@14.0.6:
+ resolution: {integrity: sha512-fTYSp3xuk4BUeVhxCSJdIPhDLpJfNakZKoiTDx7yRGCdlZrSJR7mWKVOBS4sBF+5poPQFMj2YdXx1VHItBGihQ==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ postcss: ^8.4
+
+ postcss-custom-selectors@8.0.5:
+ resolution: {integrity: sha512-9PGmckHQswiB2usSO6XMSswO2yFWVoCAuih1yl9FVcwkscLjRKjwsjM3t+NIWpSU2Jx3eOiK2+t4vVTQaoCHHg==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ postcss: ^8.4
+
+ postcss-dir-pseudo-class@9.0.1:
+ resolution: {integrity: sha512-tRBEK0MHYvcMUrAuYMEOa0zg9APqirBcgzi6P21OhxtJyJADo/SWBwY1CAwEohQ/6HDaa9jCjLRG7K3PVQYHEA==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ postcss: ^8.4
+
+ postcss-double-position-gradients@6.0.4:
+ resolution: {integrity: sha512-m6IKmxo7FxSP5nF2l63QbCC3r+bWpFUWmZXZf096WxG0m7Vl1Q1+ruFOhpdDRmKrRS+S3Jtk+TVk/7z0+BVK6g==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ postcss: ^8.4
+
+ postcss-focus-visible@10.0.1:
+ resolution: {integrity: sha512-U58wyjS/I1GZgjRok33aE8juW9qQgQUNwTSdxQGuShHzwuYdcklnvK/+qOWX1Q9kr7ysbraQ6ht6r+udansalA==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ postcss: ^8.4
+
+ postcss-focus-within@9.0.1:
+ resolution: {integrity: sha512-fzNUyS1yOYa7mOjpci/bR+u+ESvdar6hk8XNK/TRR0fiGTp2QT5N+ducP0n3rfH/m9I7H/EQU6lsa2BrgxkEjw==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ postcss: ^8.4
+
+ postcss-font-variant@5.0.0:
+ resolution: {integrity: sha512-1fmkBaCALD72CK2a9i468mA/+tr9/1cBxRRMXOUaZqO43oWPR5imcyPjXwuv7PXbCid4ndlP5zWhidQVVa3hmA==}
+ peerDependencies:
+ postcss: ^8.1.0
+
+ postcss-gap-properties@6.0.0:
+ resolution: {integrity: sha512-Om0WPjEwiM9Ru+VhfEDPZJAKWUd0mV1HmNXqp2C29z80aQ2uP9UVhLc7e3aYMIor/S5cVhoPgYQ7RtfeZpYTRw==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ postcss: ^8.4
+
+ postcss-image-set-function@7.0.0:
+ resolution: {integrity: sha512-QL7W7QNlZuzOwBTeXEmbVckNt1FSmhQtbMRvGGqqU4Nf4xk6KUEQhAoWuMzwbSv5jxiRiSZ5Tv7eiDB9U87znA==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ postcss: ^8.4
+
+ postcss-lab-function@7.0.12:
+ resolution: {integrity: sha512-tUcyRk1ZTPec3OuKFsqtRzW2Go5lehW29XA21lZ65XmzQkz43VY2tyWEC202F7W3mILOjw0voOiuxRGTsN+J9w==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ postcss: ^8.4
+
+ postcss-logical@8.1.0:
+ resolution: {integrity: sha512-pL1hXFQ2fEXNKiNiAgtfA005T9FBxky5zkX6s4GZM2D8RkVgRqz3f4g1JUoq925zXv495qk8UNldDwh8uGEDoA==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ postcss: ^8.4
+
+ postcss-nesting@13.0.2:
+ resolution: {integrity: sha512-1YCI290TX+VP0U/K/aFxzHzQWHWURL+CtHMSbex1lCdpXD1SoR2sYuxDu5aNI9lPoXpKTCggFZiDJbwylU0LEQ==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ postcss: ^8.4
+
+ postcss-opacity-percentage@3.0.0:
+ resolution: {integrity: sha512-K6HGVzyxUxd/VgZdX04DCtdwWJ4NGLG212US4/LA1TLAbHgmAsTWVR86o+gGIbFtnTkfOpb9sCRBx8K7HO66qQ==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ postcss: ^8.4
+
+ postcss-overflow-shorthand@6.0.0:
+ resolution: {integrity: sha512-BdDl/AbVkDjoTofzDQnwDdm/Ym6oS9KgmO7Gr+LHYjNWJ6ExORe4+3pcLQsLA9gIROMkiGVjjwZNoL/mpXHd5Q==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ postcss: ^8.4
+
+ postcss-page-break@3.0.4:
+ resolution: {integrity: sha512-1JGu8oCjVXLa9q9rFTo4MbeeA5FMe00/9C7lN4va606Rdb+HkxXtXsmEDrIraQ11fGz/WvKWa8gMuCKkrXpTsQ==}
+ peerDependencies:
+ postcss: ^8
+
+ postcss-place@10.0.0:
+ resolution: {integrity: sha512-5EBrMzat2pPAxQNWYavwAfoKfYcTADJ8AXGVPcUZ2UkNloUTWzJQExgrzrDkh3EKzmAx1evfTAzF9I8NGcc+qw==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ postcss: ^8.4
+
+ postcss-preset-env@10.6.1:
+ resolution: {integrity: sha512-yrk74d9EvY+W7+lO9Aj1QmjWY9q5NsKjK2V9drkOPZB/X6KZ0B3igKsHUYakb7oYVhnioWypQX3xGuePf89f3g==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ postcss: ^8.4
+
+ postcss-pseudo-class-any-link@10.0.1:
+ resolution: {integrity: sha512-3el9rXlBOqTFaMFkWDOkHUTQekFIYnaQY55Rsp8As8QQkpiSgIYEcF/6Ond93oHiDsGb4kad8zjt+NPlOC1H0Q==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ postcss: ^8.4
+
+ postcss-replace-overflow-wrap@4.0.0:
+ resolution: {integrity: sha512-KmF7SBPphT4gPPcKZc7aDkweHiKEEO8cla/GjcBK+ckKxiZslIu3C4GCRW3DNfL0o7yW7kMQu9xlZ1kXRXLXtw==}
+ peerDependencies:
+ postcss: ^8.0.3
+
+ postcss-selector-not@8.0.1:
+ resolution: {integrity: sha512-kmVy/5PYVb2UOhy0+LqUYAhKj7DUGDpSWa5LZqlkWJaaAV+dxxsOG3+St0yNLu6vsKD7Dmqx+nWQt0iil89+WA==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ postcss: ^8.4
+
+ postcss-selector-parser@7.1.1:
+ resolution: {integrity: sha512-orRsuYpJVw8LdAwqqLykBj9ecS5/cRHlI5+nvTo8LcCKmzDmqVORXtOIYEEQuL9D4BxtA1lm5isAqzQZCoQ6Eg==}
+ engines: {node: '>=4'}
+
+ postcss-value-parser@4.2.0:
+ resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==}
+
+ postcss@8.5.18:
+ resolution: {integrity: sha512-xdB1oSLHbz1vRWgCDalrCqEFTWzFlhqFC5tIHLMOSUIjhm3XXQ1qrFy8S/ESr1JYRRXqM3c1QFiMZUJdUTqyMQ==}
+ engines: {node: ^10 || ^12 || >=14}
+
+ posthog-js@1.374.0:
+ resolution: {integrity: sha512-3M2xsHXU7Hl64KGZjljq13jIKiJ4N7npY1n+1Q7VQmQKdVsoTc9geaeoHprZEZCMXp3b2qbWZEvIYjekUN5lAg==}
+
+ preact@10.29.1:
+ resolution: {integrity: sha512-gQCLc/vWroE8lIpleXtdJhTFDogTdZG9AjMUpVkDf2iTCNwYNWA+u16dL41TqUDJO4gm2IgrcMv3uTpjd4Pwmg==}
+
+ prelude-ls@1.2.1:
+ resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==}
+ engines: {node: '>= 0.8.0'}
+
+ prettier@3.8.3:
+ resolution: {integrity: sha512-7igPTM53cGHMW8xWuVTydi2KO233VFiTNyF5hLJqpilHfmn8C8gPf+PS7dUT64YcXFbiMGZxS9pCSxL/Dxm/Jw==}
+ engines: {node: '>=14'}
+ hasBin: true
+
+ pretty-format@27.5.1:
+ resolution: {integrity: sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==}
+ engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
+
+ pretty-ms@9.3.0:
+ resolution: {integrity: sha512-gjVS5hOP+M3wMm5nmNOucbIrqudzs9v/57bWRHQWLYklXqoXKrVfYW2W9+glfGsqtPgpiz5WwyEEB+ksXIx3gQ==}
+ engines: {node: '>=18'}
+
+ process-nextick-args@2.0.1:
+ resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==}
+
+ process@0.11.10:
+ resolution: {integrity: sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==}
+ engines: {node: '>= 0.6.0'}
+
+ progress@2.0.3:
+ resolution: {integrity: sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==}
+ engines: {node: '>=0.4.0'}
+
+ protobufjs@7.5.9:
+ resolution: {integrity: sha512-Od4muIm3HW1AouyHF5lONOf1FWo3hY1NbFDoy191X9GzhpgW1clCoaFjfVs2rKJNFYpTNJbje4cbAIDBZJ63ZA==}
+ engines: {node: '>=12.0.0'}
+
+ proxy-from-env@1.1.0:
+ resolution: {integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==}
+
+ public-encrypt@4.0.3:
+ resolution: {integrity: sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q==}
+
+ punycode@1.4.1:
+ resolution: {integrity: sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ==}
+
+ punycode@2.3.1:
+ resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==}
+ engines: {node: '>=6'}
+
+ qrcode@1.5.4:
+ resolution: {integrity: sha512-1ca71Zgiu6ORjHqFBDpnSMTR2ReToX4l1Au1VFLyVeBTFavzQnv5JxMFr3ukHVKpSrSA2MCk0lNJSykjUfz7Zg==}
+ engines: {node: '>=10.13.0'}
+ hasBin: true
+
+ qs@6.15.3:
+ resolution: {integrity: sha512-O9gl3zCl5h5blw1KGUzQKhA5oUXSl8rwUIM5o0S3nCXMliSvy5Dzx7/DJcI+SwgICv+IneSZwhBh1oSyEHA71A==}
+ engines: {node: '>=0.6'}
+
+ query-selector-shadow-dom@1.0.1:
+ resolution: {integrity: sha512-lT5yCqEBgfoMYpf3F2xQRK7zEr1rhIIZuceDK6+xRkJQ4NMbHTwXqk4NkwDwQMNqXgG9r9fyHnzwNVs6zV5KRw==}
+
+ querystring-es3@0.2.1:
+ resolution: {integrity: sha512-773xhDQnZBMFobEiztv8LIl70ch5MSF/jUQVlhwFyBILqq96anmoctVIYz+ZRp0qbCKATTn6ev02M3r7Ga5vqA==}
+ engines: {node: '>=0.4.x'}
+
+ queue-microtask@1.2.3:
+ resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==}
+
+ randombytes@2.1.0:
+ resolution: {integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==}
+
+ randomfill@1.0.4:
+ resolution: {integrity: sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw==}
+
+ react-docgen-typescript@2.4.0:
+ resolution: {integrity: sha512-ZtAp5XTO5HRzQctjPU0ybY0RRCQO19X/8fxn3w7y2VVTUbGHDKULPTL4ky3vB05euSgG5NpALhEhDPvQ56wvXg==}
+ peerDependencies:
+ typescript: '>= 4.3.x'
+
+ react-docgen@8.0.3:
+ resolution: {integrity: sha512-aEZ9qP+/M+58x2qgfSFEWH1BxLyHe5+qkLNJOZQb5iGS017jpbRnoKhNRrXPeA6RfBrZO5wZrT9DMC1UqE1f1w==}
+ engines: {node: ^20.9.0 || >=22}
+
+ react-dom@19.2.7:
+ resolution: {integrity: sha512-t0BRVXvbiE/o20Hfw669rLbMCDWtYZLvmJigy2f0MxsXF+71pxhR3xOkspmsO8h3ZlNzyibAmtCa3l4lYKk6gQ==}
+ peerDependencies:
+ react: ^19.2.7
+
+ react-i18next@16.6.6:
+ resolution: {integrity: sha512-ZgL2HUoW34UKUkOV7uSQFE1CDnRPD+tCR3ywSuWH7u2iapnz86U8Bi3Vrs620qNDzCf1F47NxglCEkchCTDOHw==}
+ peerDependencies:
+ i18next: '>= 25.10.9'
+ react: '>= 16.8.0'
+ react-dom: '*'
+ react-native: '*'
+ typescript: ^5 || ^6
+ peerDependenciesMeta:
+ react-dom:
+ optional: true
+ react-native:
+ optional: true
+ typescript:
+ optional: true
+
+ react-i18next@17.0.8:
+ resolution: {integrity: sha512-0ooKbGLU8JXhe1zwpQUWIeXSgLPOfwJmgheWRIUpcoA0CpyabpGhayjdG+/eA5esC1AQ8h2jWpXjJfzQzeDOCw==}
+ peerDependencies:
+ i18next: '>= 26.2.0'
+ react: '>= 16.8.0'
+ react-dom: '*'
+ react-native: '*'
+ typescript: ^5 || ^6
+ peerDependenciesMeta:
+ react-dom:
+ optional: true
+ react-native:
+ optional: true
+ typescript:
+ optional: true
+
+ react-is@16.13.1:
+ resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==}
+
+ react-is@17.0.2:
+ resolution: {integrity: sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==}
+
+ react-remove-scroll-bar@2.3.8:
+ resolution: {integrity: sha512-9r+yi9+mgU33AKcj6IbT9oRCO78WriSj6t/cF8DWBZJ9aOGPOTEDvdUDz1FwKim7QXWwmHqtdHnRJfhAxEG46Q==}
+ engines: {node: '>=10'}
+ peerDependencies:
+ '@types/react': '*'
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
+ react-remove-scroll@2.7.2:
+ resolution: {integrity: sha512-Iqb9NjCCTt6Hf+vOdNIZGdTiH1QSqr27H/Ek9sv/a97gfueI/5h1s3yRi1nngzMUaOOToin5dI1dXKdXiF+u0Q==}
+ engines: {node: '>=10'}
+ peerDependencies:
+ '@types/react': '*'
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
+ react-router-dom@7.18.0:
+ resolution: {integrity: sha512-Fi0yY6kgtKae/Th2xibdWK0KSdYZ4B53Gyf6wRtomOKWgpNm7H7+DyfDhncdz9FKbpS+1jmDhg3F4WoGJ+yFOA==}
+ engines: {node: '>=20.0.0'}
+ peerDependencies:
+ react: '>=18'
+ react-dom: '>=18'
+
+ react-router@7.18.0:
+ resolution: {integrity: sha512-pTTGt8J+ji1NOmYnjzT+bAJy/1zD+Jp4ziO6cL7T3ZLvXKtusO7BpFqlRXitqpcPVqllsIXFHRMt+2/k3Xn6HQ==}
+ engines: {node: '>=20.0.0'}
+ peerDependencies:
+ react: '>=18'
+ react-dom: '>=18'
+ peerDependenciesMeta:
+ react-dom:
+ optional: true
+
+ react-style-singleton@2.2.3:
+ resolution: {integrity: sha512-b6jSvxvVnyptAiLjbkWLE/lOnR4lfTtDAl+eUC7RZy+QQWc6wRzIV2CE6xBuMmDxc2qIihtDCZD5NPOFl7fRBQ==}
+ engines: {node: '>=10'}
+ peerDependencies:
+ '@types/react': '*'
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
+ react-use-measure@2.1.7:
+ resolution: {integrity: sha512-KrvcAo13I/60HpwGO5jpW7E9DfusKyLPLvuHlUyP5zqnmAPhNc6qTRjUQrdTADl0lpPpDVU2/Gg51UlOGHXbdg==}
+ peerDependencies:
+ react: '>=16.13'
+ react-dom: '>=16.13'
+ peerDependenciesMeta:
+ react-dom:
+ optional: true
+
+ react@19.2.7:
+ resolution: {integrity: sha512-HNe9WslTbXmFK8o8cmwgAeJFSBvt1bPdHCVKtaaV+WlAN36mpT4hcRpwbf3fY56ar2oIXzsBpOAiIRHAdY0OlQ==}
+ engines: {node: '>=0.10.0'}
+
+ readable-stream@2.3.8:
+ resolution: {integrity: sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==}
+
+ readable-stream@3.6.2:
+ resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==}
+ engines: {node: '>= 6'}
+
+ readdirp@3.6.0:
+ resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==}
+ engines: {node: '>=8.10.0'}
+
+ readdirp@5.0.0:
+ resolution: {integrity: sha512-9u/XQ1pvrQtYyMpZe7DXKv2p5CNvyVwzUB6uhLAnQwHMSgKMBR62lc7AHljaeteeHXn11XTAaLLUVZYVZyuRBQ==}
+ engines: {node: '>= 20.19.0'}
+
+ recast@0.23.12:
+ resolution: {integrity: sha512-dEWRjcINDu/F4l2dYx57ugBtD7HV9KXESyxhzw/MqWLeglJrsjJKqACPyUPg+6AF8mIgm+Zi0dZ3ACoIg+QtpA==}
+ engines: {node: '>= 4'}
+
+ redent@3.0.0:
+ resolution: {integrity: sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==}
+ engines: {node: '>=8'}
+
+ regexparam@3.0.0:
+ resolution: {integrity: sha512-RSYAtP31mvYLkAHrOlh25pCNQ5hWnT106VukGaaFfuJrZFkGRX5GhUAdPqpSDXxOhA2c4akmRuplv1mRqnBn6Q==}
+ engines: {node: '>=8'}
+
+ relateurl@0.2.7:
+ resolution: {integrity: sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog==}
+ engines: {node: '>= 0.10'}
+
+ require-directory@2.1.1:
+ resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==}
+ engines: {node: '>=0.10.0'}
+
+ require-main-filename@2.0.0:
+ resolution: {integrity: sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==}
+
+ resolve-from@4.0.0:
+ resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==}
+ engines: {node: '>=4'}
+
+ resolve@1.22.12:
+ resolution: {integrity: sha512-TyeJ1zif53BPfHootBGwPRYT1RUt6oGWsaQr8UyZW/eAm9bKoijtvruSDEmZHm92CwS9nj7/fWttqPCgzep8CA==}
+ engines: {node: '>= 0.4'}
+ hasBin: true
+
+ restore-cursor@5.1.0:
+ resolution: {integrity: sha512-oMA2dcrw6u0YfxJQXm342bFKX/E4sG9rbTzO9ptUcR/e8A33cHuvStiYOwH7fszkZlZ1z/ta9AAoPk2F4qIOHA==}
+ engines: {node: '>=18'}
+
+ reusify@1.1.0:
+ resolution: {integrity: sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==}
+ engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
+
+ rimraf@3.0.2:
+ resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==}
+ deprecated: Rimraf versions prior to v4 are no longer supported
+ hasBin: true
+
+ ripemd160@2.0.3:
+ resolution: {integrity: sha512-5Di9UC0+8h1L6ZD2d7awM7E/T4uA1fJRlx6zk/NvdCCVEoAnFqvHmCuNeIKoCeIixBX/q8uM+6ycDvF8woqosA==}
+ engines: {node: '>= 0.8'}
+
+ rolldown@1.1.3:
+ resolution: {integrity: sha512-1F1eEtUBtFvcGm1HQ9TiUIUHPQG7mSAODrhIzjxoUEFuo8OcbrGLiVLkevNgj84TE4lnHvnumwFjhJO5Eu135g==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ hasBin: true
+
+ rollup@4.60.1:
+ resolution: {integrity: sha512-VmtB2rFU/GroZ4oL8+ZqXgSA38O6GR8KSIvWmEFv63pQ0G6KaBH9s07PO8XTXP4vI+3UJUEypOfjkGfmSBBR0w==}
+ engines: {node: '>=18.0.0', npm: '>=8.0.0'}
+ hasBin: true
+
+ rrweb-cssom@0.8.0:
+ resolution: {integrity: sha512-guoltQEx+9aMf2gDZ0s62EcV8lsXR+0w8915TC3ITdn2YueuNjdAYh/levpU9nFaoChh9RUS5ZdQMrKfVEN9tw==}
+
+ run-applescript@7.1.0:
+ resolution: {integrity: sha512-DPe5pVFaAsinSaV6QjQ6gdiedWDcRCbUuiQfQa2wmWV7+xC9bGulGI8+TdRmoFkAPaBXk8CrAbnlY2ISniJ47Q==}
+ engines: {node: '>=18'}
+
+ run-async@4.0.6:
+ resolution: {integrity: sha512-IoDlSLTs3Yq593mb3ZoKWKXMNu3UpObxhgA/Xuid5p4bbfi2jdY1Hj0m1K+0/tEuQTxIGMhQDqGjKb7RuxGpAQ==}
+ engines: {node: '>=0.12.0'}
+
+ run-parallel@1.2.0:
+ resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==}
+
+ rxjs@7.8.2:
+ resolution: {integrity: sha512-dhKf903U/PQZY6boNNtAGdWbG85WAbjT/1xYoZIC7FAY0yWapOBQVsVrDl58W86//e1VpMNBtRV4MaXfdMySFA==}
+
+ safe-buffer@5.1.2:
+ resolution: {integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==}
+
+ safe-buffer@5.2.1:
+ resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==}
+
+ safe-regex-test@1.1.0:
+ resolution: {integrity: sha512-x/+Cz4YrimQxQccJf5mKEbIa1NzeCRNI5Ecl/ekmlYaampdNLPalVyIcCZNNH3MvmqBugV5TMYZXv0ljslUlaw==}
+ engines: {node: '>= 0.4'}
+
+ safer-buffer@2.1.2:
+ resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==}
+
+ sass@1.101.0:
+ resolution: {integrity: sha512-OL3GoQyoUdDt843DpVmDO6y2k1sc5IhUDSpu8XucEI+35neq5QivZ1iuegnpraEVTJXlQGK1gl27zKcTLEPbQw==}
+ engines: {node: '>=20.19.0'}
+ hasBin: true
+
+ saxes@6.0.0:
+ resolution: {integrity: sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==}
+ engines: {node: '>=v12.22.7'}
+
+ scheduler@0.27.0:
+ resolution: {integrity: sha512-eNv+WrVbKu1f3vbYJT/xtiF5syA5HPIMtf9IgY/nKg0sWqzAUEvqY/xm7OcZc/qafLx/iO9FgOmeSAp4v5ti/Q==}
+
+ sdp-transform@2.15.0:
+ resolution: {integrity: sha512-KrOH82c/W+GYQ0LHqtr3caRpM3ITglq3ljGUIb8LTki7ByacJZ9z+piSGiwZDsRyhQbYBOBJgr2k6X4BZXi3Kw==}
+ hasBin: true
+
+ sdp-transform@3.0.0:
+ resolution: {integrity: sha512-gfYVRGxjHkGF2NPeUWHw5u6T/KGFtS5/drPms73gaSuMaVHKCY3lpLnGDfswVQO0kddeePoti09AwhYP4zA8dQ==}
+ hasBin: true
+
+ sdp@3.2.2:
+ resolution: {integrity: sha512-xZocWwfyp4hkbN4hLWxMjmv2Q8aNa9MhmOZ7L9aCZPT+dZsgRr6wZRrSYE3HTdyk/2pZKPSgqI7ns7Een1xMSA==}
+
+ semver@6.3.1:
+ resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==}
+ hasBin: true
+
+ semver@7.8.1:
+ resolution: {integrity: sha512-rkVq3IXh+4FDGch+KwzX3aV9W3kO54GyEgpvBzSyctDA6Xtd7RJQV1xmXbeQp5v7+VzLOfVqiutSE6GICgPFvg==}
+ engines: {node: '>=10'}
+ hasBin: true
+
+ semver@7.8.5:
+ resolution: {integrity: sha512-Y7/KDsb8LjooZpwaqGyulO6DQlksgCncchHGk+sZIY4SBvUocMBEFH5Ur1fI4dV+Jvl0w6cjvucaIi40puRioA==}
+ engines: {node: '>=10'}
+ hasBin: true
+
+ set-blocking@2.0.0:
+ resolution: {integrity: sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==}
+
+ set-cookie-parser@2.7.2:
+ resolution: {integrity: sha512-oeM1lpU/UvhTxw+g3cIfxXHyJRc/uidd3yK1P242gzHds0udQBYzs3y8j4gCCW+ZJ7ad0yctld8RYO+bdurlvw==}
+
+ set-function-length@1.2.2:
+ resolution: {integrity: sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==}
+ engines: {node: '>= 0.4'}
+
+ setimmediate@1.0.5:
+ resolution: {integrity: sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==}
+
+ sha.js@2.4.12:
+ resolution: {integrity: sha512-8LzC5+bvI45BjpfXU8V5fdU2mfeKiQe1D1gIMn7XUlF3OTUrpdJpPPH4EMAnF0DsHHdSZqCdSss5qCmJKuiO3w==}
+ engines: {node: '>= 0.10'}
+ hasBin: true
+
+ shebang-command@2.0.0:
+ resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
+ engines: {node: '>=8'}
+
+ shebang-regex@3.0.0:
+ resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
+ engines: {node: '>=8'}
+
+ side-channel-list@1.0.1:
+ resolution: {integrity: sha512-mjn/0bi/oUURjc5Xl7IaWi/OJJJumuoJFQJfDDyO46+hBWsfaVM65TBHq2eoZBhzl9EchxOijpkbRC8SVBQU0w==}
+ engines: {node: '>= 0.4'}
+
+ side-channel-map@1.0.1:
+ resolution: {integrity: sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==}
+ engines: {node: '>= 0.4'}
+
+ side-channel-weakmap@1.0.2:
+ resolution: {integrity: sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==}
+ engines: {node: '>= 0.4'}
+
+ side-channel@1.1.1:
+ resolution: {integrity: sha512-6x6dK6zJdpTzF4sQeNYxwtvBzf6Eg4GtlesS94HOvTudUeyK2WXAaIfmDgsyslYrRBeFIlsi54AYsFGUuhmvrQ==}
+ engines: {node: '>= 0.4'}
+
+ siginfo@2.0.0:
+ resolution: {integrity: sha512-ybx0WO1/8bSBLEWXZvEd7gMW3Sn3JFlW3TvX1nREbDLRNQNaeNN8WK0meBwPdAaOI7TtRRRJn/Es1zhrrCHu7g==}
+
+ signal-exit@4.1.0:
+ resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==}
+ engines: {node: '>=14'}
+
+ sirv@3.0.2:
+ resolution: {integrity: sha512-2wcC/oGxHis/BoHkkPwldgiPSYcpZK3JU28WoMVv55yHJgcZ8rlXvuG9iZggz+sU1d4bRgIGASwyWqjxu3FM0g==}
+ engines: {node: '>=18'}
+
+ smol-toml@1.6.1:
+ resolution: {integrity: sha512-dWUG8F5sIIARXih1DTaQAX4SsiTXhInKf1buxdY9DIg4ZYPZK5nGM1VRIYmEbDbsHt7USo99xSLFu5Q1IqTmsg==}
+ engines: {node: '>= 18'}
+
+ snake-case@3.0.4:
+ resolution: {integrity: sha512-LAOh4z89bGQvl9pFfNF8V146i7o7/CqFPbqzYgP+yYzDIDeS9HaNFtXABamRW+AQzEVODcvE79ljJ+8a9YSdMg==}
+
+ source-map-js@1.2.1:
+ resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==}
+ engines: {node: '>=0.10.0'}
+
+ source-map-support@0.5.21:
+ resolution: {integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==}
+
+ source-map@0.6.1:
+ resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==}
+ engines: {node: '>=0.10.0'}
+
+ stackback@0.0.2:
+ resolution: {integrity: sha512-1XMJE5fQo1jGH6Y/7ebnwPOBEkIEnT4QF32d5R1+VXdXveM0IBMJt8zfaxX1P3QhVwrYe+576+jkANtSS2mBbw==}
+
+ std-env@4.1.0:
+ resolution: {integrity: sha512-Rq7ybcX2RuC55r9oaPVEW7/xu3tj8u4GeBYHBWCychFtzMIr86A7e3PPEBPT37sHStKX3+TiX/Fr/ACmJLVlLQ==}
+
+ stdin-discarder@0.3.2:
+ resolution: {integrity: sha512-eCPu1qRxPVkl5605OTWF8Wz40b4Mf45NY5LQmVPQ599knfs5QhASUm9GbJ5BDMDOXgrnh0wyEdvzmL//YMlw0A==}
+ engines: {node: '>=18'}
+
+ storybook@10.4.6:
+ resolution: {integrity: sha512-6wkA6LxfDSSilloITsrFOJfsnw0mDUP2h8Ls+lRt8oRsudtz2RWFhLv+Toiwg6NW7hUpdTDc2hzR7DztJid6+A==}
+ hasBin: true
+ peerDependencies:
+ '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
+ prettier: ^2 || ^3
+ vite-plus: ^0.1.15
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ prettier:
+ optional: true
+ vite-plus:
+ optional: true
+
+ stream-browserify@3.0.0:
+ resolution: {integrity: sha512-H73RAHsVBapbim0tU2JwwOiXUj+fikfiaoYAKHF3VJfA0pe2BCzkhAHBlLG6REzE+2WNZcxOXjK7lkso+9euLA==}
+
+ stream-http@3.2.0:
+ resolution: {integrity: sha512-Oq1bLqisTyK3TSCXpPbT4sdeYNdmyZJv1LxpEm2vu1ZhK89kSE5YXwZc3cWk0MagGaKriBh9mCFbVGtO+vY29A==}
+
+ string-width@4.2.3:
+ resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==}
+ engines: {node: '>=8'}
+
+ string-width@5.1.2:
+ resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==}
+ engines: {node: '>=12'}
+
+ string-width@8.2.1:
+ resolution: {integrity: sha512-IIaP0g3iy9Cyy18w3M9YcaDudujEAVHKt3a3QJg1+sr/oX96TbaGUubG0hJyCjCBThFH+tFpcIyoUHUn1ogaLA==}
+ engines: {node: '>=20'}
+
+ string_decoder@1.1.1:
+ resolution: {integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==}
+
+ string_decoder@1.3.0:
+ resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==}
+
+ strip-ansi@6.0.1:
+ resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==}
+ engines: {node: '>=8'}
+
+ strip-ansi@7.2.0:
+ resolution: {integrity: sha512-yDPMNjp4WyfYBkHnjIRLfca1i6KMyGCtsVgoKe/z1+6vukgaENdgGBZt+ZmKPc4gavvEZ5OgHfHdrazhgNyG7w==}
+ engines: {node: '>=12'}
+
+ strip-bom@3.0.0:
+ resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==}
+ engines: {node: '>=4'}
+
+ strip-final-newline@4.0.0:
+ resolution: {integrity: sha512-aulFJcD6YK8V1G7iRB5tigAP4TsHBZZrOV8pjV++zdUwmeV8uzbY7yn6h9MswN62adStNZFuCIx4haBnRuMDaw==}
+ engines: {node: '>=18'}
+
+ strip-indent@3.0.0:
+ resolution: {integrity: sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==}
+ engines: {node: '>=8'}
+
+ strip-indent@4.1.1:
+ resolution: {integrity: sha512-SlyRoSkdh1dYP0PzclLE7r0M9sgbFKKMFXpFRUMNuKhQSbC6VQIGzq3E0qsfvGJaUFJPGv6Ws1NZ/haTAjfbMA==}
+ engines: {node: '>=12'}
+
+ strip-json-comments@3.1.1:
+ resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==}
+ engines: {node: '>=8'}
+
+ strip-json-comments@5.0.3:
+ resolution: {integrity: sha512-1tB5mhVo7U+ETBKNf92xT4hrQa3pm0MZ0PQvuDnWgAAGHDsfp4lPSpiS6psrSiet87wyGPh9ft6wmhOMQ0hDiw==}
+ engines: {node: '>=14.16'}
+
+ supports-color@7.2.0:
+ resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==}
+ engines: {node: '>=8'}
+
+ supports-preserve-symlinks-flag@1.0.0:
+ resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==}
+ engines: {node: '>= 0.4'}
+
+ svg-parser@2.0.4:
+ resolution: {integrity: sha512-e4hG1hRwoOdRb37cIMSgzNsxyzKfayW6VOflrwvR+/bzrkyxY/31WkbgnQpgtrNp1SdpJvpUAGTa/ZoiPNDuRQ==}
+
+ symbol-tree@3.2.4:
+ resolution: {integrity: sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==}
+
+ tabbable@6.5.0:
+ resolution: {integrity: sha512-wieBHXygIm7OyQOu5hQlkk62/WyCFYGlWg7L6/ZCUZwx0o398Zkn4pVmMyfYhfMG8kGrj/Krt8eIk6UKC6VzwA==}
+
+ terser@5.46.1:
+ resolution: {integrity: sha512-vzCjQO/rgUuK9sf8VJZvjqiqiHFaZLnOiimmUuOKODxWL8mm/xua7viT7aqX7dgPY60otQjUotzFMmCB4VdmqQ==}
+ engines: {node: '>=10'}
+ hasBin: true
+
+ text-table@0.2.0:
+ resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==}
+
+ timers-browserify@2.0.12:
+ resolution: {integrity: sha512-9phl76Cqm6FhSX9Xe1ZUAMLtm1BLkKj2Qd5ApyWkXzsMRaA7dgr81kf4wJmQf/hAvg8EEyJxDo3du/0KlhPiKQ==}
+ engines: {node: '>=0.6.0'}
+
+ tiny-invariant@1.3.3:
+ resolution: {integrity: sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg==}
+
+ tinybench@2.9.0:
+ resolution: {integrity: sha512-0+DUvqWMValLmha6lr4kD8iAMK1HzV0/aKnCtWb9v9641TnP/MFb7Pc2bxoxQjTXAErryXVgUOfv2YqNllqGeg==}
+
+ tinyexec@1.2.4:
+ resolution: {integrity: sha512-SHf/r48b7vOrjve9PxJo3MN5v5yuyjHvdUcrQffT3WXMUfnGmHDVbC4k3sHJaJTgZCwpUplIaAo5ANtMyp3YHg==}
+ engines: {node: '>=18'}
+
+ tinyglobby@0.2.17:
+ resolution: {integrity: sha512-wXR/dYpcqKmfWpEdZjiKJOwCNFndD0DMnrW/cYjVGttEkBfVgcLFHoNrlj47mjOVic9yyNu65alsgF4NQyTa2g==}
+ engines: {node: '>=12.0.0'}
+
+ tinypool@2.1.0:
+ resolution: {integrity: sha512-Pugqs6M0m7Lv1I7FtxN4aoyToKg1C4tu+/381vH35y8oENM/Ai7f7C4StcoK4/+BSw9ebcS8jRiVrORFKCALLw==}
+ engines: {node: ^20.0.0 || >=22.0.0}
+
+ tinyrainbow@2.0.0:
+ resolution: {integrity: sha512-op4nsTR47R6p0vMUUoYl/a+ljLFVtlfaXkLQmqfLR1qHma1h/ysYk4hEXZ880bf2CYgTskvTa/e196Vd5dDQXw==}
+ engines: {node: '>=14.0.0'}
+
+ tinyrainbow@3.1.0:
+ resolution: {integrity: sha512-Bf+ILmBgretUrdJxzXM0SgXLZ3XfiaUuOj/IKQHuTXip+05Xn+uyEYdVg0kYDipTBcLrCVyUzAPz7QmArb0mmw==}
+ engines: {node: '>=14.0.0'}
+
+ tinyspy@4.0.4:
+ resolution: {integrity: sha512-azl+t0z7pw/z958Gy9svOTuzqIk6xq+NSheJzn5MMWtWTFywIacg2wUlzKFGtt3cthx0r2SxMK0yzJOR0IES7Q==}
+ engines: {node: '>=14.0.0'}
+
+ tldts-core@6.1.86:
+ resolution: {integrity: sha512-Je6p7pkk+KMzMv2XXKmAE3McmolOQFdxkKw0R8EYNr7sELW46JqnNeTX8ybPiQgvg1ymCoF8LXs5fzFaZvJPTA==}
+
+ tldts@6.1.86:
+ resolution: {integrity: sha512-WMi/OQ2axVTf/ykqCQgXiIct+mSQDFdH2fkwhPwgEwvJ1kSzZRiinb0zF2Xb8u4+OqPChmyI6MEu4EezNJz+FQ==}
+ hasBin: true
+
+ to-buffer@1.2.2:
+ resolution: {integrity: sha512-db0E3UJjcFhpDhAF4tLo03oli3pwl3dbnzXOUIlRKrp+ldk/VUxzpWYZENsw2SZiuBjHAk7DfB0VU7NKdpb6sw==}
+ engines: {node: '>= 0.4'}
+
+ to-regex-range@5.0.1:
+ resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==}
+ engines: {node: '>=8.0'}
+
+ toggle-selection@1.0.6:
+ resolution: {integrity: sha512-BiZS+C1OS8g/q2RRbJmy59xpyghNBqrr6k5L/uKBGRsTfxmu3ffiRnd8mlGPUVayg8pvfi5urfnu8TU7DVOkLQ==}
+
+ totalist@3.0.1:
+ resolution: {integrity: sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ==}
+ engines: {node: '>=6'}
+
+ tough-cookie@5.1.2:
+ resolution: {integrity: sha512-FVDYdxtnj0G6Qm/DhNPSb8Ju59ULcup3tuJxkFb5K8Bv2pUXILbf0xZWU8PX8Ov19OXljbUyveOFwRMwkXzO+A==}
+ engines: {node: '>=16'}
+
+ tr46@0.0.3:
+ resolution: {integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==}
+
+ tr46@5.1.1:
+ resolution: {integrity: sha512-hdF5ZgjTqgAntKkklYw0R03MG2x/bSzTtkxmIRw/sTNV8YXsCJ1tfLAX23lhxhHJlEf3CRCOCGGWw3vI3GaSPw==}
+ engines: {node: '>=18'}
+
+ ts-api-utils@2.5.0:
+ resolution: {integrity: sha512-OJ/ibxhPlqrMM0UiNHJ/0CKQkoKF243/AEmplt3qpRgkW8VG7IfOS41h7V8TjITqdByHzrjcS/2si+y4lIh8NA==}
+ engines: {node: '>=18.12'}
+ peerDependencies:
+ typescript: '>=4.8.4'
+
+ ts-dedent@2.3.0:
+ resolution: {integrity: sha512-JfJeIHke7y2egdGGgRAvpCwYFUsHlM2gPcrVOxFkznt/4uzQ7HFmvE63iFHVLBJNDuyDOQgijDK/tXH/f6Msjg==}
+ engines: {node: '>=6.10'}
+
+ tsconfig-paths@4.2.0:
+ resolution: {integrity: sha512-NoZ4roiN7LnbKn9QqE1amc9DJfzvZXxF4xDavcOWt1BPkdx+m+0gJuPM+S0vCe7zTJMYUP0R8pO2XMr+Y8oLIg==}
+ engines: {node: '>=6'}
+
+ tslib@2.8.1:
+ resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==}
+
+ tty-browserify@0.0.1:
+ resolution: {integrity: sha512-C3TaO7K81YvjCgQH9Q1S3R3P3BtN3RIM8n+OvX4il1K1zgE8ZhI0op7kClgkxtutIE8hQrcrHBXvIheqKUUCxw==}
+
+ tunnel@0.0.6:
+ resolution: {integrity: sha512-1h/Lnq9yajKY2PEbBadPXj3VxsDDu844OnaAo52UVmIzIvwwtBPIuNvkjuzBlTWpfJyUbG3ez0KSBibQkj4ojg==}
+ engines: {node: '>=0.6.11 <=0.7.0 || >=0.7.3'}
+
+ type-check@0.4.0:
+ resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==}
+ engines: {node: '>= 0.8.0'}
+
+ type-fest@0.20.2:
+ resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==}
+ engines: {node: '>=10'}
+
+ typed-array-buffer@1.0.3:
+ resolution: {integrity: sha512-nAYYwfY3qnzX30IkA6AQZjVbtK6duGontcQm1WSG1MD94YLqK0515GNApXkoxKOWMusVssAHWLh9SeaoefYFGw==}
+ engines: {node: '>= 0.4'}
+
+ typed-emitter@2.1.0:
+ resolution: {integrity: sha512-g/KzbYKbH5C2vPkaXGu8DJlHrGKHLsM25Zg9WuC9pMGfuvT+X25tZQWo5fK1BjBm8+UrVE9LDCvaY0CQk+fXDA==}
+
+ typescript@5.9.3:
+ resolution: {integrity: sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==}
+ engines: {node: '>=14.17'}
+ hasBin: true
+
+ unbash@2.2.0:
+ resolution: {integrity: sha512-X2wH19RAPZE3+ldGicOkoj/SIA83OIxcJ6Cuaw23hf8Xc6fQpvZXY0SftE2JgS0QhYLUG4uwodSI3R53keyh7w==}
+ engines: {node: '>=14'}
+
+ undici-types@7.18.2:
+ resolution: {integrity: sha512-AsuCzffGHJybSaRrmr5eHr81mwJU3kjw6M+uprWvCXiNeN9SOGwQ3Jn8jb8m3Z6izVgknn1R0FTCEAP2QrLY/w==}
+
+ undici@6.27.0:
+ resolution: {integrity: sha512-YmfV3YnEDzXRC5lZ2jWtWWHKGUm1zIt8AhesR1tens+HTNv+YZlN/dp6G727LOvMJ8xjP9Be7Y2Sdr96LDm+pg==}
+ engines: {node: '>=18.17'}
+
+ unhomoglyph@1.0.6:
+ resolution: {integrity: sha512-7uvcWI3hWshSADBu4JpnyYbTVc7YlhF5GDW/oPD5AxIxl34k4wXR3WDkPnzLxkN32LiTCTKMQLtKVZiwki3zGg==}
+
+ unicorn-magic@0.3.0:
+ resolution: {integrity: sha512-+QBBXBCvifc56fsbuxZQ6Sic3wqqc3WWaqxs58gvJrcOuN83HGTCwz3oS5phzU9LthRNE9VrJCFCLUgHeeFnfA==}
+ engines: {node: '>=18'}
+
+ unique-names-generator@4.7.1:
+ resolution: {integrity: sha512-lMx9dX+KRmG8sq6gulYYpKWZc9RlGsgBR6aoO8Qsm3qvkSJ+3rAymr+TnV8EDMrIrwuFJ4kruzMWM/OpYzPoow==}
+ engines: {node: '>=8'}
+
+ universal-user-agent@6.0.1:
+ resolution: {integrity: sha512-yCzhz6FN2wU1NiiQRogkTQszlQSlpWaw8SvVegAc+bDxbzHgh1vX8uIe8OYyMH6DwH+sdTJsgMl36+mSMdRJIQ==}
+
+ universalify@2.0.1:
+ resolution: {integrity: sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==}
+ engines: {node: '>= 10.0.0'}
+
+ unplugin@1.0.1:
+ resolution: {integrity: sha512-aqrHaVBWW1JVKBHmGo33T5TxeL0qWzfvjWokObHA9bYmN7eNDkwOxmLjhioHl9878qDFMAaT51XNroRyuz7WxA==}
+
+ unplugin@1.16.1:
+ resolution: {integrity: sha512-4/u/j4FrCKdi17jaxuJA0jClGxB1AvU2hw/IuayPc4ay1XGaJs/rbb4v5WKwAjNifjmXK9PIFyuPiaK8azyR9w==}
+ engines: {node: '>=14.0.0'}
+
+ unplugin@2.3.11:
+ resolution: {integrity: sha512-5uKD0nqiYVzlmCRs01Fhs2BdkEgBS3SAVP6ndrBsuK42iC2+JHyxM05Rm9G8+5mkmRtzMZGY8Ct5+mliZxU/Ww==}
+ engines: {node: '>=18.12.0'}
+
+ update-browserslist-db@1.2.3:
+ resolution: {integrity: sha512-Js0m9cx+qOgDxo0eMiFGEueWztz+d4+M3rGlmKPT+T4IS/jP4ylw3Nwpu6cpTTP8R1MAC1kF4VbdLt3ARf209w==}
+ hasBin: true
+ peerDependencies:
+ browserslist: '>= 4.21.0'
+
+ uri-js@4.4.1:
+ resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==}
+
+ url@0.11.4:
+ resolution: {integrity: sha512-oCwdVC7mTuWiPyjLUz/COz5TLk6wgp0RCsN+wHZ2Ekneac9w8uuV0njcbbie2ME+Vs+d6duwmYuR3HgQXs1fOg==}
+ engines: {node: '>= 0.4'}
+
+ use-callback-ref@1.3.3:
+ resolution: {integrity: sha512-jQL3lRnocaFtu3V00JToYz/4QkNWswxijDaCVNZRiRTO3HQDLsdu1ZtmIUvV4yPp+rvWm5j0y0TG/S61cuijTg==}
+ engines: {node: '>=10'}
+ peerDependencies:
+ '@types/react': '*'
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
+ use-sidecar@1.1.3:
+ resolution: {integrity: sha512-Fedw0aZvkhynoPYlA5WXrMCAMm+nSWdZt6lzJQ7Ok8S6Q+VsHmHpRWndVRJ8Be0ZbkfPc5LRYH+5XrzXcEeLRQ==}
+ engines: {node: '>=10'}
+ peerDependencies:
+ '@types/react': '*'
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
+ use-sync-external-store@1.6.0:
+ resolution: {integrity: sha512-Pp6GSwGP/NrPIrxVFAIkOQeyw8lFenOHijQWkUTrDvrF4ALqylP2C/KCkeS9dpUM3KvYRQhna5vt7IL95+ZQ9w==}
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
+
+ usehooks-ts@3.1.1:
+ resolution: {integrity: sha512-I4diPp9Cq6ieSUH2wu+fDAVQO43xwtulo+fKEidHUwZPnYImbtkTjzIJYcDcJqxgmX31GVqNFURodvcgHcW0pA==}
+ engines: {node: '>=16.15.0'}
+ peerDependencies:
+ react: ^16.8.0 || ^17 || ^18 || ^19 || ^19.0.0-rc
+
+ util-deprecate@1.0.2:
+ resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
+
+ util@0.12.5:
+ resolution: {integrity: sha512-kZf/K6hEIrWHI6XqOFUiiMa+79wE/D8Q+NCNAWclkyg3b4d2k7s0QGepNjiABc+aR3N1PAyHL7p6UcLY6LmrnA==}
+
+ uuid@14.0.1:
+ resolution: {integrity: sha512-6ZxzVpzDXDa3bJWaHilVayA+BH/1zmxCJoVgvmqJnid/gPoKHxUrS/aC/T6LGQtNHT+XHG9fXPJB4d+IrU30Ew==}
+ hasBin: true
+
+ vaul@1.1.2:
+ resolution: {integrity: sha512-ZFkClGpWyI2WUQjdLJ/BaGuV6AVQiJ3uELGk3OYtP+B6yCO7Cmn9vPFXVJkRaGkOJu3m8bQMgtyzNHixULceQA==}
+ peerDependencies:
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0.0 || ^19.0.0-rc
+
+ vite-plugin-generate-file@0.3.1:
+ resolution: {integrity: sha512-tiA3gkPM21MS2+RyqsBMT33GSlM9LM1TJjf6vGvV/e/ml3e3vTKfuH3l2N0NpUgcayvj1fXnmlo5YBuahA6bsg==}
+
+ vite-plugin-html@3.2.2:
+ resolution: {integrity: sha512-vb9C9kcdzcIo/Oc3CLZVS03dL5pDlOFuhGlZYDCJ840BhWl/0nGeZWf3Qy7NlOayscY4Cm/QRgULCQkEZige5Q==}
+ peerDependencies:
+ vite: '>=2.0.0'
+
+ vite-plugin-node-polyfills@0.28.0:
+ resolution: {integrity: sha512-NXct/ci2ef4fRyCfTb8fk2HmR80Rv7icLd+cRH41TnUugDzdKMFKqFPpZYCFUInZMMem9bkLv5pkq02+7Xu7+w==}
+ peerDependencies:
+ vite: ^2.0.0 || ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0
+
+ vite-plugin-node-stdlib-browser@0.2.1:
+ resolution: {integrity: sha512-6u2i613Dkqj5KaTNIrnZvE6y3/awWAp0S5TjucTvGxdhetftB1Mgvblc+nwYzlw6sntPlac8UOC7ttXNh+LZKA==}
+ peerDependencies:
+ node-stdlib-browser: ^1.2.0
+ vite: ^2.0.0 || ^3.0.0 || ^4.0.0
+
+ vite-plugin-svgr@4.5.0:
+ resolution: {integrity: sha512-W+uoSpmVkSmNOGPSsDCWVW/DDAyv+9fap9AZXBvWiQqrboJ08j2vh0tFxTD/LjwqwAd3yYSVJgm54S/1GhbdnA==}
+ peerDependencies:
+ vite: '>=2.6.0'
+
+ vite-plugin-wasm@3.6.0:
+ resolution: {integrity: sha512-mL/QPziiIA4RAA6DkaZZzOstdwbW5jO4Vz7Zenj0wieKWBlNvIvX5L5ljum9lcUX0ShNfBgCNLKTjNkRVVqcsw==}
+ peerDependencies:
+ vite: ^2 || ^3 || ^4 || ^5 || ^6 || ^7 || ^8
+
+ vite@8.1.0:
+ resolution: {integrity: sha512-BuJcQK/56NQTWDGn4ABea3q4SSBdNPWwNZKTkkUpcMPnLoquSYH8llRtSUIgoL1KSCpHt5eghLShn50mH36y7Q==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ hasBin: true
+ peerDependencies:
+ '@types/node': ^20.19.0 || >=22.12.0
+ '@vitejs/devtools': ^0.3.0
+ esbuild: ^0.28.0
+ jiti: '>=1.21.0'
+ less: ^4.0.0
+ sass: ^1.70.0
+ sass-embedded: ^1.70.0
+ stylus: '>=0.54.8'
+ sugarss: ^5.0.0
+ terser: ^5.16.0
+ tsx: ^4.8.1
+ yaml: ^2.4.2
+ peerDependenciesMeta:
+ '@types/node':
+ optional: true
+ '@vitejs/devtools':
+ optional: true
+ esbuild:
+ optional: true
+ jiti:
+ optional: true
+ less:
+ optional: true
+ sass:
+ optional: true
+ sass-embedded:
+ optional: true
+ stylus:
+ optional: true
+ sugarss:
+ optional: true
+ terser:
+ optional: true
+ tsx:
+ optional: true
+ yaml:
+ optional: true
+
+ vitest-axe@1.0.0-pre.5:
+ resolution: {integrity: sha512-eUGxjpXnceha9lkqIVyMgOUeDmWU9LVjNiLTjAjDtMew0WbaBDtixoUvdftOhZfqRI03G2Ay4ZxaU1KG6jNCiQ==}
+ peerDependencies:
+ vitest: '>=1'
+
+ vitest@4.1.9:
+ resolution: {integrity: sha512-nE3/LEyc0z87uHYLZebqCUOaJr2hdtuPp7BQ4BosVFnfltxgAvMG08NyrSGlPpOUWvR27c5flSmYFTNr78L9GQ==}
+ engines: {node: ^20.0.0 || ^22.0.0 || >=24.0.0}
+ hasBin: true
+ peerDependencies:
+ '@edge-runtime/vm': '*'
+ '@opentelemetry/api': ^1.9.0
+ '@types/node': ^20.0.0 || ^22.0.0 || >=24.0.0
+ '@vitest/browser-playwright': 4.1.9
+ '@vitest/browser-preview': 4.1.9
+ '@vitest/browser-webdriverio': 4.1.9
+ '@vitest/coverage-istanbul': 4.1.9
+ '@vitest/coverage-v8': 4.1.9
+ '@vitest/ui': 4.1.9
+ happy-dom: '*'
+ jsdom: '*'
+ vite: ^6.0.0 || ^7.0.0 || ^8.0.0
+ peerDependenciesMeta:
+ '@edge-runtime/vm':
+ optional: true
+ '@opentelemetry/api':
+ optional: true
+ '@types/node':
+ optional: true
+ '@vitest/browser-playwright':
+ optional: true
+ '@vitest/browser-preview':
+ optional: true
+ '@vitest/browser-webdriverio':
+ optional: true
+ '@vitest/coverage-istanbul':
+ optional: true
+ '@vitest/coverage-v8':
+ optional: true
+ '@vitest/ui':
+ optional: true
+ happy-dom:
+ optional: true
+ jsdom:
+ optional: true
+
+ vm-browserify@1.1.2:
+ resolution: {integrity: sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ==}
+
+ void-elements@3.1.0:
+ resolution: {integrity: sha512-Dhxzh5HZuiHQhbvTW9AMetFfBHDMYpo23Uo9btPXgdYP+3T5S+p+jgNy7spra+veYhBP2dCSgxR/i2Y02h5/6w==}
+ engines: {node: '>=0.10.0'}
+
+ w3c-xmlserializer@5.0.0:
+ resolution: {integrity: sha512-o8qghlI8NZHU1lLPrpi2+Uq7abh4GGPpYANlalzWxyWteJOCsr/P+oPBA49TOLu5FTZO4d3F9MnWJfiMo4BkmA==}
+ engines: {node: '>=18'}
+
+ walk-up-path@4.0.0:
+ resolution: {integrity: sha512-3hu+tD8YzSLGuFYtPRb48vdhKMi0KQV5sn+uWr8+7dMEq/2G/dtLrdDinkLjqq5TIbIBjYJ4Ax/n3YiaW7QM8A==}
+ engines: {node: 20 || >=22}
+
+ web-vitals@5.2.0:
+ resolution: {integrity: sha512-i2z98bEmaCqSDiHEDu+gHl/dmR4Q+TxFmG3/13KkMO+o8UxQzCqWaDRCiLgEa41nlO4VpXSI0ASa1xWmO9sBlA==}
+
+ webidl-conversions@3.0.1:
+ resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==}
+
+ webidl-conversions@7.0.0:
+ resolution: {integrity: sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==}
+ engines: {node: '>=12'}
+
+ webpack-sources@3.3.4:
+ resolution: {integrity: sha512-7tP1PdV4vF+lYPnkMR0jMY5/la2ub5Fc/8VQrrU+lXkiM6C4TjVfGw7iKfyhnTQOsD+6Q/iKw0eFciziRgD58Q==}
+ engines: {node: '>=10.13.0'}
+
+ webpack-virtual-modules@0.5.0:
+ resolution: {integrity: sha512-kyDivFZ7ZM0BVOUteVbDFhlRt7Ah/CSPwJdi8hBpkK7QLumUqdLtVfm/PX/hkcnrvr0i77fO5+TjZ94Pe+C9iw==}
+
+ webpack-virtual-modules@0.6.2:
+ resolution: {integrity: sha512-66/V2i5hQanC51vBQKPH4aI8NMAcBW59FVBs+rC7eGHupMyfn34q7rZIE+ETlJ+XTevqfUhVVBgSUNSW2flEUQ==}
+
+ webrtc-adapter@9.0.6:
+ resolution: {integrity: sha512-CHbl2ZQbxx164IgWRgzJno4hWtM4tFbRam1QfI3Yxhs3w/DvqluVxVWeXs3oL5/fbGkSNLKo0Ty5MgUWceNhog==}
+ engines: {node: '>=6.0.0', npm: '>=3.10.0'}
+
+ whatwg-encoding@3.1.1:
+ resolution: {integrity: sha512-6qN4hJdMwfYBtE3YBTTHhoeuUrDBPZmbQaxWAqSALV/MeEnR5z1xd8UKud2RAkFoPkmB+hli1TZSnyi84xz1vQ==}
+ engines: {node: '>=18'}
+ deprecated: Use @exodus/bytes instead for a more spec-conformant and faster implementation
+
+ whatwg-mimetype@4.0.0:
+ resolution: {integrity: sha512-QaKxh0eNIi2mE9p2vEdzfagOKHCcj1pJ56EEHGQOVxp8r9/iszLUUV7v89x9O1p/T+NlTM5W7jW6+cz4Fq1YVg==}
+ engines: {node: '>=18'}
+
+ whatwg-url@14.2.0:
+ resolution: {integrity: sha512-De72GdQZzNTUBBChsXueQUnPKDkg/5A5zp7pFDuQAj5UFoENpiACU0wlCvzpAGnTkj++ihpKwKyYewn/XNUbKw==}
+ engines: {node: '>=18'}
+
+ whatwg-url@5.0.0:
+ resolution: {integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==}
+
+ which-module@2.0.1:
+ resolution: {integrity: sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ==}
+
+ which-typed-array@1.1.20:
+ resolution: {integrity: sha512-LYfpUkmqwl0h9A2HL09Mms427Q1RZWuOHsukfVcKRq9q95iQxdw0ix1JQrqbcDR9PH1QDwf5Qo8OZb5lksZ8Xg==}
+ engines: {node: '>= 0.4'}
+
+ which@2.0.2:
+ resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==}
+ engines: {node: '>= 8'}
+ hasBin: true
+
+ why-is-node-running@2.3.0:
+ resolution: {integrity: sha512-hUrmaWBdVDcxvYqnyh09zunKzROWjbZTiNy8dBEjkS7ehEDQibXJ7XvlmtbwuTclUiIyN+CyXQD4Vmko8fNm8w==}
+ engines: {node: '>=8'}
+ hasBin: true
+
+ word-wrap@1.2.5:
+ resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==}
+ engines: {node: '>=0.10.0'}
+
+ wrap-ansi@6.2.0:
+ resolution: {integrity: sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==}
+ engines: {node: '>=8'}
+
+ wrap-ansi@7.0.0:
+ resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==}
+ engines: {node: '>=10'}
+
+ wrap-ansi@8.1.0:
+ resolution: {integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==}
+ engines: {node: '>=12'}
+
+ wrappy@1.0.2:
+ resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==}
+
+ ws@8.21.0:
+ resolution: {integrity: sha512-Vsp28b7DRcimFQvrqu2Wek3z1iYxDCWqHYB8Qsnk/S4RfaCQzPGPyBNuVjJV3cd6UiKtUtp6sNM77gWvzcCH+g==}
+ engines: {node: '>=10.0.0'}
+ peerDependencies:
+ bufferutil: ^4.0.1
+ utf-8-validate: '>=5.0.2'
+ peerDependenciesMeta:
+ bufferutil:
+ optional: true
+ utf-8-validate:
+ optional: true
+
+ wsl-utils@0.1.0:
+ resolution: {integrity: sha512-h3Fbisa2nKGPxCpm89Hk33lBLsnaGBvctQopaBSOW/uIs6FTe1ATyAnKFJrzVs9vpGdsTe73WF3V4lIsk4Gacw==}
+ engines: {node: '>=18'}
+
+ xml-name-validator@5.0.0:
+ resolution: {integrity: sha512-EvGK8EJ3DhaHfbRlETOWAS5pO9MZITeauHKJyb8wyajUfQUenkIg2MvLDTZ4T/TgIcm3HU0TFBgWWboAZ30UHg==}
+ engines: {node: '>=18'}
+
+ xmlchars@2.2.0:
+ resolution: {integrity: sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==}
+
+ xtend@4.0.2:
+ resolution: {integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==}
+ engines: {node: '>=0.4'}
+
+ y18n@4.0.3:
+ resolution: {integrity: sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==}
+
+ yallist@3.1.1:
+ resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==}
+
+ yaml@2.8.3:
+ resolution: {integrity: sha512-AvbaCLOO2Otw/lW5bmh9d/WEdcDFdQp2Z2ZUH3pX9U2ihyUY0nvLv7J6TrWowklRGPYbB/IuIMfYgxaCPg5Bpg==}
+ engines: {node: '>= 14.6'}
+ hasBin: true
+
+ yaml@2.9.0:
+ resolution: {integrity: sha512-2AvhNX3mb8zd6Zy7INTtSpl1F15HW6Wnqj0srWlkKLcpYl/gMIMJiyuGq2KeI2YFxUPjdlB+3Lc10seMLtL4cA==}
+ engines: {node: '>= 14.6'}
+ hasBin: true
+
+ yargs-parser@18.1.3:
+ resolution: {integrity: sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==}
+ engines: {node: '>=6'}
+
+ yargs@15.4.1:
+ resolution: {integrity: sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==}
+ engines: {node: '>=8'}
+
+ yocto-queue@0.1.0:
+ resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
+ engines: {node: '>=10'}
+
+ yoctocolors@2.1.2:
+ resolution: {integrity: sha512-CzhO+pFNo8ajLM2d2IW/R93ipy99LWjtwblvC1RsoSUMZgyLbYFr221TnSNT7GjGdYui6P459mw9JH/g/zW2ug==}
+ engines: {node: '>=18'}
+
+ zod@3.25.76:
+ resolution: {integrity: sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==}
+
+ zod@4.3.6:
+ resolution: {integrity: sha512-rftlrkhHZOcjDwkGlnUtZZkvaPHCsDATp4pGpuOOMDaTdDDXF91wuVDJoWoPsKX/3YPQ5fHuF3STjcYyKr+Qhg==}
+
+snapshots:
+
+ '@actions/core@1.11.1':
+ dependencies:
+ '@actions/exec': 1.1.1
+ '@actions/http-client': 2.2.3
+
+ '@actions/exec@1.1.1':
+ dependencies:
+ '@actions/io': 1.1.3
+
+ '@actions/github@6.0.1':
+ dependencies:
+ '@actions/http-client': 2.2.3
+ '@octokit/core': 5.2.2
+ '@octokit/plugin-paginate-rest': 9.2.2(@octokit/core@5.2.2)
+ '@octokit/plugin-rest-endpoint-methods': 10.4.1(@octokit/core@5.2.2)
+ '@octokit/request': 8.4.1
+ '@octokit/request-error': 5.1.1
+ undici: 6.27.0
+
+ '@actions/http-client@2.2.3':
+ dependencies:
+ tunnel: 0.0.6
+ undici: 6.27.0
+
+ '@actions/io@1.1.3': {}
+
+ '@adobe/css-tools@4.4.4': {}
+
+ '@asamuzakjp/css-color@3.2.0':
+ dependencies:
+ '@csstools/css-calc': 2.1.4(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)
+ '@csstools/css-color-parser': 3.1.0(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)
+ '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4)
+ '@csstools/css-tokenizer': 3.0.4
+ lru-cache: 10.4.3
+
+ '@babel/code-frame@7.29.0':
+ dependencies:
+ '@babel/helper-validator-identifier': 7.28.5
+ js-tokens: 4.0.0
+ picocolors: 1.1.1
+
+ '@babel/code-frame@7.29.7':
+ dependencies:
+ '@babel/helper-validator-identifier': 7.29.7
+ js-tokens: 4.0.0
+ picocolors: 1.1.1
+
+ '@babel/compat-data@7.29.7': {}
+
+ '@babel/core@7.29.7':
+ dependencies:
+ '@babel/code-frame': 7.29.7
+ '@babel/generator': 7.29.7
+ '@babel/helper-compilation-targets': 7.29.7
+ '@babel/helper-module-transforms': 7.29.7(@babel/core@7.29.7)
+ '@babel/helpers': 7.29.7
+ '@babel/parser': 7.29.7
+ '@babel/template': 7.29.7
+ '@babel/traverse': 7.29.7
+ '@babel/types': 7.29.7
+ '@jridgewell/remapping': 2.3.5
+ convert-source-map: 2.0.0
+ debug: 4.4.3
+ gensync: 1.0.0-beta.2
+ json5: 2.2.3
+ semver: 6.3.1
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/generator@7.29.7':
+ dependencies:
+ '@babel/parser': 7.29.7
+ '@babel/types': 7.29.7
+ '@jridgewell/gen-mapping': 0.3.13
+ '@jridgewell/trace-mapping': 0.3.31
+ jsesc: 3.1.0
+
+ '@babel/helper-compilation-targets@7.29.7':
+ dependencies:
+ '@babel/compat-data': 7.29.7
+ '@babel/helper-validator-option': 7.29.7
+ browserslist: 4.28.2
+ lru-cache: 5.1.1
+ semver: 6.3.1
+
+ '@babel/helper-globals@7.29.7': {}
+
+ '@babel/helper-module-imports@7.29.7':
+ dependencies:
+ '@babel/traverse': 7.29.7
+ '@babel/types': 7.29.7
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/helper-module-transforms@7.29.7(@babel/core@7.29.7)':
+ dependencies:
+ '@babel/core': 7.29.7
+ '@babel/helper-module-imports': 7.29.7
+ '@babel/helper-validator-identifier': 7.29.7
+ '@babel/traverse': 7.29.7
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/helper-string-parser@7.29.7': {}
+
+ '@babel/helper-validator-identifier@7.28.5': {}
+
+ '@babel/helper-validator-identifier@7.29.7': {}
+
+ '@babel/helper-validator-option@7.29.7': {}
+
+ '@babel/helpers@7.29.7':
+ dependencies:
+ '@babel/template': 7.29.7
+ '@babel/types': 7.29.7
+
+ '@babel/parser@7.29.7':
+ dependencies:
+ '@babel/types': 7.29.7
+
+ '@babel/runtime@7.29.2': {}
+
+ '@babel/runtime@7.29.7': {}
+
+ '@babel/template@7.29.7':
+ dependencies:
+ '@babel/code-frame': 7.29.7
+ '@babel/parser': 7.29.7
+ '@babel/types': 7.29.7
+
+ '@babel/traverse@7.29.7':
+ dependencies:
+ '@babel/code-frame': 7.29.7
+ '@babel/generator': 7.29.7
+ '@babel/helper-globals': 7.29.7
+ '@babel/parser': 7.29.7
+ '@babel/template': 7.29.7
+ '@babel/types': 7.29.7
+ debug: 4.4.3
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/types@7.29.7':
+ dependencies:
+ '@babel/helper-string-parser': 7.29.7
+ '@babel/helper-validator-identifier': 7.29.7
+
+ '@bcoe/v8-coverage@1.0.2': {}
+
+ '@blazediff/core@1.9.1': {}
+
+ '@bufbuild/protobuf@1.10.1': {}
+
+ '@codecov/bundler-plugin-core@1.9.1':
+ dependencies:
+ '@actions/core': 1.11.1
+ '@actions/github': 6.0.1
+ chalk: 4.1.2
+ semver: 7.8.1
+ unplugin: 1.16.1
+ zod: 3.25.76
+
+ '@codecov/vite-plugin@1.9.1(vite@8.1.0(@types/node@24.13.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(terser@5.46.1)(yaml@2.9.0))':
+ dependencies:
+ '@codecov/bundler-plugin-core': 1.9.1
+ unplugin: 1.16.1
+ vite: 8.1.0(@types/node@24.13.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(terser@5.46.1)(yaml@2.9.0)
+
+ '@croct/json5-parser@0.2.2':
+ dependencies:
+ '@croct/json': 2.1.0
+
+ '@croct/json@2.1.0': {}
+
+ '@csstools/cascade-layer-name-parser@2.0.5(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)':
+ dependencies:
+ '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4)
+ '@csstools/css-tokenizer': 3.0.4
+
+ '@csstools/color-helpers@5.1.0': {}
+
+ '@csstools/css-calc@2.1.4(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)':
+ dependencies:
+ '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4)
+ '@csstools/css-tokenizer': 3.0.4
+
+ '@csstools/css-color-parser@3.1.0(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)':
+ dependencies:
+ '@csstools/color-helpers': 5.1.0
+ '@csstools/css-calc': 2.1.4(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)
+ '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4)
+ '@csstools/css-tokenizer': 3.0.4
+
+ '@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4)':
+ dependencies:
+ '@csstools/css-tokenizer': 3.0.4
+
+ '@csstools/css-tokenizer@3.0.4': {}
+
+ '@csstools/media-query-list-parser@4.0.3(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)':
+ dependencies:
+ '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4)
+ '@csstools/css-tokenizer': 3.0.4
+
+ '@csstools/postcss-alpha-function@1.0.1(postcss@8.5.18)':
+ dependencies:
+ '@csstools/css-color-parser': 3.1.0(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)
+ '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4)
+ '@csstools/css-tokenizer': 3.0.4
+ '@csstools/postcss-progressive-custom-properties': 4.2.1(postcss@8.5.18)
+ '@csstools/utilities': 2.0.0(postcss@8.5.18)
+ postcss: 8.5.18
+
+ '@csstools/postcss-cascade-layers@5.0.2(postcss@8.5.18)':
+ dependencies:
+ '@csstools/selector-specificity': 5.0.0(postcss-selector-parser@7.1.1)
+ postcss: 8.5.18
+ postcss-selector-parser: 7.1.1
+
+ '@csstools/postcss-color-function-display-p3-linear@1.0.1(postcss@8.5.18)':
+ dependencies:
+ '@csstools/css-color-parser': 3.1.0(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)
+ '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4)
+ '@csstools/css-tokenizer': 3.0.4
+ '@csstools/postcss-progressive-custom-properties': 4.2.1(postcss@8.5.18)
+ '@csstools/utilities': 2.0.0(postcss@8.5.18)
+ postcss: 8.5.18
+
+ '@csstools/postcss-color-function@4.0.12(postcss@8.5.18)':
+ dependencies:
+ '@csstools/css-color-parser': 3.1.0(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)
+ '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4)
+ '@csstools/css-tokenizer': 3.0.4
+ '@csstools/postcss-progressive-custom-properties': 4.2.1(postcss@8.5.18)
+ '@csstools/utilities': 2.0.0(postcss@8.5.18)
+ postcss: 8.5.18
+
+ '@csstools/postcss-color-mix-function@3.0.12(postcss@8.5.18)':
+ dependencies:
+ '@csstools/css-color-parser': 3.1.0(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)
+ '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4)
+ '@csstools/css-tokenizer': 3.0.4
+ '@csstools/postcss-progressive-custom-properties': 4.2.1(postcss@8.5.18)
+ '@csstools/utilities': 2.0.0(postcss@8.5.18)
+ postcss: 8.5.18
+
+ '@csstools/postcss-color-mix-variadic-function-arguments@1.0.2(postcss@8.5.18)':
+ dependencies:
+ '@csstools/css-color-parser': 3.1.0(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)
+ '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4)
+ '@csstools/css-tokenizer': 3.0.4
+ '@csstools/postcss-progressive-custom-properties': 4.2.1(postcss@8.5.18)
+ '@csstools/utilities': 2.0.0(postcss@8.5.18)
+ postcss: 8.5.18
+
+ '@csstools/postcss-content-alt-text@2.0.8(postcss@8.5.18)':
+ dependencies:
+ '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4)
+ '@csstools/css-tokenizer': 3.0.4
+ '@csstools/postcss-progressive-custom-properties': 4.2.1(postcss@8.5.18)
+ '@csstools/utilities': 2.0.0(postcss@8.5.18)
+ postcss: 8.5.18
+
+ '@csstools/postcss-contrast-color-function@2.0.12(postcss@8.5.18)':
+ dependencies:
+ '@csstools/css-color-parser': 3.1.0(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)
+ '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4)
+ '@csstools/css-tokenizer': 3.0.4
+ '@csstools/postcss-progressive-custom-properties': 4.2.1(postcss@8.5.18)
+ '@csstools/utilities': 2.0.0(postcss@8.5.18)
+ postcss: 8.5.18
+
+ '@csstools/postcss-exponential-functions@2.0.9(postcss@8.5.18)':
+ dependencies:
+ '@csstools/css-calc': 2.1.4(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)
+ '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4)
+ '@csstools/css-tokenizer': 3.0.4
+ postcss: 8.5.18
+
+ '@csstools/postcss-font-format-keywords@4.0.0(postcss@8.5.18)':
+ dependencies:
+ '@csstools/utilities': 2.0.0(postcss@8.5.18)
+ postcss: 8.5.18
+ postcss-value-parser: 4.2.0
+
+ '@csstools/postcss-gamut-mapping@2.0.11(postcss@8.5.18)':
+ dependencies:
+ '@csstools/css-color-parser': 3.1.0(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)
+ '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4)
+ '@csstools/css-tokenizer': 3.0.4
+ postcss: 8.5.18
+
+ '@csstools/postcss-gradients-interpolation-method@5.0.12(postcss@8.5.18)':
+ dependencies:
+ '@csstools/css-color-parser': 3.1.0(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)
+ '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4)
+ '@csstools/css-tokenizer': 3.0.4
+ '@csstools/postcss-progressive-custom-properties': 4.2.1(postcss@8.5.18)
+ '@csstools/utilities': 2.0.0(postcss@8.5.18)
+ postcss: 8.5.18
+
+ '@csstools/postcss-hwb-function@4.0.12(postcss@8.5.18)':
+ dependencies:
+ '@csstools/css-color-parser': 3.1.0(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)
+ '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4)
+ '@csstools/css-tokenizer': 3.0.4
+ '@csstools/postcss-progressive-custom-properties': 4.2.1(postcss@8.5.18)
+ '@csstools/utilities': 2.0.0(postcss@8.5.18)
+ postcss: 8.5.18
+
+ '@csstools/postcss-ic-unit@4.0.4(postcss@8.5.18)':
+ dependencies:
+ '@csstools/postcss-progressive-custom-properties': 4.2.1(postcss@8.5.18)
+ '@csstools/utilities': 2.0.0(postcss@8.5.18)
+ postcss: 8.5.18
+ postcss-value-parser: 4.2.0
+
+ '@csstools/postcss-initial@2.0.1(postcss@8.5.18)':
+ dependencies:
+ postcss: 8.5.18
+
+ '@csstools/postcss-is-pseudo-class@5.0.3(postcss@8.5.18)':
+ dependencies:
+ '@csstools/selector-specificity': 5.0.0(postcss-selector-parser@7.1.1)
+ postcss: 8.5.18
+ postcss-selector-parser: 7.1.1
+
+ '@csstools/postcss-light-dark-function@2.0.11(postcss@8.5.18)':
+ dependencies:
+ '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4)
+ '@csstools/css-tokenizer': 3.0.4
+ '@csstools/postcss-progressive-custom-properties': 4.2.1(postcss@8.5.18)
+ '@csstools/utilities': 2.0.0(postcss@8.5.18)
+ postcss: 8.5.18
+
+ '@csstools/postcss-logical-float-and-clear@3.0.0(postcss@8.5.18)':
+ dependencies:
+ postcss: 8.5.18
+
+ '@csstools/postcss-logical-overflow@2.0.0(postcss@8.5.18)':
+ dependencies:
+ postcss: 8.5.18
+
+ '@csstools/postcss-logical-overscroll-behavior@2.0.0(postcss@8.5.18)':
+ dependencies:
+ postcss: 8.5.18
+
+ '@csstools/postcss-logical-resize@3.0.0(postcss@8.5.18)':
+ dependencies:
+ postcss: 8.5.18
+ postcss-value-parser: 4.2.0
+
+ '@csstools/postcss-logical-viewport-units@3.0.4(postcss@8.5.18)':
+ dependencies:
+ '@csstools/css-tokenizer': 3.0.4
+ '@csstools/utilities': 2.0.0(postcss@8.5.18)
+ postcss: 8.5.18
+
+ '@csstools/postcss-media-minmax@2.0.9(postcss@8.5.18)':
+ dependencies:
+ '@csstools/css-calc': 2.1.4(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)
+ '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4)
+ '@csstools/css-tokenizer': 3.0.4
+ '@csstools/media-query-list-parser': 4.0.3(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)
+ postcss: 8.5.18
+
+ '@csstools/postcss-media-queries-aspect-ratio-number-values@3.0.5(postcss@8.5.18)':
+ dependencies:
+ '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4)
+ '@csstools/css-tokenizer': 3.0.4
+ '@csstools/media-query-list-parser': 4.0.3(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)
+ postcss: 8.5.18
+
+ '@csstools/postcss-nested-calc@4.0.0(postcss@8.5.18)':
+ dependencies:
+ '@csstools/utilities': 2.0.0(postcss@8.5.18)
+ postcss: 8.5.18
+ postcss-value-parser: 4.2.0
+
+ '@csstools/postcss-normalize-display-values@4.0.1(postcss@8.5.18)':
+ dependencies:
+ postcss: 8.5.18
+ postcss-value-parser: 4.2.0
+
+ '@csstools/postcss-oklab-function@4.0.12(postcss@8.5.18)':
+ dependencies:
+ '@csstools/css-color-parser': 3.1.0(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)
+ '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4)
+ '@csstools/css-tokenizer': 3.0.4
+ '@csstools/postcss-progressive-custom-properties': 4.2.1(postcss@8.5.18)
+ '@csstools/utilities': 2.0.0(postcss@8.5.18)
+ postcss: 8.5.18
+
+ '@csstools/postcss-position-area-property@1.0.0(postcss@8.5.18)':
+ dependencies:
+ postcss: 8.5.18
+
+ '@csstools/postcss-progressive-custom-properties@4.2.1(postcss@8.5.18)':
+ dependencies:
+ postcss: 8.5.18
+ postcss-value-parser: 4.2.0
+
+ '@csstools/postcss-property-rule-prelude-list@1.0.0(postcss@8.5.18)':
+ dependencies:
+ '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4)
+ '@csstools/css-tokenizer': 3.0.4
+ postcss: 8.5.18
+
+ '@csstools/postcss-random-function@2.0.1(postcss@8.5.18)':
+ dependencies:
+ '@csstools/css-calc': 2.1.4(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)
+ '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4)
+ '@csstools/css-tokenizer': 3.0.4
+ postcss: 8.5.18
+
+ '@csstools/postcss-relative-color-syntax@3.0.12(postcss@8.5.18)':
+ dependencies:
+ '@csstools/css-color-parser': 3.1.0(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)
+ '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4)
+ '@csstools/css-tokenizer': 3.0.4
+ '@csstools/postcss-progressive-custom-properties': 4.2.1(postcss@8.5.18)
+ '@csstools/utilities': 2.0.0(postcss@8.5.18)
+ postcss: 8.5.18
+
+ '@csstools/postcss-scope-pseudo-class@4.0.1(postcss@8.5.18)':
+ dependencies:
+ postcss: 8.5.18
+ postcss-selector-parser: 7.1.1
+
+ '@csstools/postcss-sign-functions@1.1.4(postcss@8.5.18)':
+ dependencies:
+ '@csstools/css-calc': 2.1.4(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)
+ '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4)
+ '@csstools/css-tokenizer': 3.0.4
+ postcss: 8.5.18
+
+ '@csstools/postcss-stepped-value-functions@4.0.9(postcss@8.5.18)':
+ dependencies:
+ '@csstools/css-calc': 2.1.4(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)
+ '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4)
+ '@csstools/css-tokenizer': 3.0.4
+ postcss: 8.5.18
+
+ '@csstools/postcss-syntax-descriptor-syntax-production@1.0.1(postcss@8.5.18)':
+ dependencies:
+ '@csstools/css-tokenizer': 3.0.4
+ postcss: 8.5.18
+
+ '@csstools/postcss-system-ui-font-family@1.0.0(postcss@8.5.18)':
+ dependencies:
+ '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4)
+ '@csstools/css-tokenizer': 3.0.4
+ postcss: 8.5.18
+
+ '@csstools/postcss-text-decoration-shorthand@4.0.3(postcss@8.5.18)':
+ dependencies:
+ '@csstools/color-helpers': 5.1.0
+ postcss: 8.5.18
+ postcss-value-parser: 4.2.0
+
+ '@csstools/postcss-trigonometric-functions@4.0.9(postcss@8.5.18)':
+ dependencies:
+ '@csstools/css-calc': 2.1.4(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)
+ '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4)
+ '@csstools/css-tokenizer': 3.0.4
+ postcss: 8.5.18
+
+ '@csstools/postcss-unset-value@4.0.0(postcss@8.5.18)':
+ dependencies:
+ postcss: 8.5.18
+
+ '@csstools/selector-resolve-nested@3.1.0(postcss-selector-parser@7.1.1)':
+ dependencies:
+ postcss-selector-parser: 7.1.1
+
+ '@csstools/selector-specificity@5.0.0(postcss-selector-parser@7.1.1)':
+ dependencies:
+ postcss-selector-parser: 7.1.1
+
+ '@csstools/utilities@2.0.0(postcss@8.5.18)':
+ dependencies:
+ postcss: 8.5.18
+
+ '@emnapi/core@1.11.0':
+ dependencies:
+ '@emnapi/wasi-threads': 1.2.2
+ tslib: 2.8.1
+ optional: true
+
+ '@emnapi/core@1.11.1':
+ dependencies:
+ '@emnapi/wasi-threads': 1.2.2
+ tslib: 2.8.1
+ optional: true
+
+ '@emnapi/core@1.9.2':
+ dependencies:
+ '@emnapi/wasi-threads': 1.2.1
+ tslib: 2.8.1
+ optional: true
+
+ '@emnapi/runtime@1.11.0':
+ dependencies:
+ tslib: 2.8.1
+ optional: true
+
+ '@emnapi/runtime@1.11.1':
+ dependencies:
+ tslib: 2.8.1
+ optional: true
+
+ '@emnapi/runtime@1.9.2':
+ dependencies:
+ tslib: 2.8.1
+ optional: true
+
+ '@emnapi/wasi-threads@1.2.1':
+ dependencies:
+ tslib: 2.8.1
+ optional: true
+
+ '@emnapi/wasi-threads@1.2.2':
+ dependencies:
+ tslib: 2.8.1
+ optional: true
+
+ '@esbuild/aix-ppc64@0.28.1':
+ optional: true
+
+ '@esbuild/android-arm64@0.28.1':
+ optional: true
+
+ '@esbuild/android-arm@0.28.1':
+ optional: true
+
+ '@esbuild/android-x64@0.28.1':
+ optional: true
+
+ '@esbuild/darwin-arm64@0.28.1':
+ optional: true
+
+ '@esbuild/darwin-x64@0.28.1':
+ optional: true
+
+ '@esbuild/freebsd-arm64@0.28.1':
+ optional: true
+
+ '@esbuild/freebsd-x64@0.28.1':
+ optional: true
+
+ '@esbuild/linux-arm64@0.28.1':
+ optional: true
+
+ '@esbuild/linux-arm@0.28.1':
+ optional: true
+
+ '@esbuild/linux-ia32@0.28.1':
+ optional: true
+
+ '@esbuild/linux-loong64@0.28.1':
+ optional: true
+
+ '@esbuild/linux-mips64el@0.28.1':
+ optional: true
+
+ '@esbuild/linux-ppc64@0.28.1':
+ optional: true
+
+ '@esbuild/linux-riscv64@0.28.1':
+ optional: true
+
+ '@esbuild/linux-s390x@0.28.1':
+ optional: true
+
+ '@esbuild/linux-x64@0.28.1':
+ optional: true
+
+ '@esbuild/netbsd-arm64@0.28.1':
+ optional: true
+
+ '@esbuild/netbsd-x64@0.28.1':
+ optional: true
+
+ '@esbuild/openbsd-arm64@0.28.1':
+ optional: true
+
+ '@esbuild/openbsd-x64@0.28.1':
+ optional: true
+
+ '@esbuild/openharmony-arm64@0.28.1':
+ optional: true
+
+ '@esbuild/sunos-x64@0.28.1':
+ optional: true
+
+ '@esbuild/win32-arm64@0.28.1':
+ optional: true
+
+ '@esbuild/win32-ia32@0.28.1':
+ optional: true
+
+ '@esbuild/win32-x64@0.28.1':
+ optional: true
+
+ '@eslint-community/eslint-utils@4.10.1(eslint@8.57.1)':
+ dependencies:
+ eslint: 8.57.1
+ eslint-visitor-keys: 3.4.3
+
+ '@eslint-community/eslint-utils@4.9.1(eslint@8.57.1)':
+ dependencies:
+ eslint: 8.57.1
+ eslint-visitor-keys: 3.4.3
+
+ '@eslint-community/regexpp@4.12.2': {}
+
+ '@eslint/eslintrc@2.1.4':
+ dependencies:
+ ajv: 6.15.0
+ debug: 4.4.3
+ espree: 9.6.1
+ globals: 13.24.0
+ ignore: 5.3.2
+ import-fresh: 3.3.1
+ js-yaml: 4.3.0
+ minimatch: 10.2.6
+ strip-json-comments: 3.1.1
+ transitivePeerDependencies:
+ - supports-color
+
+ '@eslint/js@8.57.1': {}
+
+ '@floating-ui/core@1.7.5':
+ dependencies:
+ '@floating-ui/utils': 0.2.11
+
+ '@floating-ui/core@1.8.0':
+ dependencies:
+ '@floating-ui/utils': 0.2.12
+
+ '@floating-ui/dom@1.7.4':
+ dependencies:
+ '@floating-ui/core': 1.7.5
+ '@floating-ui/utils': 0.2.11
+
+ '@floating-ui/dom@1.8.0':
+ dependencies:
+ '@floating-ui/core': 1.8.0
+ '@floating-ui/utils': 0.2.12
+
+ '@floating-ui/react-dom@2.1.9(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
+ dependencies:
+ '@floating-ui/dom': 1.8.0
+ react: 19.2.7
+ react-dom: 19.2.7(react@19.2.7)
+
+ '@floating-ui/react@0.27.20(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
+ dependencies:
+ '@floating-ui/react-dom': 2.1.9(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@floating-ui/utils': 0.2.12
+ react: 19.2.7
+ react-dom: 19.2.7(react@19.2.7)
+ tabbable: 6.5.0
+
+ '@floating-ui/utils@0.2.11': {}
+
+ '@floating-ui/utils@0.2.12': {}
+
+ '@fontsource/inconsolata@5.2.8': {}
+
+ '@fontsource/inter@5.2.8': {}
+
+ '@formatjs/bigdecimal@0.2.6': {}
+
+ '@formatjs/ecma402-abstract@2.3.6':
+ dependencies:
+ '@formatjs/fast-memoize': 2.2.7
+ '@formatjs/intl-localematcher': 0.6.2
+ decimal.js: 10.6.0
+ tslib: 2.8.1
+
+ '@formatjs/fast-memoize@2.2.7':
+ dependencies:
+ tslib: 2.8.1
+
+ '@formatjs/fast-memoize@3.1.6': {}
+
+ '@formatjs/intl-durationformat@0.10.15':
+ dependencies:
+ '@formatjs/bigdecimal': 0.2.6
+ '@formatjs/intl-localematcher': 0.8.10
+
+ '@formatjs/intl-localematcher@0.6.2':
+ dependencies:
+ tslib: 2.8.1
+
+ '@formatjs/intl-localematcher@0.8.10':
+ dependencies:
+ '@formatjs/fast-memoize': 3.1.6
+
+ '@formatjs/intl-segmenter@11.7.12':
+ dependencies:
+ '@formatjs/ecma402-abstract': 2.3.6
+ '@formatjs/intl-localematcher': 0.6.2
+ tslib: 2.8.1
+
+ '@humanwhocodes/config-array@0.13.0':
+ dependencies:
+ '@humanwhocodes/object-schema': 2.0.3
+ debug: 4.4.3
+ minimatch: 10.2.6
+ transitivePeerDependencies:
+ - supports-color
+
+ '@humanwhocodes/module-importer@1.0.1': {}
+
+ '@humanwhocodes/object-schema@2.0.3': {}
+
+ '@inquirer/ansi@2.0.7': {}
+
+ '@inquirer/checkbox@5.2.1(@types/node@24.13.2)':
+ dependencies:
+ '@inquirer/ansi': 2.0.7
+ '@inquirer/core': 11.2.1(@types/node@24.13.2)
+ '@inquirer/figures': 2.0.7
+ '@inquirer/type': 4.0.7(@types/node@24.13.2)
+ optionalDependencies:
+ '@types/node': 24.13.2
+
+ '@inquirer/confirm@6.1.1(@types/node@24.13.2)':
+ dependencies:
+ '@inquirer/core': 11.2.1(@types/node@24.13.2)
+ '@inquirer/type': 4.0.7(@types/node@24.13.2)
+ optionalDependencies:
+ '@types/node': 24.13.2
+
+ '@inquirer/core@11.2.1(@types/node@24.13.2)':
+ dependencies:
+ '@inquirer/ansi': 2.0.7
+ '@inquirer/figures': 2.0.7
+ '@inquirer/type': 4.0.7(@types/node@24.13.2)
+ cli-width: 4.1.0
+ fast-wrap-ansi: 0.2.2
+ mute-stream: 3.0.0
+ signal-exit: 4.1.0
+ optionalDependencies:
+ '@types/node': 24.13.2
+
+ '@inquirer/editor@5.2.2(@types/node@24.13.2)':
+ dependencies:
+ '@inquirer/core': 11.2.1(@types/node@24.13.2)
+ '@inquirer/external-editor': 3.0.3(@types/node@24.13.2)
+ '@inquirer/type': 4.0.7(@types/node@24.13.2)
+ optionalDependencies:
+ '@types/node': 24.13.2
+
+ '@inquirer/expand@5.1.1(@types/node@24.13.2)':
+ dependencies:
+ '@inquirer/core': 11.2.1(@types/node@24.13.2)
+ '@inquirer/type': 4.0.7(@types/node@24.13.2)
+ optionalDependencies:
+ '@types/node': 24.13.2
+
+ '@inquirer/external-editor@3.0.3(@types/node@24.13.2)':
+ dependencies:
+ chardet: 2.2.0
+ iconv-lite: 0.7.2
+ optionalDependencies:
+ '@types/node': 24.13.2
+
+ '@inquirer/figures@2.0.7': {}
+
+ '@inquirer/input@5.1.2(@types/node@24.13.2)':
+ dependencies:
+ '@inquirer/core': 11.2.1(@types/node@24.13.2)
+ '@inquirer/type': 4.0.7(@types/node@24.13.2)
+ optionalDependencies:
+ '@types/node': 24.13.2
+
+ '@inquirer/number@4.1.1(@types/node@24.13.2)':
+ dependencies:
+ '@inquirer/core': 11.2.1(@types/node@24.13.2)
+ '@inquirer/type': 4.0.7(@types/node@24.13.2)
+ optionalDependencies:
+ '@types/node': 24.13.2
+
+ '@inquirer/password@5.1.1(@types/node@24.13.2)':
+ dependencies:
+ '@inquirer/ansi': 2.0.7
+ '@inquirer/core': 11.2.1(@types/node@24.13.2)
+ '@inquirer/type': 4.0.7(@types/node@24.13.2)
+ optionalDependencies:
+ '@types/node': 24.13.2
+
+ '@inquirer/prompts@8.5.2(@types/node@24.13.2)':
+ dependencies:
+ '@inquirer/checkbox': 5.2.1(@types/node@24.13.2)
+ '@inquirer/confirm': 6.1.1(@types/node@24.13.2)
+ '@inquirer/editor': 5.2.2(@types/node@24.13.2)
+ '@inquirer/expand': 5.1.1(@types/node@24.13.2)
+ '@inquirer/input': 5.1.2(@types/node@24.13.2)
+ '@inquirer/number': 4.1.1(@types/node@24.13.2)
+ '@inquirer/password': 5.1.1(@types/node@24.13.2)
+ '@inquirer/rawlist': 5.3.1(@types/node@24.13.2)
+ '@inquirer/search': 4.2.1(@types/node@24.13.2)
+ '@inquirer/select': 5.2.1(@types/node@24.13.2)
+ optionalDependencies:
+ '@types/node': 24.13.2
+
+ '@inquirer/rawlist@5.3.1(@types/node@24.13.2)':
+ dependencies:
+ '@inquirer/core': 11.2.1(@types/node@24.13.2)
+ '@inquirer/type': 4.0.7(@types/node@24.13.2)
+ optionalDependencies:
+ '@types/node': 24.13.2
+
+ '@inquirer/search@4.2.1(@types/node@24.13.2)':
+ dependencies:
+ '@inquirer/core': 11.2.1(@types/node@24.13.2)
+ '@inquirer/figures': 2.0.7
+ '@inquirer/type': 4.0.7(@types/node@24.13.2)
+ optionalDependencies:
+ '@types/node': 24.13.2
+
+ '@inquirer/select@5.2.1(@types/node@24.13.2)':
+ dependencies:
+ '@inquirer/ansi': 2.0.7
+ '@inquirer/core': 11.2.1(@types/node@24.13.2)
+ '@inquirer/figures': 2.0.7
+ '@inquirer/type': 4.0.7(@types/node@24.13.2)
+ optionalDependencies:
+ '@types/node': 24.13.2
+
+ '@inquirer/type@4.0.7(@types/node@24.13.2)':
+ optionalDependencies:
+ '@types/node': 24.13.2
+
+ '@isaacs/cliui@8.0.2':
+ dependencies:
+ string-width: 5.1.2
+ string-width-cjs: string-width@4.2.3
+ strip-ansi: 7.2.0
+ strip-ansi-cjs: strip-ansi@6.0.1
+ wrap-ansi: 8.1.0
+ wrap-ansi-cjs: wrap-ansi@7.0.0
+
+ '@joshwooding/vite-plugin-react-docgen-typescript@0.7.0(typescript@5.9.3)(vite@8.1.0(@types/node@24.13.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(terser@5.46.1)(yaml@2.9.0))':
+ dependencies:
+ glob: 10.5.0
+ react-docgen-typescript: 2.4.0(typescript@5.9.3)
+ vite: 8.1.0(@types/node@24.13.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(terser@5.46.1)(yaml@2.9.0)
+ optionalDependencies:
+ typescript: 5.9.3
+
+ '@jridgewell/gen-mapping@0.3.13':
+ dependencies:
+ '@jridgewell/sourcemap-codec': 1.5.5
+ '@jridgewell/trace-mapping': 0.3.31
+
+ '@jridgewell/remapping@2.3.5':
+ dependencies:
+ '@jridgewell/gen-mapping': 0.3.13
+ '@jridgewell/trace-mapping': 0.3.31
+
+ '@jridgewell/resolve-uri@3.1.2': {}
+
+ '@jridgewell/source-map@0.3.11':
+ dependencies:
+ '@jridgewell/gen-mapping': 0.3.13
+ '@jridgewell/trace-mapping': 0.3.31
+
+ '@jridgewell/sourcemap-codec@1.5.5': {}
+
+ '@jridgewell/trace-mapping@0.3.31':
+ dependencies:
+ '@jridgewell/resolve-uri': 3.1.2
+ '@jridgewell/sourcemap-codec': 1.5.5
+
+ '@livekit/components-core@0.12.13(livekit-client@2.21.0(@types/dom-mediacapture-record@1.0.22))(tslib@2.8.1)':
+ dependencies:
+ '@floating-ui/dom': 1.7.4
+ livekit-client: 2.21.0(@types/dom-mediacapture-record@1.0.22)
+ loglevel: 1.9.1
+ rxjs: 7.8.2
+ tslib: 2.8.1
+
+ '@livekit/components-react@2.9.21(livekit-client@2.21.0(@types/dom-mediacapture-record@1.0.22))(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(tslib@2.8.1)':
+ dependencies:
+ '@livekit/components-core': 0.12.13(livekit-client@2.21.0(@types/dom-mediacapture-record@1.0.22))(tslib@2.8.1)
+ clsx: 2.1.1
+ events: 3.3.0
+ jose: 6.2.3
+ livekit-client: 2.21.0(@types/dom-mediacapture-record@1.0.22)
+ react: 19.2.7
+ react-dom: 19.2.7(react@19.2.7)
+ tslib: 2.8.1
+ usehooks-ts: 3.1.1(react@19.2.7)
+
+ '@livekit/mutex@1.1.1': {}
+
+ '@livekit/protocol@1.50.4':
+ dependencies:
+ '@bufbuild/protobuf': 1.10.1
+
+ '@livekit/track-processors@0.7.2(@types/dom-mediacapture-transform@0.1.11)(livekit-client@2.21.0(@types/dom-mediacapture-record@1.0.22))':
+ dependencies:
+ '@mediapipe/tasks-vision': 0.10.35
+ '@types/dom-mediacapture-transform': 0.1.11
+ livekit-client: 2.21.0(@types/dom-mediacapture-record@1.0.22)
+
+ '@matrix-org/matrix-sdk-crypto-wasm@18.3.1': {}
+
+ '@mdx-js/react@3.1.1(@types/react@19.2.17)(react@19.2.7)':
+ dependencies:
+ '@types/mdx': 2.0.14
+ '@types/react': 19.2.17
+ react: 19.2.7
+
+ '@mediapipe/tasks-vision@0.10.35': {}
+
+ '@napi-rs/wasm-runtime@1.1.4(@emnapi/core@1.11.1)(@emnapi/runtime@1.11.1)':
+ dependencies:
+ '@emnapi/core': 1.11.1
+ '@emnapi/runtime': 1.11.1
+ '@tybys/wasm-util': 0.10.2
+ optional: true
+
+ '@napi-rs/wasm-runtime@1.1.6(@emnapi/core@1.11.0)(@emnapi/runtime@1.11.0)':
+ dependencies:
+ '@emnapi/core': 1.11.0
+ '@emnapi/runtime': 1.11.0
+ '@tybys/wasm-util': 0.10.3
+ optional: true
+
+ '@napi-rs/wasm-runtime@1.1.6(@emnapi/core@1.11.1)(@emnapi/runtime@1.11.1)':
+ dependencies:
+ '@emnapi/core': 1.11.1
+ '@emnapi/runtime': 1.11.1
+ '@tybys/wasm-util': 0.10.3
+ optional: true
+
+ '@napi-rs/wasm-runtime@1.1.6(@emnapi/core@1.9.2)(@emnapi/runtime@1.9.2)':
+ dependencies:
+ '@emnapi/core': 1.9.2
+ '@emnapi/runtime': 1.9.2
+ '@tybys/wasm-util': 0.10.3
+ optional: true
+
+ '@nodelib/fs.scandir@2.1.5':
+ dependencies:
+ '@nodelib/fs.stat': 2.0.5
+ run-parallel: 1.2.0
+
+ '@nodelib/fs.stat@2.0.5': {}
+
+ '@nodelib/fs.walk@1.2.8':
+ dependencies:
+ '@nodelib/fs.scandir': 2.1.5
+ fastq: 1.20.1
+
+ '@octokit/auth-token@4.0.0': {}
+
+ '@octokit/core@5.2.2':
+ dependencies:
+ '@octokit/auth-token': 4.0.0
+ '@octokit/graphql': 7.1.1
+ '@octokit/request': 8.4.1
+ '@octokit/request-error': 5.1.1
+ '@octokit/types': 13.10.0
+ before-after-hook: 2.2.3
+ universal-user-agent: 6.0.1
+
+ '@octokit/endpoint@9.0.6':
+ dependencies:
+ '@octokit/types': 13.10.0
+ universal-user-agent: 6.0.1
+
+ '@octokit/graphql@7.1.1':
+ dependencies:
+ '@octokit/request': 8.4.1
+ '@octokit/types': 13.10.0
+ universal-user-agent: 6.0.1
+
+ '@octokit/openapi-types@20.0.0': {}
+
+ '@octokit/openapi-types@24.2.0': {}
+
+ '@octokit/plugin-paginate-rest@9.2.2(@octokit/core@5.2.2)':
+ dependencies:
+ '@octokit/core': 5.2.2
+ '@octokit/types': 12.6.0
+
+ '@octokit/plugin-rest-endpoint-methods@10.4.1(@octokit/core@5.2.2)':
+ dependencies:
+ '@octokit/core': 5.2.2
+ '@octokit/types': 12.6.0
+
+ '@octokit/request-error@5.1.1':
+ dependencies:
+ '@octokit/types': 13.10.0
+ deprecation: 2.3.1
+ once: 1.4.0
+
+ '@octokit/request@8.4.1':
+ dependencies:
+ '@octokit/endpoint': 9.0.6
+ '@octokit/request-error': 5.1.1
+ '@octokit/types': 13.10.0
+ universal-user-agent: 6.0.1
+
+ '@octokit/types@12.6.0':
+ dependencies:
+ '@octokit/openapi-types': 20.0.0
+
+ '@octokit/types@13.10.0':
+ dependencies:
+ '@octokit/openapi-types': 24.2.0
+
+ '@opentelemetry/api-logs@0.208.0':
+ dependencies:
+ '@opentelemetry/api': 1.9.1
+
+ '@opentelemetry/api@1.9.1': {}
+
+ '@opentelemetry/core@2.2.0(@opentelemetry/api@1.9.1)':
+ dependencies:
+ '@opentelemetry/api': 1.9.1
+ '@opentelemetry/semantic-conventions': 1.41.1
+
+ '@opentelemetry/core@2.7.1(@opentelemetry/api@1.9.1)':
+ dependencies:
+ '@opentelemetry/api': 1.9.1
+ '@opentelemetry/semantic-conventions': 1.41.1
+
+ '@opentelemetry/exporter-logs-otlp-http@0.208.0(@opentelemetry/api@1.9.1)':
+ dependencies:
+ '@opentelemetry/api': 1.9.1
+ '@opentelemetry/api-logs': 0.208.0
+ '@opentelemetry/core': 2.2.0(@opentelemetry/api@1.9.1)
+ '@opentelemetry/otlp-exporter-base': 0.208.0(@opentelemetry/api@1.9.1)
+ '@opentelemetry/otlp-transformer': 0.208.0(@opentelemetry/api@1.9.1)
+ '@opentelemetry/sdk-logs': 0.208.0(@opentelemetry/api@1.9.1)
+
+ '@opentelemetry/otlp-exporter-base@0.208.0(@opentelemetry/api@1.9.1)':
+ dependencies:
+ '@opentelemetry/api': 1.9.1
+ '@opentelemetry/core': 2.2.0(@opentelemetry/api@1.9.1)
+ '@opentelemetry/otlp-transformer': 0.208.0(@opentelemetry/api@1.9.1)
+
+ '@opentelemetry/otlp-transformer@0.208.0(@opentelemetry/api@1.9.1)':
+ dependencies:
+ '@opentelemetry/api': 1.9.1
+ '@opentelemetry/api-logs': 0.208.0
+ '@opentelemetry/core': 2.2.0(@opentelemetry/api@1.9.1)
+ '@opentelemetry/resources': 2.2.0(@opentelemetry/api@1.9.1)
+ '@opentelemetry/sdk-logs': 0.208.0(@opentelemetry/api@1.9.1)
+ '@opentelemetry/sdk-metrics': 2.2.0(@opentelemetry/api@1.9.1)
+ '@opentelemetry/sdk-trace-base': 2.2.0(@opentelemetry/api@1.9.1)
+ protobufjs: 7.5.9
+
+ '@opentelemetry/resources@2.2.0(@opentelemetry/api@1.9.1)':
+ dependencies:
+ '@opentelemetry/api': 1.9.1
+ '@opentelemetry/core': 2.2.0(@opentelemetry/api@1.9.1)
+ '@opentelemetry/semantic-conventions': 1.41.1
+
+ '@opentelemetry/resources@2.7.1(@opentelemetry/api@1.9.1)':
+ dependencies:
+ '@opentelemetry/api': 1.9.1
+ '@opentelemetry/core': 2.7.1(@opentelemetry/api@1.9.1)
+ '@opentelemetry/semantic-conventions': 1.41.1
+
+ '@opentelemetry/sdk-logs@0.208.0(@opentelemetry/api@1.9.1)':
+ dependencies:
+ '@opentelemetry/api': 1.9.1
+ '@opentelemetry/api-logs': 0.208.0
+ '@opentelemetry/core': 2.2.0(@opentelemetry/api@1.9.1)
+ '@opentelemetry/resources': 2.2.0(@opentelemetry/api@1.9.1)
+
+ '@opentelemetry/sdk-metrics@2.2.0(@opentelemetry/api@1.9.1)':
+ dependencies:
+ '@opentelemetry/api': 1.9.1
+ '@opentelemetry/core': 2.2.0(@opentelemetry/api@1.9.1)
+ '@opentelemetry/resources': 2.2.0(@opentelemetry/api@1.9.1)
+
+ '@opentelemetry/sdk-trace-base@2.2.0(@opentelemetry/api@1.9.1)':
+ dependencies:
+ '@opentelemetry/api': 1.9.1
+ '@opentelemetry/core': 2.2.0(@opentelemetry/api@1.9.1)
+ '@opentelemetry/resources': 2.2.0(@opentelemetry/api@1.9.1)
+ '@opentelemetry/semantic-conventions': 1.41.1
+
+ '@opentelemetry/semantic-conventions@1.41.1': {}
+
+ '@oxc-parser/binding-android-arm-eabi@0.127.0':
+ optional: true
+
+ '@oxc-parser/binding-android-arm64@0.127.0':
+ optional: true
+
+ '@oxc-parser/binding-darwin-arm64@0.127.0':
+ optional: true
+
+ '@oxc-parser/binding-darwin-x64@0.127.0':
+ optional: true
+
+ '@oxc-parser/binding-freebsd-x64@0.127.0':
+ optional: true
+
+ '@oxc-parser/binding-linux-arm-gnueabihf@0.127.0':
+ optional: true
+
+ '@oxc-parser/binding-linux-arm-musleabihf@0.127.0':
+ optional: true
+
+ '@oxc-parser/binding-linux-arm64-gnu@0.127.0':
+ optional: true
+
+ '@oxc-parser/binding-linux-arm64-musl@0.127.0':
+ optional: true
+
+ '@oxc-parser/binding-linux-ppc64-gnu@0.127.0':
+ optional: true
+
+ '@oxc-parser/binding-linux-riscv64-gnu@0.127.0':
+ optional: true
+
+ '@oxc-parser/binding-linux-riscv64-musl@0.127.0':
+ optional: true
+
+ '@oxc-parser/binding-linux-s390x-gnu@0.127.0':
+ optional: true
+
+ '@oxc-parser/binding-linux-x64-gnu@0.127.0':
+ optional: true
+
+ '@oxc-parser/binding-linux-x64-musl@0.127.0':
+ optional: true
+
+ '@oxc-parser/binding-openharmony-arm64@0.127.0':
+ optional: true
+
+ '@oxc-parser/binding-wasm32-wasi@0.127.0':
+ dependencies:
+ '@emnapi/core': 1.9.2
+ '@emnapi/runtime': 1.9.2
+ '@napi-rs/wasm-runtime': 1.1.6(@emnapi/core@1.9.2)(@emnapi/runtime@1.9.2)
+ optional: true
+
+ '@oxc-parser/binding-win32-arm64-msvc@0.127.0':
+ optional: true
+
+ '@oxc-parser/binding-win32-ia32-msvc@0.127.0':
+ optional: true
+
+ '@oxc-parser/binding-win32-x64-msvc@0.127.0':
+ optional: true
+
+ '@oxc-project/types@0.127.0': {}
+
+ '@oxc-project/types@0.137.0': {}
+
+ '@oxc-resolver/binding-android-arm-eabi@11.19.1':
+ optional: true
+
+ '@oxc-resolver/binding-android-arm-eabi@11.21.3':
+ optional: true
+
+ '@oxc-resolver/binding-android-arm64@11.19.1':
+ optional: true
+
+ '@oxc-resolver/binding-android-arm64@11.21.3':
+ optional: true
+
+ '@oxc-resolver/binding-darwin-arm64@11.19.1':
+ optional: true
+
+ '@oxc-resolver/binding-darwin-arm64@11.21.3':
+ optional: true
+
+ '@oxc-resolver/binding-darwin-x64@11.19.1':
+ optional: true
+
+ '@oxc-resolver/binding-darwin-x64@11.21.3':
+ optional: true
+
+ '@oxc-resolver/binding-freebsd-x64@11.19.1':
+ optional: true
+
+ '@oxc-resolver/binding-freebsd-x64@11.21.3':
+ optional: true
+
+ '@oxc-resolver/binding-linux-arm-gnueabihf@11.19.1':
+ optional: true
+
+ '@oxc-resolver/binding-linux-arm-gnueabihf@11.21.3':
+ optional: true
+
+ '@oxc-resolver/binding-linux-arm-musleabihf@11.19.1':
+ optional: true
+
+ '@oxc-resolver/binding-linux-arm-musleabihf@11.21.3':
+ optional: true
+
+ '@oxc-resolver/binding-linux-arm64-gnu@11.19.1':
+ optional: true
+
+ '@oxc-resolver/binding-linux-arm64-gnu@11.21.3':
+ optional: true
+
+ '@oxc-resolver/binding-linux-arm64-musl@11.19.1':
+ optional: true
+
+ '@oxc-resolver/binding-linux-arm64-musl@11.21.3':
+ optional: true
+
+ '@oxc-resolver/binding-linux-ppc64-gnu@11.19.1':
+ optional: true
+
+ '@oxc-resolver/binding-linux-ppc64-gnu@11.21.3':
+ optional: true
+
+ '@oxc-resolver/binding-linux-riscv64-gnu@11.19.1':
+ optional: true
+
+ '@oxc-resolver/binding-linux-riscv64-gnu@11.21.3':
+ optional: true
+
+ '@oxc-resolver/binding-linux-riscv64-musl@11.19.1':
+ optional: true
+
+ '@oxc-resolver/binding-linux-riscv64-musl@11.21.3':
+ optional: true
+
+ '@oxc-resolver/binding-linux-s390x-gnu@11.19.1':
+ optional: true
+
+ '@oxc-resolver/binding-linux-s390x-gnu@11.21.3':
+ optional: true
+
+ '@oxc-resolver/binding-linux-x64-gnu@11.19.1':
+ optional: true
+
+ '@oxc-resolver/binding-linux-x64-gnu@11.21.3':
+ optional: true
+
+ '@oxc-resolver/binding-linux-x64-musl@11.19.1':
+ optional: true
+
+ '@oxc-resolver/binding-linux-x64-musl@11.21.3':
+ optional: true
+
+ '@oxc-resolver/binding-openharmony-arm64@11.19.1':
+ optional: true
+
+ '@oxc-resolver/binding-openharmony-arm64@11.21.3':
+ optional: true
+
+ '@oxc-resolver/binding-wasm32-wasi@11.19.1(@emnapi/core@1.11.1)(@emnapi/runtime@1.11.1)':
+ dependencies:
+ '@napi-rs/wasm-runtime': 1.1.4(@emnapi/core@1.11.1)(@emnapi/runtime@1.11.1)
+ transitivePeerDependencies:
+ - '@emnapi/core'
+ - '@emnapi/runtime'
+ optional: true
+
+ '@oxc-resolver/binding-wasm32-wasi@11.21.3':
+ dependencies:
+ '@emnapi/core': 1.11.0
+ '@emnapi/runtime': 1.11.0
+ '@napi-rs/wasm-runtime': 1.1.6(@emnapi/core@1.11.0)(@emnapi/runtime@1.11.0)
+ optional: true
+
+ '@oxc-resolver/binding-win32-arm64-msvc@11.19.1':
+ optional: true
+
+ '@oxc-resolver/binding-win32-arm64-msvc@11.21.3':
+ optional: true
+
+ '@oxc-resolver/binding-win32-ia32-msvc@11.19.1':
+ optional: true
+
+ '@oxc-resolver/binding-win32-x64-msvc@11.19.1':
+ optional: true
+
+ '@oxc-resolver/binding-win32-x64-msvc@11.21.3':
+ optional: true
+
+ '@oxfmt/binding-android-arm-eabi@0.56.0':
+ optional: true
+
+ '@oxfmt/binding-android-arm64@0.56.0':
+ optional: true
+
+ '@oxfmt/binding-darwin-arm64@0.56.0':
+ optional: true
+
+ '@oxfmt/binding-darwin-x64@0.56.0':
+ optional: true
+
+ '@oxfmt/binding-freebsd-x64@0.56.0':
+ optional: true
+
+ '@oxfmt/binding-linux-arm-gnueabihf@0.56.0':
+ optional: true
+
+ '@oxfmt/binding-linux-arm-musleabihf@0.56.0':
+ optional: true
+
+ '@oxfmt/binding-linux-arm64-gnu@0.56.0':
+ optional: true
+
+ '@oxfmt/binding-linux-arm64-musl@0.56.0':
+ optional: true
+
+ '@oxfmt/binding-linux-ppc64-gnu@0.56.0':
+ optional: true
+
+ '@oxfmt/binding-linux-riscv64-gnu@0.56.0':
+ optional: true
+
+ '@oxfmt/binding-linux-riscv64-musl@0.56.0':
+ optional: true
+
+ '@oxfmt/binding-linux-s390x-gnu@0.56.0':
+ optional: true
+
+ '@oxfmt/binding-linux-x64-gnu@0.56.0':
+ optional: true
+
+ '@oxfmt/binding-linux-x64-musl@0.56.0':
+ optional: true
+
+ '@oxfmt/binding-openharmony-arm64@0.56.0':
+ optional: true
+
+ '@oxfmt/binding-win32-arm64-msvc@0.56.0':
+ optional: true
+
+ '@oxfmt/binding-win32-ia32-msvc@0.56.0':
+ optional: true
+
+ '@oxfmt/binding-win32-x64-msvc@0.56.0':
+ optional: true
+
+ '@oxlint-tsgolint/darwin-arm64@0.23.0':
+ optional: true
+
+ '@oxlint-tsgolint/darwin-x64@0.23.0':
+ optional: true
+
+ '@oxlint-tsgolint/linux-arm64@0.23.0':
+ optional: true
+
+ '@oxlint-tsgolint/linux-x64@0.23.0':
+ optional: true
+
+ '@oxlint-tsgolint/win32-arm64@0.23.0':
+ optional: true
+
+ '@oxlint-tsgolint/win32-x64@0.23.0':
+ optional: true
+
+ '@oxlint/binding-android-arm-eabi@1.71.0':
+ optional: true
+
+ '@oxlint/binding-android-arm64@1.71.0':
+ optional: true
+
+ '@oxlint/binding-darwin-arm64@1.71.0':
+ optional: true
+
+ '@oxlint/binding-darwin-x64@1.71.0':
+ optional: true
+
+ '@oxlint/binding-freebsd-x64@1.71.0':
+ optional: true
+
+ '@oxlint/binding-linux-arm-gnueabihf@1.71.0':
+ optional: true
+
+ '@oxlint/binding-linux-arm-musleabihf@1.71.0':
+ optional: true
+
+ '@oxlint/binding-linux-arm64-gnu@1.71.0':
+ optional: true
+
+ '@oxlint/binding-linux-arm64-musl@1.71.0':
+ optional: true
+
+ '@oxlint/binding-linux-ppc64-gnu@1.71.0':
+ optional: true
+
+ '@oxlint/binding-linux-riscv64-gnu@1.71.0':
+ optional: true
+
+ '@oxlint/binding-linux-riscv64-musl@1.71.0':
+ optional: true
+
+ '@oxlint/binding-linux-s390x-gnu@1.71.0':
+ optional: true
+
+ '@oxlint/binding-linux-x64-gnu@1.71.0':
+ optional: true
+
+ '@oxlint/binding-linux-x64-musl@1.71.0':
+ optional: true
+
+ '@oxlint/binding-openharmony-arm64@1.71.0':
+ optional: true
+
+ '@oxlint/binding-win32-arm64-msvc@1.71.0':
+ optional: true
+
+ '@oxlint/binding-win32-ia32-msvc@1.71.0':
+ optional: true
+
+ '@oxlint/binding-win32-x64-msvc@1.71.0':
+ optional: true
+
+ '@parcel/watcher-android-arm64@2.5.6':
+ optional: true
+
+ '@parcel/watcher-darwin-arm64@2.5.6':
+ optional: true
+
+ '@parcel/watcher-darwin-x64@2.5.6':
+ optional: true
+
+ '@parcel/watcher-freebsd-x64@2.5.6':
+ optional: true
+
+ '@parcel/watcher-linux-arm-glibc@2.5.6':
+ optional: true
+
+ '@parcel/watcher-linux-arm-musl@2.5.6':
+ optional: true
+
+ '@parcel/watcher-linux-arm64-glibc@2.5.6':
+ optional: true
+
+ '@parcel/watcher-linux-arm64-musl@2.5.6':
+ optional: true
+
+ '@parcel/watcher-linux-x64-glibc@2.5.6':
+ optional: true
+
+ '@parcel/watcher-linux-x64-musl@2.5.6':
+ optional: true
+
+ '@parcel/watcher-win32-arm64@2.5.6':
+ optional: true
+
+ '@parcel/watcher-win32-ia32@2.5.6':
+ optional: true
+
+ '@parcel/watcher-win32-x64@2.5.6':
+ optional: true
+
+ '@parcel/watcher@2.5.6':
+ dependencies:
+ detect-libc: 2.1.2
+ is-glob: 4.0.3
+ node-addon-api: 7.1.1
+ picomatch: 4.0.4
+ optionalDependencies:
+ '@parcel/watcher-android-arm64': 2.5.6
+ '@parcel/watcher-darwin-arm64': 2.5.6
+ '@parcel/watcher-darwin-x64': 2.5.6
+ '@parcel/watcher-freebsd-x64': 2.5.6
+ '@parcel/watcher-linux-arm-glibc': 2.5.6
+ '@parcel/watcher-linux-arm-musl': 2.5.6
+ '@parcel/watcher-linux-arm64-glibc': 2.5.6
+ '@parcel/watcher-linux-arm64-musl': 2.5.6
+ '@parcel/watcher-linux-x64-glibc': 2.5.6
+ '@parcel/watcher-linux-x64-musl': 2.5.6
+ '@parcel/watcher-win32-arm64': 2.5.6
+ '@parcel/watcher-win32-ia32': 2.5.6
+ '@parcel/watcher-win32-x64': 2.5.6
+ optional: true
+
+ '@pkgjs/parseargs@0.11.0':
+ optional: true
+
+ '@playwright/test@1.61.1':
+ dependencies:
+ playwright: 1.61.1
+
+ '@polka/url@1.0.0-next.29': {}
+
+ '@posthog/core@1.29.3':
+ dependencies:
+ '@posthog/types': 1.374.0
+
+ '@posthog/types@1.374.0': {}
+
+ '@protobufjs/aspromise@1.1.2': {}
+
+ '@protobufjs/base64@1.1.2': {}
+
+ '@protobufjs/codegen@2.0.5': {}
+
+ '@protobufjs/eventemitter@1.1.0': {}
+
+ '@protobufjs/fetch@1.1.1':
+ dependencies:
+ '@protobufjs/aspromise': 1.1.2
+
+ '@protobufjs/float@1.0.2': {}
+
+ '@protobufjs/inquire@1.1.2': {}
+
+ '@protobufjs/path@1.1.2': {}
+
+ '@protobufjs/pool@1.1.0': {}
+
+ '@protobufjs/utf8@1.1.1': {}
+
+ '@radix-ui/number@1.1.2': {}
+
+ '@radix-ui/primitive@1.1.4': {}
+
+ '@radix-ui/primitive@1.1.5': {}
+
+ '@radix-ui/react-arrow@1.1.11(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
+ dependencies:
+ '@radix-ui/react-primitive': 2.1.7(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ react: 19.2.7
+ react-dom: 19.2.7(react@19.2.7)
+ optionalDependencies:
+ '@types/react': 19.2.17
+ '@types/react-dom': 19.2.3(@types/react@19.2.17)
+
+ '@radix-ui/react-collection@1.1.10(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
+ dependencies:
+ '@radix-ui/react-compose-refs': 1.1.3(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-context': 1.1.4(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-primitive': 2.1.6(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@radix-ui/react-slot': 1.3.0(@types/react@19.2.17)(react@19.2.7)
+ react: 19.2.7
+ react-dom: 19.2.7(react@19.2.7)
+ optionalDependencies:
+ '@types/react': 19.2.17
+ '@types/react-dom': 19.2.3(@types/react@19.2.17)
+
+ '@radix-ui/react-collection@1.1.12(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
+ dependencies:
+ '@radix-ui/react-compose-refs': 1.1.3(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-context': 1.2.0(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-primitive': 2.1.7(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@radix-ui/react-slot': 1.3.0(@types/react@19.2.17)(react@19.2.7)
+ react: 19.2.7
+ react-dom: 19.2.7(react@19.2.7)
+ optionalDependencies:
+ '@types/react': 19.2.17
+ '@types/react-dom': 19.2.3(@types/react@19.2.17)
+
+ '@radix-ui/react-compose-refs@1.1.3(@types/react@19.2.17)(react@19.2.7)':
+ dependencies:
+ react: 19.2.7
+ optionalDependencies:
+ '@types/react': 19.2.17
+
+ '@radix-ui/react-context-menu@2.3.3(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
+ dependencies:
+ '@radix-ui/primitive': 1.1.5
+ '@radix-ui/react-context': 1.2.0(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-menu': 2.1.20(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@radix-ui/react-primitive': 2.1.7(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@radix-ui/react-use-controllable-state': 1.2.3(@types/react@19.2.17)(react@19.2.7)
+ react: 19.2.7
+ react-dom: 19.2.7(react@19.2.7)
+ optionalDependencies:
+ '@types/react': 19.2.17
+ '@types/react-dom': 19.2.3(@types/react@19.2.17)
+
+ '@radix-ui/react-context@1.1.4(@types/react@19.2.17)(react@19.2.7)':
+ dependencies:
+ react: 19.2.7
+ optionalDependencies:
+ '@types/react': 19.2.17
+
+ '@radix-ui/react-context@1.2.0(@types/react@19.2.17)(react@19.2.7)':
+ dependencies:
+ react: 19.2.7
+ optionalDependencies:
+ '@types/react': 19.2.17
+
+ '@radix-ui/react-dialog@1.1.17(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
+ dependencies:
+ '@radix-ui/primitive': 1.1.4
+ '@radix-ui/react-compose-refs': 1.1.3(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-context': 1.1.4(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-dismissable-layer': 1.1.13(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@radix-ui/react-focus-guards': 1.1.4(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-focus-scope': 1.1.10(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@radix-ui/react-id': 1.1.2(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-portal': 1.1.12(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@radix-ui/react-presence': 1.1.6(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@radix-ui/react-primitive': 2.1.6(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@radix-ui/react-slot': 1.3.0(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-use-controllable-state': 1.2.3(@types/react@19.2.17)(react@19.2.7)
+ aria-hidden: 1.2.6
+ react: 19.2.7
+ react-dom: 19.2.7(react@19.2.7)
+ react-remove-scroll: 2.7.2(@types/react@19.2.17)(react@19.2.7)
+ optionalDependencies:
+ '@types/react': 19.2.17
+ '@types/react-dom': 19.2.3(@types/react@19.2.17)
+
+ '@radix-ui/react-direction@1.1.2(@types/react@19.2.17)(react@19.2.7)':
+ dependencies:
+ react: 19.2.7
+ optionalDependencies:
+ '@types/react': 19.2.17
+
+ '@radix-ui/react-dismissable-layer@1.1.13(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
+ dependencies:
+ '@radix-ui/primitive': 1.1.4
+ '@radix-ui/react-compose-refs': 1.1.3(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-primitive': 2.1.6(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@radix-ui/react-use-callback-ref': 1.1.2(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-use-escape-keydown': 1.1.2(@types/react@19.2.17)(react@19.2.7)
+ react: 19.2.7
+ react-dom: 19.2.7(react@19.2.7)
+ optionalDependencies:
+ '@types/react': 19.2.17
+ '@types/react-dom': 19.2.3(@types/react@19.2.17)
+
+ '@radix-ui/react-dismissable-layer@1.1.15(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
+ dependencies:
+ '@radix-ui/primitive': 1.1.5
+ '@radix-ui/react-compose-refs': 1.1.3(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-primitive': 2.1.7(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@radix-ui/react-use-callback-ref': 1.1.2(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-use-effect-event': 0.0.3(@types/react@19.2.17)(react@19.2.7)
+ react: 19.2.7
+ react-dom: 19.2.7(react@19.2.7)
+ optionalDependencies:
+ '@types/react': 19.2.17
+ '@types/react-dom': 19.2.3(@types/react@19.2.17)
+
+ '@radix-ui/react-dropdown-menu@2.1.20(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
+ dependencies:
+ '@radix-ui/primitive': 1.1.5
+ '@radix-ui/react-compose-refs': 1.1.3(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-context': 1.2.0(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-id': 1.1.2(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-menu': 2.1.20(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@radix-ui/react-primitive': 2.1.7(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@radix-ui/react-use-controllable-state': 1.2.3(@types/react@19.2.17)(react@19.2.7)
+ react: 19.2.7
+ react-dom: 19.2.7(react@19.2.7)
+ optionalDependencies:
+ '@types/react': 19.2.17
+ '@types/react-dom': 19.2.3(@types/react@19.2.17)
+
+ '@radix-ui/react-focus-guards@1.1.4(@types/react@19.2.17)(react@19.2.7)':
+ dependencies:
+ react: 19.2.7
+ optionalDependencies:
+ '@types/react': 19.2.17
+
+ '@radix-ui/react-focus-scope@1.1.10(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
+ dependencies:
+ '@radix-ui/react-compose-refs': 1.1.3(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-primitive': 2.1.6(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@radix-ui/react-use-callback-ref': 1.1.2(@types/react@19.2.17)(react@19.2.7)
+ react: 19.2.7
+ react-dom: 19.2.7(react@19.2.7)
+ optionalDependencies:
+ '@types/react': 19.2.17
+ '@types/react-dom': 19.2.3(@types/react@19.2.17)
+
+ '@radix-ui/react-focus-scope@1.1.12(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
+ dependencies:
+ '@radix-ui/react-compose-refs': 1.1.3(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-primitive': 2.1.7(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@radix-ui/react-use-callback-ref': 1.1.2(@types/react@19.2.17)(react@19.2.7)
+ react: 19.2.7
+ react-dom: 19.2.7(react@19.2.7)
+ optionalDependencies:
+ '@types/react': 19.2.17
+ '@types/react-dom': 19.2.3(@types/react@19.2.17)
+
+ '@radix-ui/react-form@0.1.12(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
+ dependencies:
+ '@radix-ui/primitive': 1.1.5
+ '@radix-ui/react-compose-refs': 1.1.3(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-context': 1.2.0(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-id': 1.1.2(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-label': 2.1.11(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@radix-ui/react-primitive': 2.1.7(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ react: 19.2.7
+ react-dom: 19.2.7(react@19.2.7)
+ optionalDependencies:
+ '@types/react': 19.2.17
+ '@types/react-dom': 19.2.3(@types/react@19.2.17)
+
+ '@radix-ui/react-id@1.1.2(@types/react@19.2.17)(react@19.2.7)':
+ dependencies:
+ '@radix-ui/react-use-layout-effect': 1.1.2(@types/react@19.2.17)(react@19.2.7)
+ react: 19.2.7
+ optionalDependencies:
+ '@types/react': 19.2.17
+
+ '@radix-ui/react-label@2.1.11(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
+ dependencies:
+ '@radix-ui/react-primitive': 2.1.7(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ react: 19.2.7
+ react-dom: 19.2.7(react@19.2.7)
+ optionalDependencies:
+ '@types/react': 19.2.17
+ '@types/react-dom': 19.2.3(@types/react@19.2.17)
+
+ '@radix-ui/react-menu@2.1.20(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
+ dependencies:
+ '@radix-ui/primitive': 1.1.5
+ '@radix-ui/react-collection': 1.1.12(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@radix-ui/react-compose-refs': 1.1.3(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-context': 1.2.0(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-direction': 1.1.2(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-dismissable-layer': 1.1.15(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@radix-ui/react-focus-guards': 1.1.4(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-focus-scope': 1.1.12(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@radix-ui/react-id': 1.1.2(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-popper': 1.3.3(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@radix-ui/react-portal': 1.1.13(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@radix-ui/react-presence': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@radix-ui/react-primitive': 2.1.7(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@radix-ui/react-roving-focus': 1.1.15(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@radix-ui/react-slot': 1.3.0(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-use-callback-ref': 1.1.2(@types/react@19.2.17)(react@19.2.7)
+ aria-hidden: 1.2.6
+ react: 19.2.7
+ react-dom: 19.2.7(react@19.2.7)
+ react-remove-scroll: 2.7.2(@types/react@19.2.17)(react@19.2.7)
+ optionalDependencies:
+ '@types/react': 19.2.17
+ '@types/react-dom': 19.2.3(@types/react@19.2.17)
+
+ '@radix-ui/react-popper@1.3.3(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
+ dependencies:
+ '@floating-ui/react-dom': 2.1.9(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@radix-ui/react-arrow': 1.1.11(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@radix-ui/react-compose-refs': 1.1.3(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-context': 1.2.0(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-primitive': 2.1.7(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@radix-ui/react-use-callback-ref': 1.1.2(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-use-layout-effect': 1.1.2(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-use-rect': 1.1.2(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-use-size': 1.1.2(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/rect': 1.1.2
+ react: 19.2.7
+ react-dom: 19.2.7(react@19.2.7)
+ optionalDependencies:
+ '@types/react': 19.2.17
+ '@types/react-dom': 19.2.3(@types/react@19.2.17)
+
+ '@radix-ui/react-portal@1.1.12(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
+ dependencies:
+ '@radix-ui/react-primitive': 2.1.6(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@radix-ui/react-use-layout-effect': 1.1.2(@types/react@19.2.17)(react@19.2.7)
+ react: 19.2.7
+ react-dom: 19.2.7(react@19.2.7)
+ optionalDependencies:
+ '@types/react': 19.2.17
+ '@types/react-dom': 19.2.3(@types/react@19.2.17)
+
+ '@radix-ui/react-portal@1.1.13(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
+ dependencies:
+ '@radix-ui/react-primitive': 2.1.7(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@radix-ui/react-use-layout-effect': 1.1.2(@types/react@19.2.17)(react@19.2.7)
+ react: 19.2.7
+ react-dom: 19.2.7(react@19.2.7)
+ optionalDependencies:
+ '@types/react': 19.2.17
+ '@types/react-dom': 19.2.3(@types/react@19.2.17)
+
+ '@radix-ui/react-presence@1.1.6(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
+ dependencies:
+ '@radix-ui/react-use-layout-effect': 1.1.2(@types/react@19.2.17)(react@19.2.7)
+ react: 19.2.7
+ react-dom: 19.2.7(react@19.2.7)
+ optionalDependencies:
+ '@types/react': 19.2.17
+ '@types/react-dom': 19.2.3(@types/react@19.2.17)
+
+ '@radix-ui/react-presence@1.1.7(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
+ dependencies:
+ '@radix-ui/react-use-layout-effect': 1.1.2(@types/react@19.2.17)(react@19.2.7)
+ react: 19.2.7
+ react-dom: 19.2.7(react@19.2.7)
+ optionalDependencies:
+ '@types/react': 19.2.17
+ '@types/react-dom': 19.2.3(@types/react@19.2.17)
+
+ '@radix-ui/react-primitive@2.1.6(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
+ dependencies:
+ '@radix-ui/react-slot': 1.3.0(@types/react@19.2.17)(react@19.2.7)
+ react: 19.2.7
+ react-dom: 19.2.7(react@19.2.7)
+ optionalDependencies:
+ '@types/react': 19.2.17
+ '@types/react-dom': 19.2.3(@types/react@19.2.17)
+
+ '@radix-ui/react-primitive@2.1.7(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
+ dependencies:
+ '@radix-ui/react-slot': 1.3.0(@types/react@19.2.17)(react@19.2.7)
+ react: 19.2.7
+ react-dom: 19.2.7(react@19.2.7)
+ optionalDependencies:
+ '@types/react': 19.2.17
+ '@types/react-dom': 19.2.3(@types/react@19.2.17)
+
+ '@radix-ui/react-progress@1.1.12(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
+ dependencies:
+ '@radix-ui/react-context': 1.2.0(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-primitive': 2.1.7(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ react: 19.2.7
+ react-dom: 19.2.7(react@19.2.7)
+ optionalDependencies:
+ '@types/react': 19.2.17
+ '@types/react-dom': 19.2.3(@types/react@19.2.17)
+
+ '@radix-ui/react-roving-focus@1.1.15(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
+ dependencies:
+ '@radix-ui/primitive': 1.1.5
+ '@radix-ui/react-collection': 1.1.12(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@radix-ui/react-compose-refs': 1.1.3(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-context': 1.2.0(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-direction': 1.1.2(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-id': 1.1.2(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-primitive': 2.1.7(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@radix-ui/react-use-callback-ref': 1.1.2(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-use-controllable-state': 1.2.3(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-use-is-hydrated': 0.1.1(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-use-layout-effect': 1.1.2(@types/react@19.2.17)(react@19.2.7)
+ react: 19.2.7
+ react-dom: 19.2.7(react@19.2.7)
+ optionalDependencies:
+ '@types/react': 19.2.17
+ '@types/react-dom': 19.2.3(@types/react@19.2.17)
+
+ '@radix-ui/react-separator@1.1.11(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
+ dependencies:
+ '@radix-ui/react-primitive': 2.1.7(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ react: 19.2.7
+ react-dom: 19.2.7(react@19.2.7)
+ optionalDependencies:
+ '@types/react': 19.2.17
+ '@types/react-dom': 19.2.3(@types/react@19.2.17)
+
+ '@radix-ui/react-slider@1.4.1(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
+ dependencies:
+ '@radix-ui/number': 1.1.2
+ '@radix-ui/primitive': 1.1.4
+ '@radix-ui/react-collection': 1.1.10(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@radix-ui/react-compose-refs': 1.1.3(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-context': 1.1.4(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-direction': 1.1.2(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-primitive': 2.1.6(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@radix-ui/react-use-controllable-state': 1.2.3(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-use-layout-effect': 1.1.2(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-use-previous': 1.1.2(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-use-size': 1.1.2(@types/react@19.2.17)(react@19.2.7)
+ react: 19.2.7
+ react-dom: 19.2.7(react@19.2.7)
+ optionalDependencies:
+ '@types/react': 19.2.17
+ '@types/react-dom': 19.2.3(@types/react@19.2.17)
+
+ '@radix-ui/react-slot@1.3.0(@types/react@19.2.17)(react@19.2.7)':
+ dependencies:
+ '@radix-ui/react-compose-refs': 1.1.3(@types/react@19.2.17)(react@19.2.7)
+ react: 19.2.7
+ optionalDependencies:
+ '@types/react': 19.2.17
+
+ '@radix-ui/react-use-callback-ref@1.1.2(@types/react@19.2.17)(react@19.2.7)':
+ dependencies:
+ react: 19.2.7
+ optionalDependencies:
+ '@types/react': 19.2.17
+
+ '@radix-ui/react-use-controllable-state@1.2.3(@types/react@19.2.17)(react@19.2.7)':
+ dependencies:
+ '@radix-ui/react-use-effect-event': 0.0.3(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-use-layout-effect': 1.1.2(@types/react@19.2.17)(react@19.2.7)
+ react: 19.2.7
+ optionalDependencies:
+ '@types/react': 19.2.17
+
+ '@radix-ui/react-use-effect-event@0.0.3(@types/react@19.2.17)(react@19.2.7)':
+ dependencies:
+ '@radix-ui/react-use-layout-effect': 1.1.2(@types/react@19.2.17)(react@19.2.7)
+ react: 19.2.7
+ optionalDependencies:
+ '@types/react': 19.2.17
+
+ '@radix-ui/react-use-escape-keydown@1.1.2(@types/react@19.2.17)(react@19.2.7)':
+ dependencies:
+ '@radix-ui/react-use-callback-ref': 1.1.2(@types/react@19.2.17)(react@19.2.7)
+ react: 19.2.7
+ optionalDependencies:
+ '@types/react': 19.2.17
+
+ '@radix-ui/react-use-is-hydrated@0.1.1(@types/react@19.2.17)(react@19.2.7)':
+ dependencies:
+ react: 19.2.7
+ optionalDependencies:
+ '@types/react': 19.2.17
+
+ '@radix-ui/react-use-layout-effect@1.1.2(@types/react@19.2.17)(react@19.2.7)':
+ dependencies:
+ react: 19.2.7
+ optionalDependencies:
+ '@types/react': 19.2.17
+
+ '@radix-ui/react-use-previous@1.1.2(@types/react@19.2.17)(react@19.2.7)':
+ dependencies:
+ react: 19.2.7
+ optionalDependencies:
+ '@types/react': 19.2.17
+
+ '@radix-ui/react-use-rect@1.1.2(@types/react@19.2.17)(react@19.2.7)':
+ dependencies:
+ '@radix-ui/rect': 1.1.2
+ react: 19.2.7
+ optionalDependencies:
+ '@types/react': 19.2.17
+
+ '@radix-ui/react-use-size@1.1.2(@types/react@19.2.17)(react@19.2.7)':
+ dependencies:
+ '@radix-ui/react-use-layout-effect': 1.1.2(@types/react@19.2.17)(react@19.2.7)
+ react: 19.2.7
+ optionalDependencies:
+ '@types/react': 19.2.17
+
+ '@radix-ui/react-visually-hidden@1.2.6(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
+ dependencies:
+ '@radix-ui/react-primitive': 2.1.6(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ react: 19.2.7
+ react-dom: 19.2.7(react@19.2.7)
+ optionalDependencies:
+ '@types/react': 19.2.17
+ '@types/react-dom': 19.2.3(@types/react@19.2.17)
+
+ '@radix-ui/rect@1.1.2': {}
+
+ '@react-spring/animated@10.1.2(react@19.2.7)':
+ dependencies:
+ '@react-spring/shared': 10.1.2(react@19.2.7)
+ '@react-spring/types': 10.1.2
+ react: 19.2.7
+
+ '@react-spring/core@10.1.2(react@19.2.7)':
+ dependencies:
+ '@react-spring/animated': 10.1.2(react@19.2.7)
+ '@react-spring/shared': 10.1.2(react@19.2.7)
+ '@react-spring/types': 10.1.2
+ react: 19.2.7
+
+ '@react-spring/rafz@10.1.2': {}
+
+ '@react-spring/shared@10.1.2(react@19.2.7)':
+ dependencies:
+ '@react-spring/rafz': 10.1.2
+ '@react-spring/types': 10.1.2
+ react: 19.2.7
+
+ '@react-spring/types@10.1.2': {}
+
+ '@react-spring/web@10.1.2(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
+ dependencies:
+ '@react-spring/animated': 10.1.2(react@19.2.7)
+ '@react-spring/core': 10.1.2(react@19.2.7)
+ '@react-spring/shared': 10.1.2(react@19.2.7)
+ '@react-spring/types': 10.1.2
+ csstype: 3.2.3
+ react: 19.2.7
+ react-dom: 19.2.7(react@19.2.7)
+
+ '@rolldown/binding-android-arm64@1.1.3':
+ optional: true
+
+ '@rolldown/binding-darwin-arm64@1.1.3':
+ optional: true
+
+ '@rolldown/binding-darwin-x64@1.1.3':
+ optional: true
+
+ '@rolldown/binding-freebsd-x64@1.1.3':
+ optional: true
+
+ '@rolldown/binding-linux-arm-gnueabihf@1.1.3':
+ optional: true
+
+ '@rolldown/binding-linux-arm64-gnu@1.1.3':
+ optional: true
+
+ '@rolldown/binding-linux-arm64-musl@1.1.3':
+ optional: true
+
+ '@rolldown/binding-linux-ppc64-gnu@1.1.3':
+ optional: true
+
+ '@rolldown/binding-linux-s390x-gnu@1.1.3':
+ optional: true
+
+ '@rolldown/binding-linux-x64-gnu@1.1.3':
+ optional: true
+
+ '@rolldown/binding-linux-x64-musl@1.1.3':
+ optional: true
+
+ '@rolldown/binding-openharmony-arm64@1.1.3':
+ optional: true
+
+ '@rolldown/binding-wasm32-wasi@1.1.3':
+ dependencies:
+ '@emnapi/core': 1.11.1
+ '@emnapi/runtime': 1.11.1
+ '@napi-rs/wasm-runtime': 1.1.6(@emnapi/core@1.11.1)(@emnapi/runtime@1.11.1)
+ optional: true
+
+ '@rolldown/binding-win32-arm64-msvc@1.1.3':
+ optional: true
+
+ '@rolldown/binding-win32-x64-msvc@1.1.3':
+ optional: true
+
+ '@rolldown/pluginutils@1.0.1': {}
+
+ '@rollup/plugin-inject@5.0.5(rollup@4.60.1)':
+ dependencies:
+ '@rollup/pluginutils': 5.4.0(rollup@4.60.1)
+ estree-walker: 2.0.2
+ magic-string: 0.30.21
+ optionalDependencies:
+ rollup: 4.60.1
+
+ '@rollup/pluginutils@4.2.1':
+ dependencies:
+ estree-walker: 2.0.2
+ picomatch: 2.3.2
+
+ '@rollup/pluginutils@5.3.0(rollup@4.60.1)':
+ dependencies:
+ '@types/estree': 1.0.8
+ estree-walker: 2.0.2
+ picomatch: 4.0.4
+ optionalDependencies:
+ rollup: 4.60.1
+
+ '@rollup/pluginutils@5.4.0(rollup@4.60.1)':
+ dependencies:
+ '@types/estree': 1.0.9
+ estree-walker: 2.0.2
+ picomatch: 4.0.4
+ optionalDependencies:
+ rollup: 4.60.1
+
+ '@rollup/rollup-android-arm-eabi@4.60.1':
+ optional: true
+
+ '@rollup/rollup-android-arm64@4.60.1':
+ optional: true
+
+ '@rollup/rollup-darwin-arm64@4.60.1':
+ optional: true
+
+ '@rollup/rollup-darwin-x64@4.60.1':
+ optional: true
+
+ '@rollup/rollup-freebsd-arm64@4.60.1':
+ optional: true
+
+ '@rollup/rollup-freebsd-x64@4.60.1':
+ optional: true
+
+ '@rollup/rollup-linux-arm-gnueabihf@4.60.1':
+ optional: true
+
+ '@rollup/rollup-linux-arm-musleabihf@4.60.1':
+ optional: true
+
+ '@rollup/rollup-linux-arm64-gnu@4.60.1':
+ optional: true
+
+ '@rollup/rollup-linux-arm64-musl@4.60.1':
+ optional: true
+
+ '@rollup/rollup-linux-loong64-gnu@4.60.1':
+ optional: true
+
+ '@rollup/rollup-linux-loong64-musl@4.60.1':
+ optional: true
+
+ '@rollup/rollup-linux-ppc64-gnu@4.60.1':
+ optional: true
+
+ '@rollup/rollup-linux-ppc64-musl@4.60.1':
+ optional: true
+
+ '@rollup/rollup-linux-riscv64-gnu@4.60.1':
+ optional: true
+
+ '@rollup/rollup-linux-riscv64-musl@4.60.1':
+ optional: true
+
+ '@rollup/rollup-linux-s390x-gnu@4.60.1':
+ optional: true
+
+ '@rollup/rollup-linux-x64-gnu@4.60.1':
+ optional: true
+
+ '@rollup/rollup-linux-x64-musl@4.60.1':
+ optional: true
+
+ '@rollup/rollup-openbsd-x64@4.60.1':
+ optional: true
+
+ '@rollup/rollup-openharmony-arm64@4.60.1':
+ optional: true
+
+ '@rollup/rollup-win32-arm64-msvc@4.60.1':
+ optional: true
+
+ '@rollup/rollup-win32-ia32-msvc@4.60.1':
+ optional: true
+
+ '@rollup/rollup-win32-x64-gnu@4.60.1':
+ optional: true
+
+ '@rollup/rollup-win32-x64-msvc@4.60.1':
+ optional: true
+
+ '@sec-ant/readable-stream@0.4.1': {}
+
+ '@sentry-internal/browser-utils@8.55.2':
+ dependencies:
+ '@sentry/core': 8.55.2
+
+ '@sentry-internal/feedback@8.55.2':
+ dependencies:
+ '@sentry/core': 8.55.2
+
+ '@sentry-internal/replay-canvas@8.55.2':
+ dependencies:
+ '@sentry-internal/replay': 8.55.2
+ '@sentry/core': 8.55.2
+
+ '@sentry-internal/replay@8.55.2':
+ dependencies:
+ '@sentry-internal/browser-utils': 8.55.2
+ '@sentry/core': 8.55.2
+
+ '@sentry/babel-plugin-component-annotate@3.6.1': {}
+
+ '@sentry/browser@8.55.2':
+ dependencies:
+ '@sentry-internal/browser-utils': 8.55.2
+ '@sentry-internal/feedback': 8.55.2
+ '@sentry-internal/replay': 8.55.2
+ '@sentry-internal/replay-canvas': 8.55.2
+ '@sentry/core': 8.55.2
+
+ '@sentry/bundler-plugin-core@3.6.1':
+ dependencies:
+ '@babel/core': 7.29.7
+ '@sentry/babel-plugin-component-annotate': 3.6.1
+ '@sentry/cli': 2.58.5
+ dotenv: 16.6.1
+ find-up: 5.0.0
+ glob: 10.5.0
+ magic-string: 0.30.8
+ unplugin: 1.0.1
+ transitivePeerDependencies:
+ - encoding
+ - supports-color
+
+ '@sentry/cli-darwin@2.58.5':
+ optional: true
+
+ '@sentry/cli-linux-arm64@2.58.5':
+ optional: true
+
+ '@sentry/cli-linux-arm@2.58.5':
+ optional: true
+
+ '@sentry/cli-linux-i686@2.58.5':
+ optional: true
+
+ '@sentry/cli-linux-x64@2.58.5':
+ optional: true
+
+ '@sentry/cli-win32-arm64@2.58.5':
+ optional: true
+
+ '@sentry/cli-win32-i686@2.58.5':
+ optional: true
+
+ '@sentry/cli-win32-x64@2.58.5':
+ optional: true
+
+ '@sentry/cli@2.58.5':
+ dependencies:
+ https-proxy-agent: 5.0.1
+ node-fetch: 2.7.0
+ progress: 2.0.3
+ proxy-from-env: 1.1.0
+ which: 2.0.2
+ optionalDependencies:
+ '@sentry/cli-darwin': 2.58.5
+ '@sentry/cli-linux-arm': 2.58.5
+ '@sentry/cli-linux-arm64': 2.58.5
+ '@sentry/cli-linux-i686': 2.58.5
+ '@sentry/cli-linux-x64': 2.58.5
+ '@sentry/cli-win32-arm64': 2.58.5
+ '@sentry/cli-win32-i686': 2.58.5
+ '@sentry/cli-win32-x64': 2.58.5
+ transitivePeerDependencies:
+ - encoding
+ - supports-color
+
+ '@sentry/core@8.55.2': {}
+
+ '@sentry/react@8.55.2(react@19.2.7)':
+ dependencies:
+ '@sentry/browser': 8.55.2
+ '@sentry/core': 8.55.2
+ hoist-non-react-statics: 3.3.2
+ react: 19.2.7
+
+ '@sentry/vite-plugin@3.6.1':
+ dependencies:
+ '@sentry/bundler-plugin-core': 3.6.1
+ unplugin: 1.0.1
+ transitivePeerDependencies:
+ - encoding
+ - supports-color
+
+ '@sindresorhus/merge-streams@4.0.0': {}
+
+ '@standard-schema/spec@1.1.0': {}
+
+ '@storybook/addon-docs@10.4.6(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(esbuild@0.28.1)(rollup@4.60.1)(storybook@10.4.6(@testing-library/dom@10.4.1)(@types/react@19.2.17)(prettier@3.8.3)(react@19.2.7))(vite@8.1.0(@types/node@24.13.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(terser@5.46.1)(yaml@2.9.0))':
+ dependencies:
+ '@mdx-js/react': 3.1.1(@types/react@19.2.17)(react@19.2.7)
+ '@storybook/csf-plugin': 10.4.6(esbuild@0.28.1)(rollup@4.60.1)(storybook@10.4.6(@testing-library/dom@10.4.1)(@types/react@19.2.17)(prettier@3.8.3)(react@19.2.7))(vite@8.1.0(@types/node@24.13.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(terser@5.46.1)(yaml@2.9.0))
+ '@storybook/icons': 2.1.0(react@19.2.7)
+ '@storybook/react-dom-shim': 10.4.6(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(storybook@10.4.6(@testing-library/dom@10.4.1)(@types/react@19.2.17)(prettier@3.8.3)(react@19.2.7))
+ react: 19.2.7
+ react-dom: 19.2.7(react@19.2.7)
+ storybook: 10.4.6(@testing-library/dom@10.4.1)(@types/react@19.2.17)(prettier@3.8.3)(react@19.2.7)
+ ts-dedent: 2.3.0
+ optionalDependencies:
+ '@types/react': 19.2.17
+ transitivePeerDependencies:
+ - '@types/react-dom'
+ - esbuild
+ - rollup
+ - vite
+ - webpack
+
+ '@storybook/addon-vitest@10.4.6(@vitest/browser-playwright@4.1.9)(@vitest/browser@4.1.9)(@vitest/runner@4.1.9)(react@19.2.7)(storybook@10.4.6(@testing-library/dom@10.4.1)(@types/react@19.2.17)(prettier@3.8.3)(react@19.2.7))(vitest@4.1.9)':
+ dependencies:
+ '@storybook/global': 5.0.0
+ '@storybook/icons': 2.1.0(react@19.2.7)
+ storybook: 10.4.6(@testing-library/dom@10.4.1)(@types/react@19.2.17)(prettier@3.8.3)(react@19.2.7)
+ optionalDependencies:
+ '@vitest/browser': 4.1.9(vite@8.1.0(@types/node@24.13.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(terser@5.46.1)(yaml@2.9.0))(vitest@4.1.9)
+ '@vitest/browser-playwright': 4.1.9(playwright@1.61.1)(vite@8.1.0(@types/node@24.13.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(terser@5.46.1)(yaml@2.9.0))(vitest@4.1.9)
+ '@vitest/runner': 4.1.9
+ vitest: 4.1.9(@opentelemetry/api@1.9.1)(@types/node@24.13.2)(@vitest/browser-playwright@4.1.9)(@vitest/coverage-v8@4.1.9)(@vitest/ui@4.1.9)(jsdom@26.1.0)(vite@8.1.0(@types/node@24.13.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(terser@5.46.1)(yaml@2.9.0))
+ transitivePeerDependencies:
+ - react
+
+ '@storybook/builder-vite@10.4.6(esbuild@0.28.1)(rollup@4.60.1)(storybook@10.4.6(@testing-library/dom@10.4.1)(@types/react@19.2.17)(prettier@3.8.3)(react@19.2.7))(vite@8.1.0(@types/node@24.13.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(terser@5.46.1)(yaml@2.9.0))':
+ dependencies:
+ '@storybook/csf-plugin': 10.4.6(esbuild@0.28.1)(rollup@4.60.1)(storybook@10.4.6(@testing-library/dom@10.4.1)(@types/react@19.2.17)(prettier@3.8.3)(react@19.2.7))(vite@8.1.0(@types/node@24.13.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(terser@5.46.1)(yaml@2.9.0))
+ storybook: 10.4.6(@testing-library/dom@10.4.1)(@types/react@19.2.17)(prettier@3.8.3)(react@19.2.7)
+ ts-dedent: 2.3.0
+ vite: 8.1.0(@types/node@24.13.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(terser@5.46.1)(yaml@2.9.0)
+ transitivePeerDependencies:
+ - esbuild
+ - rollup
+ - webpack
+
+ '@storybook/csf-plugin@10.4.6(esbuild@0.28.1)(rollup@4.60.1)(storybook@10.4.6(@testing-library/dom@10.4.1)(@types/react@19.2.17)(prettier@3.8.3)(react@19.2.7))(vite@8.1.0(@types/node@24.13.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(terser@5.46.1)(yaml@2.9.0))':
+ dependencies:
+ storybook: 10.4.6(@testing-library/dom@10.4.1)(@types/react@19.2.17)(prettier@3.8.3)(react@19.2.7)
+ unplugin: 2.3.11
+ optionalDependencies:
+ esbuild: 0.28.1
+ rollup: 4.60.1
+ vite: 8.1.0(@types/node@24.13.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(terser@5.46.1)(yaml@2.9.0)
+
+ '@storybook/global@5.0.0': {}
+
+ '@storybook/icons@2.1.0(react@19.2.7)':
+ dependencies:
+ react: 19.2.7
+
+ '@storybook/react-dom-shim@10.4.6(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(storybook@10.4.6(@testing-library/dom@10.4.1)(@types/react@19.2.17)(prettier@3.8.3)(react@19.2.7))':
+ dependencies:
+ react: 19.2.7
+ react-dom: 19.2.7(react@19.2.7)
+ storybook: 10.4.6(@testing-library/dom@10.4.1)(@types/react@19.2.17)(prettier@3.8.3)(react@19.2.7)
+ optionalDependencies:
+ '@types/react': 19.2.17
+ '@types/react-dom': 19.2.3(@types/react@19.2.17)
+
+ '@storybook/react-vite@10.4.6(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(esbuild@0.28.1)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(rollup@4.60.1)(storybook@10.4.6(@testing-library/dom@10.4.1)(@types/react@19.2.17)(prettier@3.8.3)(react@19.2.7))(typescript@5.9.3)(vite@8.1.0(@types/node@24.13.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(terser@5.46.1)(yaml@2.9.0))':
+ dependencies:
+ '@joshwooding/vite-plugin-react-docgen-typescript': 0.7.0(typescript@5.9.3)(vite@8.1.0(@types/node@24.13.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(terser@5.46.1)(yaml@2.9.0))
+ '@rollup/pluginutils': 5.4.0(rollup@4.60.1)
+ '@storybook/builder-vite': 10.4.6(esbuild@0.28.1)(rollup@4.60.1)(storybook@10.4.6(@testing-library/dom@10.4.1)(@types/react@19.2.17)(prettier@3.8.3)(react@19.2.7))(vite@8.1.0(@types/node@24.13.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(terser@5.46.1)(yaml@2.9.0))
+ '@storybook/react': 10.4.6(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(storybook@10.4.6(@testing-library/dom@10.4.1)(@types/react@19.2.17)(prettier@3.8.3)(react@19.2.7))(typescript@5.9.3)
+ empathic: 2.0.1
+ magic-string: 0.30.21
+ react: 19.2.7
+ react-docgen: 8.0.3
+ react-dom: 19.2.7(react@19.2.7)
+ resolve: 1.22.12
+ storybook: 10.4.6(@testing-library/dom@10.4.1)(@types/react@19.2.17)(prettier@3.8.3)(react@19.2.7)
+ tsconfig-paths: 4.2.0
+ vite: 8.1.0(@types/node@24.13.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(terser@5.46.1)(yaml@2.9.0)
+ transitivePeerDependencies:
+ - '@types/react'
+ - '@types/react-dom'
+ - esbuild
+ - rollup
+ - supports-color
+ - typescript
+ - webpack
+
+ '@storybook/react@10.4.6(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(storybook@10.4.6(@testing-library/dom@10.4.1)(@types/react@19.2.17)(prettier@3.8.3)(react@19.2.7))(typescript@5.9.3)':
+ dependencies:
+ '@storybook/global': 5.0.0
+ '@storybook/react-dom-shim': 10.4.6(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(storybook@10.4.6(@testing-library/dom@10.4.1)(@types/react@19.2.17)(prettier@3.8.3)(react@19.2.7))
+ react: 19.2.7
+ react-docgen: 8.0.3
+ react-docgen-typescript: 2.4.0(typescript@5.9.3)
+ react-dom: 19.2.7(react@19.2.7)
+ storybook: 10.4.6(@testing-library/dom@10.4.1)(@types/react@19.2.17)(prettier@3.8.3)(react@19.2.7)
+ optionalDependencies:
+ '@types/react': 19.2.17
+ '@types/react-dom': 19.2.3(@types/react@19.2.17)
+ typescript: 5.9.3
+ transitivePeerDependencies:
+ - supports-color
+
+ '@svgr/babel-plugin-add-jsx-attribute@8.0.0(@babel/core@7.29.7)':
+ dependencies:
+ '@babel/core': 7.29.7
+
+ '@svgr/babel-plugin-remove-jsx-attribute@8.0.0(@babel/core@7.29.7)':
+ dependencies:
+ '@babel/core': 7.29.7
+
+ '@svgr/babel-plugin-remove-jsx-empty-expression@8.0.0(@babel/core@7.29.7)':
+ dependencies:
+ '@babel/core': 7.29.7
+
+ '@svgr/babel-plugin-replace-jsx-attribute-value@8.0.0(@babel/core@7.29.7)':
+ dependencies:
+ '@babel/core': 7.29.7
+
+ '@svgr/babel-plugin-svg-dynamic-title@8.0.0(@babel/core@7.29.7)':
+ dependencies:
+ '@babel/core': 7.29.7
+
+ '@svgr/babel-plugin-svg-em-dimensions@8.0.0(@babel/core@7.29.7)':
+ dependencies:
+ '@babel/core': 7.29.7
+
+ '@svgr/babel-plugin-transform-react-native-svg@8.1.0(@babel/core@7.29.7)':
+ dependencies:
+ '@babel/core': 7.29.7
+
+ '@svgr/babel-plugin-transform-svg-component@8.0.0(@babel/core@7.29.7)':
+ dependencies:
+ '@babel/core': 7.29.7
+
+ '@svgr/babel-preset@8.1.0(@babel/core@7.29.7)':
+ dependencies:
+ '@babel/core': 7.29.7
+ '@svgr/babel-plugin-add-jsx-attribute': 8.0.0(@babel/core@7.29.7)
+ '@svgr/babel-plugin-remove-jsx-attribute': 8.0.0(@babel/core@7.29.7)
+ '@svgr/babel-plugin-remove-jsx-empty-expression': 8.0.0(@babel/core@7.29.7)
+ '@svgr/babel-plugin-replace-jsx-attribute-value': 8.0.0(@babel/core@7.29.7)
+ '@svgr/babel-plugin-svg-dynamic-title': 8.0.0(@babel/core@7.29.7)
+ '@svgr/babel-plugin-svg-em-dimensions': 8.0.0(@babel/core@7.29.7)
+ '@svgr/babel-plugin-transform-react-native-svg': 8.1.0(@babel/core@7.29.7)
+ '@svgr/babel-plugin-transform-svg-component': 8.0.0(@babel/core@7.29.7)
+
+ '@svgr/core@8.1.0(typescript@5.9.3)':
+ dependencies:
+ '@babel/core': 7.29.7
+ '@svgr/babel-preset': 8.1.0(@babel/core@7.29.7)
+ camelcase: 6.3.0
+ cosmiconfig: 8.3.6(typescript@5.9.3)
+ snake-case: 3.0.4
+ transitivePeerDependencies:
+ - supports-color
+ - typescript
+
+ '@svgr/hast-util-to-babel-ast@8.0.0':
+ dependencies:
+ '@babel/types': 7.29.7
+ entities: 4.5.0
+
+ '@svgr/plugin-jsx@8.1.0(@svgr/core@8.1.0(typescript@5.9.3))':
+ dependencies:
+ '@babel/core': 7.29.7
+ '@svgr/babel-preset': 8.1.0(@babel/core@7.29.7)
+ '@svgr/core': 8.1.0(typescript@5.9.3)
+ '@svgr/hast-util-to-babel-ast': 8.0.0
+ svg-parser: 2.0.4
+ transitivePeerDependencies:
+ - supports-color
+
+ '@swc/core-darwin-arm64@1.15.43':
+ optional: true
+
+ '@swc/core-darwin-x64@1.15.43':
+ optional: true
+
+ '@swc/core-linux-arm-gnueabihf@1.15.43':
+ optional: true
+
+ '@swc/core-linux-arm64-gnu@1.15.43':
+ optional: true
+
+ '@swc/core-linux-arm64-musl@1.15.43':
+ optional: true
+
+ '@swc/core-linux-ppc64-gnu@1.15.43':
+ optional: true
+
+ '@swc/core-linux-s390x-gnu@1.15.43':
+ optional: true
+
+ '@swc/core-linux-x64-gnu@1.15.43':
+ optional: true
+
+ '@swc/core-linux-x64-musl@1.15.43':
+ optional: true
+
+ '@swc/core-win32-arm64-msvc@1.15.43':
+ optional: true
+
+ '@swc/core-win32-ia32-msvc@1.15.43':
+ optional: true
+
+ '@swc/core-win32-x64-msvc@1.15.43':
+ optional: true
+
+ '@swc/core@1.15.43':
+ dependencies:
+ '@swc/counter': 0.1.3
+ '@swc/types': 0.1.27
+ optionalDependencies:
+ '@swc/core-darwin-arm64': 1.15.43
+ '@swc/core-darwin-x64': 1.15.43
+ '@swc/core-linux-arm-gnueabihf': 1.15.43
+ '@swc/core-linux-arm64-gnu': 1.15.43
+ '@swc/core-linux-arm64-musl': 1.15.43
+ '@swc/core-linux-ppc64-gnu': 1.15.43
+ '@swc/core-linux-s390x-gnu': 1.15.43
+ '@swc/core-linux-x64-gnu': 1.15.43
+ '@swc/core-linux-x64-musl': 1.15.43
+ '@swc/core-win32-arm64-msvc': 1.15.43
+ '@swc/core-win32-ia32-msvc': 1.15.43
+ '@swc/core-win32-x64-msvc': 1.15.43
+
+ '@swc/counter@0.1.3': {}
+
+ '@swc/types@0.1.27':
+ dependencies:
+ '@swc/counter': 0.1.3
+
+ '@testing-library/dom@10.4.1':
+ dependencies:
+ '@babel/code-frame': 7.29.0
+ '@babel/runtime': 7.29.2
+ '@types/aria-query': 5.0.4
+ aria-query: 5.3.0
+ dom-accessibility-api: 0.5.16
+ lz-string: 1.5.0
+ picocolors: 1.1.1
+ pretty-format: 27.5.1
+
+ '@testing-library/jest-dom@6.9.1':
+ dependencies:
+ '@adobe/css-tools': 4.4.4
+ aria-query: 5.3.2
+ css.escape: 1.5.1
+ dom-accessibility-api: 0.6.3
+ picocolors: 1.1.1
+ redent: 3.0.0
+
+ '@testing-library/react@16.3.2(@testing-library/dom@10.4.1)(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
+ dependencies:
+ '@babel/runtime': 7.29.2
+ '@testing-library/dom': 10.4.1
+ react: 19.2.7
+ react-dom: 19.2.7(react@19.2.7)
+ optionalDependencies:
+ '@types/react': 19.2.17
+ '@types/react-dom': 19.2.3(@types/react@19.2.17)
+
+ '@testing-library/user-event@14.6.1(@testing-library/dom@10.4.1)':
+ dependencies:
+ '@testing-library/dom': 10.4.1
+
+ '@tybys/wasm-util@0.10.2':
+ dependencies:
+ tslib: 2.8.1
+ optional: true
+
+ '@tybys/wasm-util@0.10.3':
+ dependencies:
+ tslib: 2.8.1
+ optional: true
+
+ '@types/aria-query@5.0.4': {}
+
+ '@types/babel__core@7.20.5':
+ dependencies:
+ '@babel/parser': 7.29.7
+ '@babel/types': 7.29.7
+ '@types/babel__generator': 7.27.0
+ '@types/babel__template': 7.4.4
+ '@types/babel__traverse': 7.28.0
+
+ '@types/babel__generator@7.27.0':
+ dependencies:
+ '@babel/types': 7.29.7
+
+ '@types/babel__template@7.4.4':
+ dependencies:
+ '@babel/parser': 7.29.7
+ '@babel/types': 7.29.7
+
+ '@types/babel__traverse@7.28.0':
+ dependencies:
+ '@babel/types': 7.29.7
+
+ '@types/chai@5.2.3':
+ dependencies:
+ '@types/deep-eql': 4.0.2
+ assertion-error: 2.0.1
+
+ '@types/deep-eql@4.0.2': {}
+
+ '@types/doctrine@0.0.9': {}
+
+ '@types/dom-mediacapture-record@1.0.22': {}
+
+ '@types/dom-mediacapture-transform@0.1.11':
+ dependencies:
+ '@types/dom-webcodecs': 0.1.18
+
+ '@types/dom-webcodecs@0.1.18': {}
+
+ '@types/eslint@9.6.1':
+ dependencies:
+ '@types/estree': 1.0.9
+ '@types/json-schema': 7.0.15
+
+ '@types/estree@1.0.8': {}
+
+ '@types/estree@1.0.9': {}
+
+ '@types/events@3.0.3': {}
+
+ '@types/glob-to-regexp@0.4.4': {}
+
+ '@types/grecaptcha@3.0.9': {}
+
+ '@types/jsdom@21.1.7':
+ dependencies:
+ '@types/node': 24.13.2
+ '@types/tough-cookie': 4.0.5
+ parse5: 7.3.0
+
+ '@types/json-schema@7.0.15': {}
+
+ '@types/lodash-es@4.17.12':
+ dependencies:
+ '@types/lodash': 4.17.24
+
+ '@types/lodash@4.17.24': {}
+
+ '@types/mdx@2.0.14': {}
+
+ '@types/node@24.13.2':
+ dependencies:
+ undici-types: 7.18.2
+
+ '@types/pako@2.0.4': {}
+
+ '@types/qrcode@1.5.6':
+ dependencies:
+ '@types/node': 24.13.2
+
+ '@types/react-dom@19.2.3(@types/react@19.2.17)':
+ dependencies:
+ '@types/react': 19.2.17
+
+ '@types/react@19.2.17':
+ dependencies:
+ csstype: 3.2.3
+
+ '@types/resolve@1.20.6': {}
+
+ '@types/sdp-transform@2.15.0': {}
+
+ '@types/tough-cookie@4.0.5': {}
+
+ '@types/trusted-types@2.0.7':
+ optional: true
+
+ '@typescript-eslint/project-service@8.62.0(typescript@5.9.3)':
+ dependencies:
+ '@typescript-eslint/tsconfig-utils': 8.62.0(typescript@5.9.3)
+ '@typescript-eslint/types': 8.62.0
+ debug: 4.4.3
+ typescript: 5.9.3
+ transitivePeerDependencies:
+ - supports-color
+
+ '@typescript-eslint/scope-manager@8.62.0':
+ dependencies:
+ '@typescript-eslint/types': 8.62.0
+ '@typescript-eslint/visitor-keys': 8.62.0
+
+ '@typescript-eslint/tsconfig-utils@8.62.0(typescript@5.9.3)':
+ dependencies:
+ typescript: 5.9.3
+
+ '@typescript-eslint/types@8.62.0': {}
+
+ '@typescript-eslint/typescript-estree@8.62.0(typescript@5.9.3)':
+ dependencies:
+ '@typescript-eslint/project-service': 8.62.0(typescript@5.9.3)
+ '@typescript-eslint/tsconfig-utils': 8.62.0(typescript@5.9.3)
+ '@typescript-eslint/types': 8.62.0
+ '@typescript-eslint/visitor-keys': 8.62.0
+ debug: 4.4.3
+ minimatch: 10.2.5
+ semver: 7.8.5
+ tinyglobby: 0.2.17
+ ts-api-utils: 2.5.0(typescript@5.9.3)
+ typescript: 5.9.3
+ transitivePeerDependencies:
+ - supports-color
+
+ '@typescript-eslint/utils@8.62.0(eslint@8.57.1)(typescript@5.9.3)':
+ dependencies:
+ '@eslint-community/eslint-utils': 4.9.1(eslint@8.57.1)
+ '@typescript-eslint/scope-manager': 8.62.0
+ '@typescript-eslint/types': 8.62.0
+ '@typescript-eslint/typescript-estree': 8.62.0(typescript@5.9.3)
+ eslint: 8.57.1
+ typescript: 5.9.3
+ transitivePeerDependencies:
+ - supports-color
+
+ '@typescript-eslint/visitor-keys@8.62.0':
+ dependencies:
+ '@typescript-eslint/types': 8.62.0
+ eslint-visitor-keys: 5.0.1
+
+ '@ungap/structured-clone@1.3.3': {}
+
+ '@use-gesture/core@10.3.1': {}
+
+ '@use-gesture/react@10.3.1(react@19.2.7)':
+ dependencies:
+ '@use-gesture/core': 10.3.1
+ react: 19.2.7
+
+ '@vector-im/compound-design-tokens@10.2.3(@types/react@19.2.17)(react@19.2.7)':
+ optionalDependencies:
+ '@types/react': 19.2.17
+ react: 19.2.7
+
+ '@vector-im/compound-web@9.8.0(@fontsource/inconsolata@5.2.8)(@fontsource/inter@5.2.8)(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(@vector-im/compound-design-tokens@10.2.3(@types/react@19.2.17)(react@19.2.7))(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
+ dependencies:
+ '@floating-ui/react': 0.27.20(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@floating-ui/react-dom': 2.1.9(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@fontsource/inconsolata': 5.2.8
+ '@fontsource/inter': 5.2.8
+ '@radix-ui/react-context-menu': 2.3.3(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@radix-ui/react-dropdown-menu': 2.1.20(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@radix-ui/react-form': 0.1.12(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@radix-ui/react-progress': 1.1.12(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@radix-ui/react-separator': 1.1.11(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@radix-ui/react-slot': 1.3.0(@types/react@19.2.17)(react@19.2.7)
+ '@vector-im/compound-design-tokens': 10.2.3(@types/react@19.2.17)(react@19.2.7)
+ classnames: 2.5.1
+ react: 19.2.7
+ vaul: 1.1.2(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ optionalDependencies:
+ '@types/react': 19.2.17
+ transitivePeerDependencies:
+ - '@types/react-dom'
+ - react-dom
+
+ '@vitejs/plugin-react@6.0.3(vite@8.1.0(@types/node@24.13.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(terser@5.46.1)(yaml@2.9.0))':
+ dependencies:
+ '@rolldown/pluginutils': 1.0.1
+ vite: 8.1.0(@types/node@24.13.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(terser@5.46.1)(yaml@2.9.0)
+
+ '@vitest/browser-playwright@4.1.9(playwright@1.61.1)(vite@8.1.0(@types/node@24.13.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(terser@5.46.1)(yaml@2.9.0))(vitest@4.1.9)':
+ dependencies:
+ '@vitest/browser': 4.1.9(vite@8.1.0(@types/node@24.13.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(terser@5.46.1)(yaml@2.9.0))(vitest@4.1.9)
+ '@vitest/mocker': 4.1.9(vite@8.1.0(@types/node@24.13.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(terser@5.46.1)(yaml@2.9.0))
+ playwright: 1.61.1
+ tinyrainbow: 3.1.0
+ vitest: 4.1.9(@opentelemetry/api@1.9.1)(@types/node@24.13.2)(@vitest/browser-playwright@4.1.9)(@vitest/coverage-v8@4.1.9)(@vitest/ui@4.1.9)(jsdom@26.1.0)(vite@8.1.0(@types/node@24.13.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(terser@5.46.1)(yaml@2.9.0))
+ transitivePeerDependencies:
+ - bufferutil
+ - msw
+ - utf-8-validate
+ - vite
+
+ '@vitest/browser@4.1.9(vite@8.1.0(@types/node@24.13.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(terser@5.46.1)(yaml@2.9.0))(vitest@4.1.9)':
+ dependencies:
+ '@blazediff/core': 1.9.1
+ '@vitest/mocker': 4.1.9(vite@8.1.0(@types/node@24.13.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(terser@5.46.1)(yaml@2.9.0))
+ '@vitest/utils': 4.1.9
+ magic-string: 0.30.21
+ pngjs: 7.0.0
+ sirv: 3.0.2
+ tinyrainbow: 3.1.0
+ vitest: 4.1.9(@opentelemetry/api@1.9.1)(@types/node@24.13.2)(@vitest/browser-playwright@4.1.9)(@vitest/coverage-v8@4.1.9)(@vitest/ui@4.1.9)(jsdom@26.1.0)(vite@8.1.0(@types/node@24.13.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(terser@5.46.1)(yaml@2.9.0))
+ ws: 8.21.0
+ transitivePeerDependencies:
+ - bufferutil
+ - msw
+ - utf-8-validate
+ - vite
+
+ '@vitest/coverage-v8@4.1.9(@vitest/browser@4.1.9)(vitest@4.1.9)':
+ dependencies:
+ '@bcoe/v8-coverage': 1.0.2
+ '@vitest/utils': 4.1.9
+ ast-v8-to-istanbul: 1.0.4
+ istanbul-lib-coverage: 3.2.2
+ istanbul-lib-report: 3.0.1
+ istanbul-reports: 3.2.0
+ magicast: 0.5.3
+ obug: 2.1.3
+ std-env: 4.1.0
+ tinyrainbow: 3.1.0
+ vitest: 4.1.9(@opentelemetry/api@1.9.1)(@types/node@24.13.2)(@vitest/browser-playwright@4.1.9)(@vitest/coverage-v8@4.1.9)(@vitest/ui@4.1.9)(jsdom@26.1.0)(vite@8.1.0(@types/node@24.13.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(terser@5.46.1)(yaml@2.9.0))
+ optionalDependencies:
+ '@vitest/browser': 4.1.9(vite@8.1.0(@types/node@24.13.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(terser@5.46.1)(yaml@2.9.0))(vitest@4.1.9)
+
+ '@vitest/expect@3.2.4':
+ dependencies:
+ '@types/chai': 5.2.3
+ '@vitest/spy': 3.2.4
+ '@vitest/utils': 3.2.4
+ chai: 5.3.3
+ tinyrainbow: 2.0.0
+
+ '@vitest/expect@4.1.9':
+ dependencies:
+ '@standard-schema/spec': 1.1.0
+ '@types/chai': 5.2.3
+ '@vitest/spy': 4.1.9
+ '@vitest/utils': 4.1.9
+ chai: 6.2.2
+ tinyrainbow: 3.1.0
+
+ '@vitest/mocker@4.1.9(vite@8.1.0(@types/node@24.13.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(terser@5.46.1)(yaml@2.9.0))':
+ dependencies:
+ '@vitest/spy': 4.1.9
+ estree-walker: 3.0.3
+ magic-string: 0.30.21
+ optionalDependencies:
+ vite: 8.1.0(@types/node@24.13.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(terser@5.46.1)(yaml@2.9.0)
+
+ '@vitest/pretty-format@3.2.4':
+ dependencies:
+ tinyrainbow: 2.0.0
+
+ '@vitest/pretty-format@4.1.9':
+ dependencies:
+ tinyrainbow: 3.1.0
+
+ '@vitest/runner@4.1.9':
+ dependencies:
+ '@vitest/utils': 4.1.9
+ pathe: 2.0.3
+
+ '@vitest/snapshot@4.1.9':
+ dependencies:
+ '@vitest/pretty-format': 4.1.9
+ '@vitest/utils': 4.1.9
+ magic-string: 0.30.21
+ pathe: 2.0.3
+
+ '@vitest/spy@3.2.4':
+ dependencies:
+ tinyspy: 4.0.4
+
+ '@vitest/spy@4.1.9': {}
+
+ '@vitest/ui@4.1.9(vitest@4.1.9)':
+ dependencies:
+ '@vitest/utils': 4.1.9
+ fflate: 0.8.2
+ flatted: 3.4.2
+ pathe: 2.0.3
+ sirv: 3.0.2
+ tinyglobby: 0.2.17
+ tinyrainbow: 3.1.0
+ vitest: 4.1.9(@opentelemetry/api@1.9.1)(@types/node@24.13.2)(@vitest/browser-playwright@4.1.9)(@vitest/coverage-v8@4.1.9)(@vitest/ui@4.1.9)(jsdom@26.1.0)(vite@8.1.0(@types/node@24.13.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(terser@5.46.1)(yaml@2.9.0))
+
+ '@vitest/utils@3.2.4':
+ dependencies:
+ '@vitest/pretty-format': 3.2.4
+ loupe: 3.2.1
+ tinyrainbow: 2.0.0
+
+ '@vitest/utils@4.1.9':
+ dependencies:
+ '@vitest/pretty-format': 4.1.9
+ convert-source-map: 2.0.0
+ tinyrainbow: 3.1.0
+
+ '@webcontainer/env@1.1.1': {}
+
+ acorn-jsx@5.3.2(acorn@8.18.0):
+ dependencies:
+ acorn: 8.18.0
+
+ acorn@8.16.0: {}
+
+ acorn@8.17.0: {}
+
+ acorn@8.18.0: {}
+
+ agent-base@6.0.2:
+ dependencies:
+ debug: 4.4.3
+ transitivePeerDependencies:
+ - supports-color
+
+ agent-base@7.1.4: {}
+
+ ajv@6.15.0:
+ dependencies:
+ fast-deep-equal: 3.1.3
+ fast-json-stable-stringify: 2.1.0
+ json-schema-traverse: 0.4.1
+ uri-js: 4.4.1
+
+ another-json@0.2.0: {}
+
+ ansi-regex@5.0.1: {}
+
+ ansi-regex@6.2.2: {}
+
+ ansi-styles@4.3.0:
+ dependencies:
+ color-convert: 2.0.1
+
+ ansi-styles@5.2.0: {}
+
+ ansi-styles@6.2.3: {}
+
+ anymatch@3.1.3:
+ dependencies:
+ normalize-path: 3.0.0
+ picomatch: 2.3.2
+
+ argparse@2.0.1: {}
+
+ aria-hidden@1.2.6:
+ dependencies:
+ tslib: 2.8.1
+
+ aria-query@5.3.0:
+ dependencies:
+ dequal: 2.0.3
+
+ aria-query@5.3.2: {}
+
+ asn1.js@4.10.1:
+ dependencies:
+ bn.js: 4.12.3
+ inherits: 2.0.4
+ minimalistic-assert: 1.0.1
+
+ assert@2.1.0:
+ dependencies:
+ call-bind: 1.0.9
+ is-nan: 1.3.2
+ object-is: 1.1.6
+ object.assign: 4.1.7
+ util: 0.12.5
+
+ assertion-error@2.0.1: {}
+
+ ast-types@0.16.1:
+ dependencies:
+ tslib: 2.8.1
+
+ ast-v8-to-istanbul@1.0.4:
+ dependencies:
+ '@jridgewell/trace-mapping': 0.3.31
+ estree-walker: 3.0.3
+ js-tokens: 10.0.0
+
+ async@3.2.6: {}
+
+ autoprefixer@10.5.0(postcss@8.5.18):
+ dependencies:
+ browserslist: 4.28.2
+ caniuse-lite: 1.0.30001788
+ fraction.js: 5.3.4
+ picocolors: 1.1.1
+ postcss: 8.5.18
+ postcss-value-parser: 4.2.0
+
+ available-typed-arrays@1.0.7:
+ dependencies:
+ possible-typed-array-names: 1.1.0
+
+ axe-core@4.11.3: {}
+
+ balanced-match@4.0.4: {}
+
+ base-x@5.0.1: {}
+
+ base64-js@1.5.1: {}
+
+ baseline-browser-mapping@2.10.19: {}
+
+ before-after-hook@2.2.3: {}
+
+ binary-extensions@2.3.0: {}
+
+ bn.js@4.12.3: {}
+
+ bn.js@5.2.3: {}
+
+ boolbase@1.0.0: {}
+
+ brace-expansion@5.0.7:
+ dependencies:
+ balanced-match: 4.0.4
+
+ brace-expansion@5.0.8:
+ dependencies:
+ balanced-match: 4.0.4
+
+ braces@3.0.3:
+ dependencies:
+ fill-range: 7.1.1
+
+ brorand@1.1.0: {}
+
+ browser-resolve@2.0.0:
+ dependencies:
+ resolve: 1.22.12
+
+ browserify-aes@1.2.0:
+ dependencies:
+ buffer-xor: 1.0.3
+ cipher-base: 1.0.7
+ create-hash: 1.2.0
+ evp_bytestokey: 1.0.3
+ inherits: 2.0.4
+ safe-buffer: 5.2.1
+
+ browserify-cipher@1.0.1:
+ dependencies:
+ browserify-aes: 1.2.0
+ browserify-des: 1.0.2
+ evp_bytestokey: 1.0.3
+
+ browserify-des@1.0.2:
+ dependencies:
+ cipher-base: 1.0.7
+ des.js: 1.1.0
+ inherits: 2.0.4
+ safe-buffer: 5.2.1
+
+ browserify-rsa@4.1.1:
+ dependencies:
+ bn.js: 5.2.3
+ randombytes: 2.1.0
+ safe-buffer: 5.2.1
+
+ browserify-sign@4.2.5:
+ dependencies:
+ bn.js: 5.2.3
+ browserify-rsa: 4.1.1
+ create-hash: 1.2.0
+ create-hmac: 1.1.7
+ elliptic: 6.6.1
+ inherits: 2.0.4
+ parse-asn1: 5.1.9
+ readable-stream: 2.3.8
+ safe-buffer: 5.2.1
+
+ browserify-zlib@0.2.0:
+ dependencies:
+ pako: 1.0.11
+
+ browserslist@4.28.2:
+ dependencies:
+ baseline-browser-mapping: 2.10.19
+ caniuse-lite: 1.0.30001788
+ electron-to-chromium: 1.5.339
+ node-releases: 2.0.37
+ update-browserslist-db: 1.2.3(browserslist@4.28.2)
+
+ bs58@6.0.0:
+ dependencies:
+ base-x: 5.0.1
+
+ buffer-from@1.1.2: {}
+
+ buffer-xor@1.0.3: {}
+
+ buffer@5.7.1:
+ dependencies:
+ base64-js: 1.5.1
+ ieee754: 1.2.1
+
+ builtin-status-codes@3.0.0: {}
+
+ bundle-name@4.1.0:
+ dependencies:
+ run-applescript: 7.1.0
+
+ call-bind-apply-helpers@1.0.2:
+ dependencies:
+ es-errors: 1.3.0
+ function-bind: 1.1.2
+
+ call-bind@1.0.9:
+ dependencies:
+ call-bind-apply-helpers: 1.0.2
+ es-define-property: 1.0.1
+ get-intrinsic: 1.3.0
+ set-function-length: 1.2.2
+
+ call-bound@1.0.4:
+ dependencies:
+ call-bind-apply-helpers: 1.0.2
+ get-intrinsic: 1.3.0
+
+ callsites@3.1.0: {}
+
+ camel-case@4.1.2:
+ dependencies:
+ pascal-case: 3.1.2
+ tslib: 2.8.1
+
+ camelcase@5.3.1: {}
+
+ camelcase@6.3.0: {}
+
+ caniuse-lite@1.0.30001788: {}
+
+ chai@5.3.3:
+ dependencies:
+ assertion-error: 2.0.1
+ check-error: 2.1.3
+ deep-eql: 5.0.2
+ loupe: 3.2.1
+ pathval: 2.0.1
+
+ chai@6.2.2: {}
+
+ chalk@4.1.2:
+ dependencies:
+ ansi-styles: 4.3.0
+ supports-color: 7.2.0
+
+ chalk@5.6.2: {}
+
+ chardet@2.2.0: {}
+
+ check-error@2.1.3: {}
+
+ chokidar@3.6.0:
+ dependencies:
+ anymatch: 3.1.3
+ braces: 3.0.3
+ glob-parent: 5.1.2
+ is-binary-path: 2.1.0
+ is-glob: 4.0.3
+ normalize-path: 3.0.0
+ readdirp: 3.6.0
+ optionalDependencies:
+ fsevents: 2.3.3
+
+ chokidar@5.0.0:
+ dependencies:
+ readdirp: 5.0.0
+
+ cipher-base@1.0.7:
+ dependencies:
+ inherits: 2.0.4
+ safe-buffer: 5.2.1
+ to-buffer: 1.2.2
+
+ classnames@2.5.1: {}
+
+ clean-css@5.3.3:
+ dependencies:
+ source-map: 0.6.1
+
+ cli-cursor@5.0.0:
+ dependencies:
+ restore-cursor: 5.1.0
+
+ cli-spinners@3.4.0: {}
+
+ cli-width@4.1.0: {}
+
+ cliui@6.0.0:
+ dependencies:
+ string-width: 4.2.3
+ strip-ansi: 6.0.1
+ wrap-ansi: 6.2.0
+
+ clsx@2.1.1: {}
+
+ color-convert@2.0.1:
+ dependencies:
+ color-name: 1.1.4
+
+ color-name@1.1.4: {}
+
+ colorette@2.0.20: {}
+
+ commander@14.0.3: {}
+
+ commander@2.20.3: {}
+
+ commander@8.3.0: {}
+
+ connect-history-api-fallback@1.6.0: {}
+
+ consola@2.15.3: {}
+
+ console-browserify@1.2.0: {}
+
+ constants-browserify@1.0.0: {}
+
+ content-type@2.0.0: {}
+
+ convert-source-map@2.0.0: {}
+
+ cookie@1.1.1: {}
+
+ copy-to-clipboard@3.3.3:
+ dependencies:
+ toggle-selection: 1.0.6
+
+ core-js@3.49.0: {}
+
+ core-util-is@1.0.3: {}
+
+ cosmiconfig@8.3.6(typescript@5.9.3):
+ dependencies:
+ import-fresh: 3.3.1
+ js-yaml: 4.3.0
+ parse-json: 5.2.0
+ path-type: 4.0.0
+ optionalDependencies:
+ typescript: 5.9.3
+
+ create-ecdh@4.0.4:
+ dependencies:
+ bn.js: 4.12.3
+ elliptic: 6.6.1
+
+ create-hash@1.2.0:
+ dependencies:
+ cipher-base: 1.0.7
+ inherits: 2.0.4
+ md5.js: 1.3.5
+ ripemd160: 2.0.3
+ sha.js: 2.4.12
+
+ create-hmac@1.1.7:
+ dependencies:
+ cipher-base: 1.0.7
+ create-hash: 1.2.0
+ inherits: 2.0.4
+ ripemd160: 2.0.3
+ safe-buffer: 5.2.1
+ sha.js: 2.4.12
+
+ create-require@1.1.1: {}
+
+ cross-spawn@7.0.6:
+ dependencies:
+ path-key: 3.1.1
+ shebang-command: 2.0.0
+ which: 2.0.2
+
+ crypto-browserify@3.12.1:
+ dependencies:
+ browserify-cipher: 1.0.1
+ browserify-sign: 4.2.5
+ create-ecdh: 4.0.4
+ create-hash: 1.2.0
+ create-hmac: 1.1.7
+ diffie-hellman: 5.0.3
+ hash-base: 3.0.5
+ inherits: 2.0.4
+ pbkdf2: 3.1.5
+ public-encrypt: 4.0.3
+ randombytes: 2.1.0
+ randomfill: 1.0.4
+
+ css-blank-pseudo@7.0.1(postcss@8.5.18):
+ dependencies:
+ postcss: 8.5.18
+ postcss-selector-parser: 7.1.1
+
+ css-has-pseudo@7.0.3(postcss@8.5.18):
+ dependencies:
+ '@csstools/selector-specificity': 5.0.0(postcss-selector-parser@7.1.1)
+ postcss: 8.5.18
+ postcss-selector-parser: 7.1.1
+ postcss-value-parser: 4.2.0
+
+ css-prefers-color-scheme@10.0.0(postcss@8.5.18):
+ dependencies:
+ postcss: 8.5.18
+
+ css-select@4.3.0:
+ dependencies:
+ boolbase: 1.0.0
+ css-what: 6.2.2
+ domhandler: 4.3.1
+ domutils: 2.8.0
+ nth-check: 2.1.1
+
+ css-what@6.2.2: {}
+
+ css.escape@1.5.1: {}
+
+ cssdb@8.8.0: {}
+
+ cssesc@3.0.0: {}
+
+ cssstyle@4.6.0:
+ dependencies:
+ '@asamuzakjp/css-color': 3.2.0
+ rrweb-cssom: 0.8.0
+
+ csstype@3.2.3: {}
+
+ data-urls@5.0.0:
+ dependencies:
+ whatwg-mimetype: 4.0.0
+ whatwg-url: 14.2.0
+
+ debug@4.4.3:
+ dependencies:
+ ms: 2.1.3
+
+ decamelize@1.2.0: {}
+
+ decimal.js@10.6.0: {}
+
+ deep-eql@5.0.2: {}
+
+ deep-is@0.1.4: {}
+
+ default-browser-id@5.0.1: {}
+
+ default-browser@5.5.0:
+ dependencies:
+ bundle-name: 4.1.0
+ default-browser-id: 5.0.1
+
+ define-data-property@1.1.4:
+ dependencies:
+ es-define-property: 1.0.1
+ es-errors: 1.3.0
+ gopd: 1.2.0
+
+ define-lazy-prop@3.0.0: {}
+
+ define-properties@1.2.1:
+ dependencies:
+ define-data-property: 1.1.4
+ has-property-descriptors: 1.0.2
+ object-keys: 1.1.1
+
+ deprecation@2.3.1: {}
+
+ dequal@2.0.3: {}
+
+ des.js@1.1.0:
+ dependencies:
+ inherits: 2.0.4
+ minimalistic-assert: 1.0.1
+
+ detect-libc@2.1.2: {}
+
+ detect-node-es@1.1.0: {}
+
+ diffie-hellman@5.0.3:
+ dependencies:
+ bn.js: 4.12.3
+ miller-rabin: 4.0.1
+ randombytes: 2.1.0
+
+ dijkstrajs@1.0.3: {}
+
+ doctrine@3.0.0:
+ dependencies:
+ esutils: 2.0.3
+
+ dom-accessibility-api@0.5.16: {}
+
+ dom-accessibility-api@0.6.3: {}
+
+ dom-serializer@1.4.1:
+ dependencies:
+ domelementtype: 2.3.0
+ domhandler: 4.3.1
+ entities: 2.2.0
+
+ domain-browser@4.22.0: {}
+
+ domelementtype@2.3.0: {}
+
+ domhandler@4.3.1:
+ dependencies:
+ domelementtype: 2.3.0
+
+ dompurify@3.4.12:
+ optionalDependencies:
+ '@types/trusted-types': 2.0.7
+
+ domutils@2.8.0:
+ dependencies:
+ dom-serializer: 1.4.1
+ domelementtype: 2.3.0
+ domhandler: 4.3.1
+
+ dot-case@3.0.4:
+ dependencies:
+ no-case: 3.0.4
+ tslib: 2.8.1
+
+ dotenv-expand@8.0.3: {}
+
+ dotenv@16.6.1: {}
+
+ dunder-proto@1.0.1:
+ dependencies:
+ call-bind-apply-helpers: 1.0.2
+ es-errors: 1.3.0
+ gopd: 1.2.0
+
+ eastasianwidth@0.2.0: {}
+
+ ejs@3.1.10:
+ dependencies:
+ jake: 10.9.4
+
+ electron-to-chromium@1.5.339: {}
+
+ elliptic@6.6.1:
+ dependencies:
+ bn.js: 4.12.3
+ brorand: 1.1.0
+ hash.js: 1.1.7
+ hmac-drbg: 1.0.1
+ inherits: 2.0.4
+ minimalistic-assert: 1.0.1
+ minimalistic-crypto-utils: 1.0.1
+
+ emoji-regex@8.0.0: {}
+
+ emoji-regex@9.2.2: {}
+
+ empathic@2.0.1: {}
+
+ entities@2.2.0: {}
+
+ entities@4.5.0: {}
+
+ entities@6.0.1: {}
+
+ error-ex@1.3.4:
+ dependencies:
+ is-arrayish: 0.2.1
+
+ es-define-property@1.0.1: {}
+
+ es-errors@1.3.0: {}
+
+ es-module-lexer@2.2.0: {}
+
+ es-object-atoms@1.1.1:
+ dependencies:
+ es-errors: 1.3.0
+
+ esbuild@0.28.1:
+ optionalDependencies:
+ '@esbuild/aix-ppc64': 0.28.1
+ '@esbuild/android-arm': 0.28.1
+ '@esbuild/android-arm64': 0.28.1
+ '@esbuild/android-x64': 0.28.1
+ '@esbuild/darwin-arm64': 0.28.1
+ '@esbuild/darwin-x64': 0.28.1
+ '@esbuild/freebsd-arm64': 0.28.1
+ '@esbuild/freebsd-x64': 0.28.1
+ '@esbuild/linux-arm': 0.28.1
+ '@esbuild/linux-arm64': 0.28.1
+ '@esbuild/linux-ia32': 0.28.1
+ '@esbuild/linux-loong64': 0.28.1
+ '@esbuild/linux-mips64el': 0.28.1
+ '@esbuild/linux-ppc64': 0.28.1
+ '@esbuild/linux-riscv64': 0.28.1
+ '@esbuild/linux-s390x': 0.28.1
+ '@esbuild/linux-x64': 0.28.1
+ '@esbuild/netbsd-arm64': 0.28.1
+ '@esbuild/netbsd-x64': 0.28.1
+ '@esbuild/openbsd-arm64': 0.28.1
+ '@esbuild/openbsd-x64': 0.28.1
+ '@esbuild/openharmony-arm64': 0.28.1
+ '@esbuild/sunos-x64': 0.28.1
+ '@esbuild/win32-arm64': 0.28.1
+ '@esbuild/win32-ia32': 0.28.1
+ '@esbuild/win32-x64': 0.28.1
+
+ escalade@3.2.0: {}
+
+ escape-string-regexp@4.0.0: {}
+
+ eslint-plugin-storybook@10.4.6(eslint@8.57.1)(storybook@10.4.6(@testing-library/dom@10.4.1)(@types/react@19.2.17)(prettier@3.8.3)(react@19.2.7))(typescript@5.9.3):
+ dependencies:
+ '@typescript-eslint/utils': 8.62.0(eslint@8.57.1)(typescript@5.9.3)
+ eslint: 8.57.1
+ storybook: 10.4.6(@testing-library/dom@10.4.1)(@types/react@19.2.17)(prettier@3.8.3)(react@19.2.7)
+ transitivePeerDependencies:
+ - supports-color
+ - typescript
+
+ eslint-scope@7.2.2:
+ dependencies:
+ esrecurse: 4.3.0
+ estraverse: 5.3.0
+
+ eslint-visitor-keys@3.4.3: {}
+
+ eslint-visitor-keys@5.0.1: {}
+
+ eslint@8.57.1:
+ dependencies:
+ '@eslint-community/eslint-utils': 4.10.1(eslint@8.57.1)
+ '@eslint-community/regexpp': 4.12.2
+ '@eslint/eslintrc': 2.1.4
+ '@eslint/js': 8.57.1
+ '@humanwhocodes/config-array': 0.13.0
+ '@humanwhocodes/module-importer': 1.0.1
+ '@nodelib/fs.walk': 1.2.8
+ '@ungap/structured-clone': 1.3.3
+ ajv: 6.15.0
+ chalk: 4.1.2
+ cross-spawn: 7.0.6
+ debug: 4.4.3
+ doctrine: 3.0.0
+ escape-string-regexp: 4.0.0
+ eslint-scope: 7.2.2
+ eslint-visitor-keys: 3.4.3
+ espree: 9.6.1
+ esquery: 1.7.0
+ esutils: 2.0.3
+ fast-deep-equal: 3.1.3
+ file-entry-cache: 6.0.1
+ find-up: 5.0.0
+ glob-parent: 6.0.2
+ globals: 13.24.0
+ graphemer: 1.4.0
+ ignore: 5.3.2
+ imurmurhash: 0.1.4
+ is-glob: 4.0.3
+ is-path-inside: 3.0.3
+ js-yaml: 4.3.0
+ json-stable-stringify-without-jsonify: 1.0.1
+ levn: 0.4.1
+ lodash.merge: 4.6.2
+ minimatch: 10.2.6
+ natural-compare: 1.4.0
+ optionator: 0.9.4
+ strip-ansi: 6.0.1
+ text-table: 0.2.0
+ transitivePeerDependencies:
+ - supports-color
+
+ espree@9.6.1:
+ dependencies:
+ acorn: 8.18.0
+ acorn-jsx: 5.3.2(acorn@8.18.0)
+ eslint-visitor-keys: 3.4.3
+
+ esprima@4.0.1: {}
+
+ esquery@1.7.0:
+ dependencies:
+ estraverse: 5.3.0
+
+ esrecurse@4.3.0:
+ dependencies:
+ estraverse: 5.3.0
+
+ estraverse@5.3.0: {}
+
+ estree-walker@2.0.2: {}
+
+ estree-walker@3.0.3:
+ dependencies:
+ '@types/estree': 1.0.9
+
+ esutils@2.0.3: {}
+
+ events@3.3.0: {}
+
+ evp_bytestokey@1.0.3:
+ dependencies:
+ md5.js: 1.3.5
+ safe-buffer: 5.2.1
+
+ execa@9.6.1:
+ dependencies:
+ '@sindresorhus/merge-streams': 4.0.0
+ cross-spawn: 7.0.6
+ figures: 6.1.0
+ get-stream: 9.0.1
+ human-signals: 8.0.1
+ is-plain-obj: 4.1.0
+ is-stream: 4.0.1
+ npm-run-path: 6.0.0
+ pretty-ms: 9.3.0
+ signal-exit: 4.1.0
+ strip-final-newline: 4.0.0
+ yoctocolors: 2.1.2
+
+ expect-type@1.4.0: {}
+
+ fast-deep-equal@3.1.3: {}
+
+ fast-glob@3.3.3:
+ dependencies:
+ '@nodelib/fs.stat': 2.0.5
+ '@nodelib/fs.walk': 1.2.8
+ glob-parent: 5.1.2
+ merge2: 1.4.1
+ micromatch: 4.0.8
+
+ fast-json-stable-stringify@2.1.0: {}
+
+ fast-levenshtein@2.0.6: {}
+
+ fast-string-truncated-width@3.0.3: {}
+
+ fast-string-width@3.0.2:
+ dependencies:
+ fast-string-truncated-width: 3.0.3
+
+ fast-wrap-ansi@0.2.2:
+ dependencies:
+ fast-string-width: 3.0.2
+
+ fastq@1.20.1:
+ dependencies:
+ reusify: 1.1.0
+
+ fd-package-json@2.0.0:
+ dependencies:
+ walk-up-path: 4.0.0
+
+ fdir@6.5.0(picomatch@4.0.4):
+ optionalDependencies:
+ picomatch: 4.0.4
+
+ fetch-mock@11.1.5:
+ dependencies:
+ '@types/glob-to-regexp': 0.4.4
+ dequal: 2.0.3
+ glob-to-regexp: 0.4.1
+ is-subset: 0.1.1
+ regexparam: 3.0.0
+
+ fflate@0.4.8: {}
+
+ fflate@0.8.2: {}
+
+ figures@6.1.0:
+ dependencies:
+ is-unicode-supported: 2.1.0
+
+ file-entry-cache@6.0.1:
+ dependencies:
+ flat-cache: 3.2.0
+
+ filelist@1.0.6:
+ dependencies:
+ minimatch: 10.2.5
+
+ fill-range@7.1.1:
+ dependencies:
+ to-regex-range: 5.0.1
+
+ find-up@4.1.0:
+ dependencies:
+ locate-path: 5.0.0
+ path-exists: 4.0.0
+
+ find-up@5.0.0:
+ dependencies:
+ locate-path: 6.0.0
+ path-exists: 4.0.0
+
+ flat-cache@3.2.0:
+ dependencies:
+ flatted: 3.4.3
+ keyv: 4.5.4
+ rimraf: 3.0.2
+
+ flatted@3.4.2: {}
+
+ flatted@3.4.3: {}
+
+ for-each@0.3.5:
+ dependencies:
+ is-callable: 1.2.7
+
+ foreground-child@3.3.1:
+ dependencies:
+ cross-spawn: 7.0.6
+ signal-exit: 4.1.0
+
+ formatly@0.3.0:
+ dependencies:
+ fd-package-json: 2.0.0
+
+ fraction.js@5.3.4: {}
+
+ fs-extra@10.1.0:
+ dependencies:
+ graceful-fs: 4.2.11
+ jsonfile: 6.2.0
+ universalify: 2.0.1
+
+ fsevents@2.3.2:
+ optional: true
+
+ fsevents@2.3.3:
+ optional: true
+
+ function-bind@1.1.2: {}
+
+ generator-function@2.0.1: {}
+
+ gensync@1.0.0-beta.2: {}
+
+ get-caller-file@2.0.5: {}
+
+ get-east-asian-width@1.6.0: {}
+
+ get-intrinsic@1.3.0:
+ dependencies:
+ call-bind-apply-helpers: 1.0.2
+ es-define-property: 1.0.1
+ es-errors: 1.3.0
+ es-object-atoms: 1.1.1
+ function-bind: 1.1.2
+ get-proto: 1.0.1
+ gopd: 1.2.0
+ has-symbols: 1.1.0
+ hasown: 2.0.4
+ math-intrinsics: 1.1.0
+
+ get-nonce@1.0.1: {}
+
+ get-proto@1.0.1:
+ dependencies:
+ dunder-proto: 1.0.1
+ es-object-atoms: 1.1.1
+
+ get-stream@9.0.1:
+ dependencies:
+ '@sec-ant/readable-stream': 0.4.1
+ is-stream: 4.0.1
+
+ glob-parent@5.1.2:
+ dependencies:
+ is-glob: 4.0.3
+
+ glob-parent@6.0.2:
+ dependencies:
+ is-glob: 4.0.3
+
+ glob-to-regexp@0.4.1: {}
+
+ glob@10.5.0:
+ dependencies:
+ foreground-child: 3.3.1
+ jackspeak: 3.4.3
+ minimatch: 10.2.5
+ minipass: 7.1.3
+ package-json-from-dist: 1.0.1
+ path-scurry: 1.11.1
+
+ globals@13.24.0:
+ dependencies:
+ type-fest: 0.20.2
+
+ gopd@1.2.0: {}
+
+ graceful-fs@4.2.11: {}
+
+ graphemer@1.4.0: {}
+
+ has-flag@4.0.0: {}
+
+ has-property-descriptors@1.0.2:
+ dependencies:
+ es-define-property: 1.0.1
+
+ has-symbols@1.1.0: {}
+
+ has-tostringtag@1.0.2:
+ dependencies:
+ has-symbols: 1.1.0
+
+ hash-base@3.0.5:
+ dependencies:
+ inherits: 2.0.4
+ safe-buffer: 5.2.1
+
+ hash-base@3.1.2:
+ dependencies:
+ inherits: 2.0.4
+ readable-stream: 2.3.8
+ safe-buffer: 5.2.1
+ to-buffer: 1.2.2
+
+ hash.js@1.1.7:
+ dependencies:
+ inherits: 2.0.4
+ minimalistic-assert: 1.0.1
+
+ hasown@2.0.4:
+ dependencies:
+ function-bind: 1.1.2
+
+ he@1.2.0: {}
+
+ hmac-drbg@1.0.1:
+ dependencies:
+ hash.js: 1.1.7
+ minimalistic-assert: 1.0.1
+ minimalistic-crypto-utils: 1.0.1
+
+ hoist-non-react-statics@3.3.2:
+ dependencies:
+ react-is: 16.13.1
+
+ html-encoding-sniffer@4.0.0:
+ dependencies:
+ whatwg-encoding: 3.1.1
+
+ html-escaper@2.0.2: {}
+
+ html-minifier-terser@6.1.0:
+ dependencies:
+ camel-case: 4.1.2
+ clean-css: 5.3.3
+ commander: 8.3.0
+ he: 1.2.0
+ param-case: 3.0.4
+ relateurl: 0.2.7
+ terser: 5.46.1
+
+ html-parse-stringify@3.0.1:
+ dependencies:
+ void-elements: 3.1.0
+
+ http-proxy-agent@7.0.2:
+ dependencies:
+ agent-base: 7.1.4
+ debug: 4.4.3
+ transitivePeerDependencies:
+ - supports-color
+
+ https-browserify@1.0.0: {}
+
+ https-proxy-agent@5.0.1:
+ dependencies:
+ agent-base: 6.0.2
+ debug: 4.4.3
+ transitivePeerDependencies:
+ - supports-color
+
+ https-proxy-agent@7.0.6:
+ dependencies:
+ agent-base: 7.1.4
+ debug: 4.4.3
+ transitivePeerDependencies:
+ - supports-color
+
+ human-signals@8.0.1: {}
+
+ i18next-browser-languagedetector@8.2.1:
+ dependencies:
+ '@babel/runtime': 7.29.2
+
+ i18next-cli@1.64.2(@types/node@24.13.2)(react-dom@19.2.7(react@19.2.7))(typescript@5.9.3):
+ dependencies:
+ '@croct/json5-parser': 0.2.2
+ '@swc/core': 1.15.43
+ chokidar: 5.0.0
+ commander: 14.0.3
+ execa: 9.6.1
+ glob: 10.5.0
+ i18next: 26.3.3(typescript@5.9.3)
+ i18next-resources-for-ts: 2.1.0
+ inquirer: 14.0.2(@types/node@24.13.2)
+ jiti: 2.7.0
+ jsonc-parser: 3.3.1
+ magic-string: 0.30.21
+ minimatch: 10.2.5
+ ora: 9.4.1
+ react: 19.2.7
+ react-i18next: 17.0.8(i18next@26.3.3(typescript@5.9.3))(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(typescript@5.9.3)
+ yaml: 2.9.0
+ transitivePeerDependencies:
+ - '@swc/helpers'
+ - '@types/node'
+ - react-dom
+ - react-native
+ - typescript
+
+ i18next-resources-for-ts@2.1.0:
+ dependencies:
+ '@babel/runtime': 7.29.7
+ '@swc/core': 1.15.43
+ chokidar: 5.0.0
+ yaml: 2.9.0
+ transitivePeerDependencies:
+ - '@swc/helpers'
+
+ i18next@25.10.10(typescript@5.9.3):
+ dependencies:
+ '@babel/runtime': 7.29.2
+ optionalDependencies:
+ typescript: 5.9.3
+
+ i18next@26.3.3(typescript@5.9.3):
+ optionalDependencies:
+ typescript: 5.9.3
+
+ iconv-lite@0.6.3:
+ dependencies:
+ safer-buffer: 2.1.2
+
+ iconv-lite@0.7.2:
+ dependencies:
+ safer-buffer: 2.1.2
+
+ ieee754@1.2.1: {}
+
+ ignore@5.3.2: {}
+
+ immutable@5.1.9: {}
+
+ import-fresh@3.3.1:
+ dependencies:
+ parent-module: 1.0.1
+ resolve-from: 4.0.0
+
+ imurmurhash@0.1.4: {}
+
+ indent-string@4.0.0: {}
+
+ inherits@2.0.4: {}
+
+ inquirer@14.0.2(@types/node@24.13.2):
+ dependencies:
+ '@inquirer/ansi': 2.0.7
+ '@inquirer/core': 11.2.1(@types/node@24.13.2)
+ '@inquirer/prompts': 8.5.2(@types/node@24.13.2)
+ '@inquirer/type': 4.0.7(@types/node@24.13.2)
+ mute-stream: 3.0.0
+ run-async: 4.0.6
+ optionalDependencies:
+ '@types/node': 24.13.2
+
+ is-arguments@1.2.0:
+ dependencies:
+ call-bound: 1.0.4
+ has-tostringtag: 1.0.2
+
+ is-arrayish@0.2.1: {}
+
+ is-binary-path@2.1.0:
+ dependencies:
+ binary-extensions: 2.3.0
+
+ is-callable@1.2.7: {}
+
+ is-core-module@2.16.2:
+ dependencies:
+ hasown: 2.0.4
+
+ is-docker@3.0.0: {}
+
+ is-extglob@2.1.1: {}
+
+ is-fullwidth-code-point@3.0.0: {}
+
+ is-generator-function@1.1.2:
+ dependencies:
+ call-bound: 1.0.4
+ generator-function: 2.0.1
+ get-proto: 1.0.1
+ has-tostringtag: 1.0.2
+ safe-regex-test: 1.1.0
+
+ is-glob@4.0.3:
+ dependencies:
+ is-extglob: 2.1.1
+
+ is-inside-container@1.0.0:
+ dependencies:
+ is-docker: 3.0.0
+
+ is-interactive@2.0.0: {}
+
+ is-nan@1.3.2:
+ dependencies:
+ call-bind: 1.0.9
+ define-properties: 1.2.1
+
+ is-network-error@1.3.1: {}
+
+ is-number@7.0.0: {}
+
+ is-path-inside@3.0.3: {}
+
+ is-plain-obj@4.1.0: {}
+
+ is-potential-custom-element-name@1.0.1: {}
+
+ is-regex@1.2.1:
+ dependencies:
+ call-bound: 1.0.4
+ gopd: 1.2.0
+ has-tostringtag: 1.0.2
+ hasown: 2.0.4
+
+ is-stream@4.0.1: {}
+
+ is-subset@0.1.1: {}
+
+ is-typed-array@1.1.15:
+ dependencies:
+ which-typed-array: 1.1.20
+
+ is-unicode-supported@2.1.0: {}
+
+ is-wsl@3.1.1:
+ dependencies:
+ is-inside-container: 1.0.0
+
+ isarray@1.0.0: {}
+
+ isarray@2.0.5: {}
+
+ isexe@2.0.0: {}
+
+ isomorphic-timers-promises@1.0.1: {}
+
+ istanbul-lib-coverage@3.2.2: {}
+
+ istanbul-lib-report@3.0.1:
+ dependencies:
+ istanbul-lib-coverage: 3.2.2
+ make-dir: 4.0.0
+ supports-color: 7.2.0
+
+ istanbul-reports@3.2.0:
+ dependencies:
+ html-escaper: 2.0.2
+ istanbul-lib-report: 3.0.1
+
+ jackspeak@3.4.3:
+ dependencies:
+ '@isaacs/cliui': 8.0.2
+ optionalDependencies:
+ '@pkgjs/parseargs': 0.11.0
+
+ jake@10.9.4:
+ dependencies:
+ async: 3.2.6
+ filelist: 1.0.6
+ picocolors: 1.1.1
+
+ jiti@2.6.1: {}
+
+ jiti@2.7.0: {}
+
+ jose@6.2.3: {}
+
+ jose@6.2.4: {}
+
+ js-tokens@10.0.0: {}
+
+ js-tokens@4.0.0: {}
+
+ js-yaml@4.3.0:
+ dependencies:
+ argparse: 2.0.1
+
+ jsdom@26.1.0:
+ dependencies:
+ cssstyle: 4.6.0
+ data-urls: 5.0.0
+ decimal.js: 10.6.0
+ html-encoding-sniffer: 4.0.0
+ http-proxy-agent: 7.0.2
+ https-proxy-agent: 7.0.6
+ is-potential-custom-element-name: 1.0.1
+ nwsapi: 2.2.23
+ parse5: 7.3.0
+ rrweb-cssom: 0.8.0
+ saxes: 6.0.0
+ symbol-tree: 3.2.4
+ tough-cookie: 5.1.2
+ w3c-xmlserializer: 5.0.0
+ webidl-conversions: 7.0.0
+ whatwg-encoding: 3.1.1
+ whatwg-mimetype: 4.0.0
+ whatwg-url: 14.2.0
+ ws: 8.21.0
+ xml-name-validator: 5.0.0
+ transitivePeerDependencies:
+ - bufferutil
+ - supports-color
+ - utf-8-validate
+
+ jsesc@3.1.0: {}
+
+ json-buffer@3.0.1: {}
+
+ json-parse-even-better-errors@2.3.1: {}
+
+ json-schema-traverse@0.4.1: {}
+
+ json-stable-stringify-without-jsonify@1.0.1: {}
+
+ json5@2.2.3: {}
+
+ jsonc-parser@3.3.1: {}
+
+ jsonfile@6.2.0:
+ dependencies:
+ universalify: 2.0.1
+ optionalDependencies:
+ graceful-fs: 4.2.11
+
+ jwt-decode@4.0.0: {}
+
+ keyv@4.5.4:
+ dependencies:
+ json-buffer: 3.0.1
+
+ knip@5.88.1(@emnapi/core@1.11.1)(@emnapi/runtime@1.11.1)(@types/node@24.13.2)(typescript@5.9.3):
+ dependencies:
+ '@nodelib/fs.walk': 1.2.8
+ '@types/node': 24.13.2
+ fast-glob: 3.3.3
+ formatly: 0.3.0
+ jiti: 2.6.1
+ minimist: 1.2.8
+ oxc-resolver: 11.19.1(@emnapi/core@1.11.1)(@emnapi/runtime@1.11.1)
+ picocolors: 1.1.1
+ picomatch: 4.0.4
+ smol-toml: 1.6.1
+ strip-json-comments: 5.0.3
+ typescript: 5.9.3
+ unbash: 2.2.0
+ yaml: 2.8.3
+ zod: 4.3.6
+ transitivePeerDependencies:
+ - '@emnapi/core'
+ - '@emnapi/runtime'
+
+ levn@0.4.1:
+ dependencies:
+ prelude-ls: 1.2.1
+ type-check: 0.4.0
+
+ lightningcss-android-arm64@1.32.0:
+ optional: true
+
+ lightningcss-darwin-arm64@1.32.0:
+ optional: true
+
+ lightningcss-darwin-x64@1.32.0:
+ optional: true
+
+ lightningcss-freebsd-x64@1.32.0:
+ optional: true
+
+ lightningcss-linux-arm-gnueabihf@1.32.0:
+ optional: true
+
+ lightningcss-linux-arm64-gnu@1.32.0:
+ optional: true
+
+ lightningcss-linux-arm64-musl@1.32.0:
+ optional: true
+
+ lightningcss-linux-x64-gnu@1.32.0:
+ optional: true
+
+ lightningcss-linux-x64-musl@1.32.0:
+ optional: true
+
+ lightningcss-win32-arm64-msvc@1.32.0:
+ optional: true
+
+ lightningcss-win32-x64-msvc@1.32.0:
+ optional: true
+
+ lightningcss@1.32.0:
+ dependencies:
+ detect-libc: 2.1.2
+ optionalDependencies:
+ lightningcss-android-arm64: 1.32.0
+ lightningcss-darwin-arm64: 1.32.0
+ lightningcss-darwin-x64: 1.32.0
+ lightningcss-freebsd-x64: 1.32.0
+ lightningcss-linux-arm-gnueabihf: 1.32.0
+ lightningcss-linux-arm64-gnu: 1.32.0
+ lightningcss-linux-arm64-musl: 1.32.0
+ lightningcss-linux-x64-gnu: 1.32.0
+ lightningcss-linux-x64-musl: 1.32.0
+ lightningcss-win32-arm64-msvc: 1.32.0
+ lightningcss-win32-x64-msvc: 1.32.0
+
+ lines-and-columns@1.2.4: {}
+
+ livekit-client@2.21.0(@types/dom-mediacapture-record@1.0.22):
+ dependencies:
+ '@livekit/mutex': 1.1.1
+ '@livekit/protocol': 1.50.4
+ '@types/dom-mediacapture-record': 1.0.22
+ events: 3.3.0
+ jose: 6.2.4
+ loglevel: 1.9.2
+ sdp-transform: 2.15.0
+ tslib: 2.8.1
+ typed-emitter: 2.1.0
+ webrtc-adapter: 9.0.6
+
+ locate-path@5.0.0:
+ dependencies:
+ p-locate: 4.1.0
+
+ locate-path@6.0.0:
+ dependencies:
+ p-locate: 5.0.0
+
+ lodash-es@4.18.1: {}
+
+ lodash.debounce@4.0.8: {}
+
+ lodash.merge@4.6.2: {}
+
+ log-symbols@7.0.1:
+ dependencies:
+ is-unicode-supported: 2.1.0
+ yoctocolors: 2.1.2
+
+ loglevel@1.9.1: {}
+
+ loglevel@1.9.2: {}
+
+ long@5.3.2: {}
+
+ loupe@3.2.1: {}
+
+ lower-case@2.0.2:
+ dependencies:
+ tslib: 2.8.1
+
+ lru-cache@10.4.3: {}
+
+ lru-cache@5.1.1:
+ dependencies:
+ yallist: 3.1.1
+
+ lz-string@1.5.0: {}
+
+ magic-string@0.30.21:
+ dependencies:
+ '@jridgewell/sourcemap-codec': 1.5.5
+
+ magic-string@0.30.8:
+ dependencies:
+ '@jridgewell/sourcemap-codec': 1.5.5
+
+ magicast@0.5.3:
+ dependencies:
+ '@babel/parser': 7.29.7
+ '@babel/types': 7.29.7
+ source-map-js: 1.2.1
+
+ make-dir@4.0.0:
+ dependencies:
+ semver: 7.8.5
+
+ math-intrinsics@1.1.0: {}
+
+ matrix-events-sdk@0.0.1: {}
+
+ matrix-js-sdk@https://codeload.github.com/matrix-org/matrix-js-sdk/tar.gz/8c95727b6278fe7942c20d0b9485f984dd0694b7:
+ dependencies:
+ '@babel/runtime': 7.29.2
+ '@matrix-org/matrix-sdk-crypto-wasm': 18.3.1
+ another-json: 0.2.0
+ bs58: 6.0.0
+ content-type: 2.0.0
+ jwt-decode: 4.0.0
+ loglevel: 1.9.2
+ matrix-events-sdk: 0.0.1
+ matrix-widget-api: 1.17.0
+ oidc-client-ts: 3.5.0
+ p-retry: 8.0.0
+ sdp-transform: 3.0.0
+ unhomoglyph: 1.0.6
+
+ matrix-widget-api@1.17.0:
+ dependencies:
+ '@types/events': 3.0.3
+ events: 3.3.0
+
+ md5.js@1.3.5:
+ dependencies:
+ hash-base: 3.0.5
+ inherits: 2.0.4
+ safe-buffer: 5.2.1
+
+ merge2@1.4.1: {}
+
+ micromatch@4.0.8:
+ dependencies:
+ braces: 3.0.3
+ picomatch: 2.3.2
+
+ miller-rabin@4.0.1:
+ dependencies:
+ bn.js: 4.12.3
+ brorand: 1.1.0
+
+ mime-db@1.52.0: {}
+
+ mime-types@2.1.35:
+ dependencies:
+ mime-db: 1.52.0
+
+ mimic-function@5.0.1: {}
+
+ min-indent@1.0.1: {}
+
+ minimalistic-assert@1.0.1: {}
+
+ minimalistic-crypto-utils@1.0.1: {}
+
+ minimatch@10.2.5:
+ dependencies:
+ brace-expansion: 5.0.7
+
+ minimatch@10.2.6:
+ dependencies:
+ brace-expansion: 5.0.8
+
+ minimist@1.2.8: {}
+
+ minipass@7.1.3: {}
+
+ mrmime@2.0.1: {}
+
+ ms@2.1.3: {}
+
+ mute-stream@3.0.0: {}
+
+ nanoid@3.3.16: {}
+
+ natural-compare@1.4.0: {}
+
+ no-case@3.0.4:
+ dependencies:
+ lower-case: 2.0.2
+ tslib: 2.8.1
+
+ node-addon-api@7.1.1:
+ optional: true
+
+ node-fetch@2.7.0:
+ dependencies:
+ whatwg-url: 5.0.0
+
+ node-html-parser@5.4.2:
+ dependencies:
+ css-select: 4.3.0
+ he: 1.2.0
+
+ node-releases@2.0.37: {}
+
+ node-stdlib-browser@1.3.1:
+ dependencies:
+ assert: 2.1.0
+ browser-resolve: 2.0.0
+ browserify-zlib: 0.2.0
+ buffer: 5.7.1
+ console-browserify: 1.2.0
+ constants-browserify: 1.0.0
+ create-require: 1.1.1
+ crypto-browserify: 3.12.1
+ domain-browser: 4.22.0
+ events: 3.3.0
+ https-browserify: 1.0.0
+ isomorphic-timers-promises: 1.0.1
+ os-browserify: 0.3.0
+ path-browserify: 1.0.1
+ pkg-dir: 5.0.0
+ process: 0.11.10
+ punycode: 1.4.1
+ querystring-es3: 0.2.1
+ readable-stream: 3.6.2
+ stream-browserify: 3.0.0
+ stream-http: 3.2.0
+ string_decoder: 1.3.0
+ timers-browserify: 2.0.12
+ tty-browserify: 0.0.1
+ url: 0.11.4
+ util: 0.12.5
+ vm-browserify: 1.1.2
+
+ normalize-path@3.0.0: {}
+
+ normalize.css@8.0.1: {}
+
+ npm-run-path@6.0.0:
+ dependencies:
+ path-key: 4.0.0
+ unicorn-magic: 0.3.0
+
+ nth-check@2.1.1:
+ dependencies:
+ boolbase: 1.0.0
+
+ nwsapi@2.2.23: {}
+
+ object-inspect@1.13.4: {}
+
+ object-is@1.1.6:
+ dependencies:
+ call-bind: 1.0.9
+ define-properties: 1.2.1
+
+ object-keys@1.1.1: {}
+
+ object.assign@4.1.7:
+ dependencies:
+ call-bind: 1.0.9
+ call-bound: 1.0.4
+ define-properties: 1.2.1
+ es-object-atoms: 1.1.1
+ has-symbols: 1.1.0
+ object-keys: 1.1.1
+
+ observable-hooks@4.2.4(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(rxjs@7.8.2):
+ dependencies:
+ react: 19.2.7
+ react-dom: 19.2.7(react@19.2.7)
+ rxjs: 7.8.2
+
+ obug@2.1.3: {}
+
+ oidc-client-ts@3.5.0:
+ dependencies:
+ jwt-decode: 4.0.0
+
+ once@1.4.0:
+ dependencies:
+ wrappy: 1.0.2
+
+ onetime@7.0.0:
+ dependencies:
+ mimic-function: 5.0.1
+
+ open@10.2.0:
+ dependencies:
+ default-browser: 5.5.0
+ define-lazy-prop: 3.0.0
+ is-inside-container: 1.0.0
+ wsl-utils: 0.1.0
+
+ optionator@0.9.4:
+ dependencies:
+ deep-is: 0.1.4
+ fast-levenshtein: 2.0.6
+ levn: 0.4.1
+ prelude-ls: 1.2.1
+ type-check: 0.4.0
+ word-wrap: 1.2.5
+
+ ora@9.4.1:
+ dependencies:
+ chalk: 5.6.2
+ cli-cursor: 5.0.0
+ cli-spinners: 3.4.0
+ is-interactive: 2.0.0
+ is-unicode-supported: 2.1.0
+ log-symbols: 7.0.1
+ stdin-discarder: 0.3.2
+ string-width: 8.2.1
+
+ os-browserify@0.3.0: {}
+
+ oxc-parser@0.127.0:
+ dependencies:
+ '@oxc-project/types': 0.127.0
+ optionalDependencies:
+ '@oxc-parser/binding-android-arm-eabi': 0.127.0
+ '@oxc-parser/binding-android-arm64': 0.127.0
+ '@oxc-parser/binding-darwin-arm64': 0.127.0
+ '@oxc-parser/binding-darwin-x64': 0.127.0
+ '@oxc-parser/binding-freebsd-x64': 0.127.0
+ '@oxc-parser/binding-linux-arm-gnueabihf': 0.127.0
+ '@oxc-parser/binding-linux-arm-musleabihf': 0.127.0
+ '@oxc-parser/binding-linux-arm64-gnu': 0.127.0
+ '@oxc-parser/binding-linux-arm64-musl': 0.127.0
+ '@oxc-parser/binding-linux-ppc64-gnu': 0.127.0
+ '@oxc-parser/binding-linux-riscv64-gnu': 0.127.0
+ '@oxc-parser/binding-linux-riscv64-musl': 0.127.0
+ '@oxc-parser/binding-linux-s390x-gnu': 0.127.0
+ '@oxc-parser/binding-linux-x64-gnu': 0.127.0
+ '@oxc-parser/binding-linux-x64-musl': 0.127.0
+ '@oxc-parser/binding-openharmony-arm64': 0.127.0
+ '@oxc-parser/binding-wasm32-wasi': 0.127.0
+ '@oxc-parser/binding-win32-arm64-msvc': 0.127.0
+ '@oxc-parser/binding-win32-ia32-msvc': 0.127.0
+ '@oxc-parser/binding-win32-x64-msvc': 0.127.0
+
+ oxc-resolver@11.19.1(@emnapi/core@1.11.1)(@emnapi/runtime@1.11.1):
+ optionalDependencies:
+ '@oxc-resolver/binding-android-arm-eabi': 11.19.1
+ '@oxc-resolver/binding-android-arm64': 11.19.1
+ '@oxc-resolver/binding-darwin-arm64': 11.19.1
+ '@oxc-resolver/binding-darwin-x64': 11.19.1
+ '@oxc-resolver/binding-freebsd-x64': 11.19.1
+ '@oxc-resolver/binding-linux-arm-gnueabihf': 11.19.1
+ '@oxc-resolver/binding-linux-arm-musleabihf': 11.19.1
+ '@oxc-resolver/binding-linux-arm64-gnu': 11.19.1
+ '@oxc-resolver/binding-linux-arm64-musl': 11.19.1
+ '@oxc-resolver/binding-linux-ppc64-gnu': 11.19.1
+ '@oxc-resolver/binding-linux-riscv64-gnu': 11.19.1
+ '@oxc-resolver/binding-linux-riscv64-musl': 11.19.1
+ '@oxc-resolver/binding-linux-s390x-gnu': 11.19.1
+ '@oxc-resolver/binding-linux-x64-gnu': 11.19.1
+ '@oxc-resolver/binding-linux-x64-musl': 11.19.1
+ '@oxc-resolver/binding-openharmony-arm64': 11.19.1
+ '@oxc-resolver/binding-wasm32-wasi': 11.19.1(@emnapi/core@1.11.1)(@emnapi/runtime@1.11.1)
+ '@oxc-resolver/binding-win32-arm64-msvc': 11.19.1
+ '@oxc-resolver/binding-win32-ia32-msvc': 11.19.1
+ '@oxc-resolver/binding-win32-x64-msvc': 11.19.1
+ transitivePeerDependencies:
+ - '@emnapi/core'
+ - '@emnapi/runtime'
+
+ oxc-resolver@11.21.3:
+ optionalDependencies:
+ '@oxc-resolver/binding-android-arm-eabi': 11.21.3
+ '@oxc-resolver/binding-android-arm64': 11.21.3
+ '@oxc-resolver/binding-darwin-arm64': 11.21.3
+ '@oxc-resolver/binding-darwin-x64': 11.21.3
+ '@oxc-resolver/binding-freebsd-x64': 11.21.3
+ '@oxc-resolver/binding-linux-arm-gnueabihf': 11.21.3
+ '@oxc-resolver/binding-linux-arm-musleabihf': 11.21.3
+ '@oxc-resolver/binding-linux-arm64-gnu': 11.21.3
+ '@oxc-resolver/binding-linux-arm64-musl': 11.21.3
+ '@oxc-resolver/binding-linux-ppc64-gnu': 11.21.3
+ '@oxc-resolver/binding-linux-riscv64-gnu': 11.21.3
+ '@oxc-resolver/binding-linux-riscv64-musl': 11.21.3
+ '@oxc-resolver/binding-linux-s390x-gnu': 11.21.3
+ '@oxc-resolver/binding-linux-x64-gnu': 11.21.3
+ '@oxc-resolver/binding-linux-x64-musl': 11.21.3
+ '@oxc-resolver/binding-openharmony-arm64': 11.21.3
+ '@oxc-resolver/binding-wasm32-wasi': 11.21.3
+ '@oxc-resolver/binding-win32-arm64-msvc': 11.21.3
+ '@oxc-resolver/binding-win32-x64-msvc': 11.21.3
+
+ oxfmt@0.56.0:
+ dependencies:
+ tinypool: 2.1.0
+ optionalDependencies:
+ '@oxfmt/binding-android-arm-eabi': 0.56.0
+ '@oxfmt/binding-android-arm64': 0.56.0
+ '@oxfmt/binding-darwin-arm64': 0.56.0
+ '@oxfmt/binding-darwin-x64': 0.56.0
+ '@oxfmt/binding-freebsd-x64': 0.56.0
+ '@oxfmt/binding-linux-arm-gnueabihf': 0.56.0
+ '@oxfmt/binding-linux-arm-musleabihf': 0.56.0
+ '@oxfmt/binding-linux-arm64-gnu': 0.56.0
+ '@oxfmt/binding-linux-arm64-musl': 0.56.0
+ '@oxfmt/binding-linux-ppc64-gnu': 0.56.0
+ '@oxfmt/binding-linux-riscv64-gnu': 0.56.0
+ '@oxfmt/binding-linux-riscv64-musl': 0.56.0
+ '@oxfmt/binding-linux-s390x-gnu': 0.56.0
+ '@oxfmt/binding-linux-x64-gnu': 0.56.0
+ '@oxfmt/binding-linux-x64-musl': 0.56.0
+ '@oxfmt/binding-openharmony-arm64': 0.56.0
+ '@oxfmt/binding-win32-arm64-msvc': 0.56.0
+ '@oxfmt/binding-win32-ia32-msvc': 0.56.0
+ '@oxfmt/binding-win32-x64-msvc': 0.56.0
+
+ oxlint-tsgolint@0.23.0:
+ optionalDependencies:
+ '@oxlint-tsgolint/darwin-arm64': 0.23.0
+ '@oxlint-tsgolint/darwin-x64': 0.23.0
+ '@oxlint-tsgolint/linux-arm64': 0.23.0
+ '@oxlint-tsgolint/linux-x64': 0.23.0
+ '@oxlint-tsgolint/win32-arm64': 0.23.0
+ '@oxlint-tsgolint/win32-x64': 0.23.0
+
+ oxlint@1.71.0(oxlint-tsgolint@0.23.0):
+ optionalDependencies:
+ '@oxlint/binding-android-arm-eabi': 1.71.0
+ '@oxlint/binding-android-arm64': 1.71.0
+ '@oxlint/binding-darwin-arm64': 1.71.0
+ '@oxlint/binding-darwin-x64': 1.71.0
+ '@oxlint/binding-freebsd-x64': 1.71.0
+ '@oxlint/binding-linux-arm-gnueabihf': 1.71.0
+ '@oxlint/binding-linux-arm-musleabihf': 1.71.0
+ '@oxlint/binding-linux-arm64-gnu': 1.71.0
+ '@oxlint/binding-linux-arm64-musl': 1.71.0
+ '@oxlint/binding-linux-ppc64-gnu': 1.71.0
+ '@oxlint/binding-linux-riscv64-gnu': 1.71.0
+ '@oxlint/binding-linux-riscv64-musl': 1.71.0
+ '@oxlint/binding-linux-s390x-gnu': 1.71.0
+ '@oxlint/binding-linux-x64-gnu': 1.71.0
+ '@oxlint/binding-linux-x64-musl': 1.71.0
+ '@oxlint/binding-openharmony-arm64': 1.71.0
+ '@oxlint/binding-win32-arm64-msvc': 1.71.0
+ '@oxlint/binding-win32-ia32-msvc': 1.71.0
+ '@oxlint/binding-win32-x64-msvc': 1.71.0
+ oxlint-tsgolint: 0.23.0
+
+ p-limit@2.3.0:
+ dependencies:
+ p-try: 2.2.0
+
+ p-limit@3.1.0:
+ dependencies:
+ yocto-queue: 0.1.0
+
+ p-locate@4.1.0:
+ dependencies:
+ p-limit: 2.3.0
+
+ p-locate@5.0.0:
+ dependencies:
+ p-limit: 3.1.0
+
+ p-retry@8.0.0:
+ dependencies:
+ is-network-error: 1.3.1
+
+ p-try@2.2.0: {}
+
+ package-json-from-dist@1.0.1: {}
+
+ pako@1.0.11: {}
+
+ pako@2.2.0: {}
+
+ param-case@3.0.4:
+ dependencies:
+ dot-case: 3.0.4
+ tslib: 2.8.1
+
+ parent-module@1.0.1:
+ dependencies:
+ callsites: 3.1.0
+
+ parse-asn1@5.1.9:
+ dependencies:
+ asn1.js: 4.10.1
+ browserify-aes: 1.2.0
+ evp_bytestokey: 1.0.3
+ pbkdf2: 3.1.5
+ safe-buffer: 5.2.1
+
+ parse-json@5.2.0:
+ dependencies:
+ '@babel/code-frame': 7.29.7
+ error-ex: 1.3.4
+ json-parse-even-better-errors: 2.3.1
+ lines-and-columns: 1.2.4
+
+ parse-ms@4.0.0: {}
+
+ parse5@7.3.0:
+ dependencies:
+ entities: 6.0.1
+
+ pascal-case@3.1.2:
+ dependencies:
+ no-case: 3.0.4
+ tslib: 2.8.1
+
+ path-browserify@1.0.1: {}
+
+ path-exists@4.0.0: {}
+
+ path-key@3.1.1: {}
+
+ path-key@4.0.0: {}
+
+ path-parse@1.0.7: {}
+
+ path-scurry@1.11.1:
+ dependencies:
+ lru-cache: 10.4.3
+ minipass: 7.1.3
+
+ path-type@4.0.0: {}
+
+ pathe@0.2.0: {}
+
+ pathe@2.0.3: {}
+
+ pathval@2.0.1: {}
+
+ pbkdf2@3.1.5:
+ dependencies:
+ create-hash: 1.2.0
+ create-hmac: 1.1.7
+ ripemd160: 2.0.3
+ safe-buffer: 5.2.1
+ sha.js: 2.4.12
+ to-buffer: 1.2.2
+
+ picocolors@1.1.1: {}
+
+ picomatch@2.3.2: {}
+
+ picomatch@4.0.4: {}
+
+ pkg-dir@5.0.0:
+ dependencies:
+ find-up: 5.0.0
+
+ playwright-core@1.61.1: {}
+
+ playwright@1.61.1:
+ dependencies:
+ playwright-core: 1.61.1
+ optionalDependencies:
+ fsevents: 2.3.2
+
+ pngjs@5.0.0: {}
+
+ pngjs@7.0.0: {}
+
+ possible-typed-array-names@1.1.0: {}
+
+ postcss-attribute-case-insensitive@7.0.1(postcss@8.5.18):
+ dependencies:
+ postcss: 8.5.18
+ postcss-selector-parser: 7.1.1
+
+ postcss-clamp@4.1.0(postcss@8.5.18):
+ dependencies:
+ postcss: 8.5.18
+ postcss-value-parser: 4.2.0
+
+ postcss-color-functional-notation@7.0.12(postcss@8.5.18):
+ dependencies:
+ '@csstools/css-color-parser': 3.1.0(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)
+ '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4)
+ '@csstools/css-tokenizer': 3.0.4
+ '@csstools/postcss-progressive-custom-properties': 4.2.1(postcss@8.5.18)
+ '@csstools/utilities': 2.0.0(postcss@8.5.18)
+ postcss: 8.5.18
+
+ postcss-color-hex-alpha@10.0.0(postcss@8.5.18):
+ dependencies:
+ '@csstools/utilities': 2.0.0(postcss@8.5.18)
+ postcss: 8.5.18
+ postcss-value-parser: 4.2.0
+
+ postcss-color-rebeccapurple@10.0.0(postcss@8.5.18):
+ dependencies:
+ '@csstools/utilities': 2.0.0(postcss@8.5.18)
+ postcss: 8.5.18
+ postcss-value-parser: 4.2.0
+
+ postcss-custom-media@11.0.6(postcss@8.5.18):
+ dependencies:
+ '@csstools/cascade-layer-name-parser': 2.0.5(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)
+ '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4)
+ '@csstools/css-tokenizer': 3.0.4
+ '@csstools/media-query-list-parser': 4.0.3(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)
+ postcss: 8.5.18
+
+ postcss-custom-properties@14.0.6(postcss@8.5.18):
+ dependencies:
+ '@csstools/cascade-layer-name-parser': 2.0.5(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)
+ '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4)
+ '@csstools/css-tokenizer': 3.0.4
+ '@csstools/utilities': 2.0.0(postcss@8.5.18)
+ postcss: 8.5.18
+ postcss-value-parser: 4.2.0
+
+ postcss-custom-selectors@8.0.5(postcss@8.5.18):
+ dependencies:
+ '@csstools/cascade-layer-name-parser': 2.0.5(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)
+ '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4)
+ '@csstools/css-tokenizer': 3.0.4
+ postcss: 8.5.18
+ postcss-selector-parser: 7.1.1
+
+ postcss-dir-pseudo-class@9.0.1(postcss@8.5.18):
+ dependencies:
+ postcss: 8.5.18
+ postcss-selector-parser: 7.1.1
+
+ postcss-double-position-gradients@6.0.4(postcss@8.5.18):
+ dependencies:
+ '@csstools/postcss-progressive-custom-properties': 4.2.1(postcss@8.5.18)
+ '@csstools/utilities': 2.0.0(postcss@8.5.18)
+ postcss: 8.5.18
+ postcss-value-parser: 4.2.0
+
+ postcss-focus-visible@10.0.1(postcss@8.5.18):
+ dependencies:
+ postcss: 8.5.18
+ postcss-selector-parser: 7.1.1
+
+ postcss-focus-within@9.0.1(postcss@8.5.18):
+ dependencies:
+ postcss: 8.5.18
+ postcss-selector-parser: 7.1.1
+
+ postcss-font-variant@5.0.0(postcss@8.5.18):
+ dependencies:
+ postcss: 8.5.18
+
+ postcss-gap-properties@6.0.0(postcss@8.5.18):
+ dependencies:
+ postcss: 8.5.18
+
+ postcss-image-set-function@7.0.0(postcss@8.5.18):
+ dependencies:
+ '@csstools/utilities': 2.0.0(postcss@8.5.18)
+ postcss: 8.5.18
+ postcss-value-parser: 4.2.0
+
+ postcss-lab-function@7.0.12(postcss@8.5.18):
+ dependencies:
+ '@csstools/css-color-parser': 3.1.0(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)
+ '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4)
+ '@csstools/css-tokenizer': 3.0.4
+ '@csstools/postcss-progressive-custom-properties': 4.2.1(postcss@8.5.18)
+ '@csstools/utilities': 2.0.0(postcss@8.5.18)
+ postcss: 8.5.18
+
+ postcss-logical@8.1.0(postcss@8.5.18):
+ dependencies:
+ postcss: 8.5.18
+ postcss-value-parser: 4.2.0
+
+ postcss-nesting@13.0.2(postcss@8.5.18):
+ dependencies:
+ '@csstools/selector-resolve-nested': 3.1.0(postcss-selector-parser@7.1.1)
+ '@csstools/selector-specificity': 5.0.0(postcss-selector-parser@7.1.1)
+ postcss: 8.5.18
+ postcss-selector-parser: 7.1.1
+
+ postcss-opacity-percentage@3.0.0(postcss@8.5.18):
+ dependencies:
+ postcss: 8.5.18
+
+ postcss-overflow-shorthand@6.0.0(postcss@8.5.18):
+ dependencies:
+ postcss: 8.5.18
+ postcss-value-parser: 4.2.0
+
+ postcss-page-break@3.0.4(postcss@8.5.18):
+ dependencies:
+ postcss: 8.5.18
+
+ postcss-place@10.0.0(postcss@8.5.18):
+ dependencies:
+ postcss: 8.5.18
+ postcss-value-parser: 4.2.0
+
+ postcss-preset-env@10.6.1(postcss@8.5.18):
+ dependencies:
+ '@csstools/postcss-alpha-function': 1.0.1(postcss@8.5.18)
+ '@csstools/postcss-cascade-layers': 5.0.2(postcss@8.5.18)
+ '@csstools/postcss-color-function': 4.0.12(postcss@8.5.18)
+ '@csstools/postcss-color-function-display-p3-linear': 1.0.1(postcss@8.5.18)
+ '@csstools/postcss-color-mix-function': 3.0.12(postcss@8.5.18)
+ '@csstools/postcss-color-mix-variadic-function-arguments': 1.0.2(postcss@8.5.18)
+ '@csstools/postcss-content-alt-text': 2.0.8(postcss@8.5.18)
+ '@csstools/postcss-contrast-color-function': 2.0.12(postcss@8.5.18)
+ '@csstools/postcss-exponential-functions': 2.0.9(postcss@8.5.18)
+ '@csstools/postcss-font-format-keywords': 4.0.0(postcss@8.5.18)
+ '@csstools/postcss-gamut-mapping': 2.0.11(postcss@8.5.18)
+ '@csstools/postcss-gradients-interpolation-method': 5.0.12(postcss@8.5.18)
+ '@csstools/postcss-hwb-function': 4.0.12(postcss@8.5.18)
+ '@csstools/postcss-ic-unit': 4.0.4(postcss@8.5.18)
+ '@csstools/postcss-initial': 2.0.1(postcss@8.5.18)
+ '@csstools/postcss-is-pseudo-class': 5.0.3(postcss@8.5.18)
+ '@csstools/postcss-light-dark-function': 2.0.11(postcss@8.5.18)
+ '@csstools/postcss-logical-float-and-clear': 3.0.0(postcss@8.5.18)
+ '@csstools/postcss-logical-overflow': 2.0.0(postcss@8.5.18)
+ '@csstools/postcss-logical-overscroll-behavior': 2.0.0(postcss@8.5.18)
+ '@csstools/postcss-logical-resize': 3.0.0(postcss@8.5.18)
+ '@csstools/postcss-logical-viewport-units': 3.0.4(postcss@8.5.18)
+ '@csstools/postcss-media-minmax': 2.0.9(postcss@8.5.18)
+ '@csstools/postcss-media-queries-aspect-ratio-number-values': 3.0.5(postcss@8.5.18)
+ '@csstools/postcss-nested-calc': 4.0.0(postcss@8.5.18)
+ '@csstools/postcss-normalize-display-values': 4.0.1(postcss@8.5.18)
+ '@csstools/postcss-oklab-function': 4.0.12(postcss@8.5.18)
+ '@csstools/postcss-position-area-property': 1.0.0(postcss@8.5.18)
+ '@csstools/postcss-progressive-custom-properties': 4.2.1(postcss@8.5.18)
+ '@csstools/postcss-property-rule-prelude-list': 1.0.0(postcss@8.5.18)
+ '@csstools/postcss-random-function': 2.0.1(postcss@8.5.18)
+ '@csstools/postcss-relative-color-syntax': 3.0.12(postcss@8.5.18)
+ '@csstools/postcss-scope-pseudo-class': 4.0.1(postcss@8.5.18)
+ '@csstools/postcss-sign-functions': 1.1.4(postcss@8.5.18)
+ '@csstools/postcss-stepped-value-functions': 4.0.9(postcss@8.5.18)
+ '@csstools/postcss-syntax-descriptor-syntax-production': 1.0.1(postcss@8.5.18)
+ '@csstools/postcss-system-ui-font-family': 1.0.0(postcss@8.5.18)
+ '@csstools/postcss-text-decoration-shorthand': 4.0.3(postcss@8.5.18)
+ '@csstools/postcss-trigonometric-functions': 4.0.9(postcss@8.5.18)
+ '@csstools/postcss-unset-value': 4.0.0(postcss@8.5.18)
+ autoprefixer: 10.5.0(postcss@8.5.18)
+ browserslist: 4.28.2
+ css-blank-pseudo: 7.0.1(postcss@8.5.18)
+ css-has-pseudo: 7.0.3(postcss@8.5.18)
+ css-prefers-color-scheme: 10.0.0(postcss@8.5.18)
+ cssdb: 8.8.0
+ postcss: 8.5.18
+ postcss-attribute-case-insensitive: 7.0.1(postcss@8.5.18)
+ postcss-clamp: 4.1.0(postcss@8.5.18)
+ postcss-color-functional-notation: 7.0.12(postcss@8.5.18)
+ postcss-color-hex-alpha: 10.0.0(postcss@8.5.18)
+ postcss-color-rebeccapurple: 10.0.0(postcss@8.5.18)
+ postcss-custom-media: 11.0.6(postcss@8.5.18)
+ postcss-custom-properties: 14.0.6(postcss@8.5.18)
+ postcss-custom-selectors: 8.0.5(postcss@8.5.18)
+ postcss-dir-pseudo-class: 9.0.1(postcss@8.5.18)
+ postcss-double-position-gradients: 6.0.4(postcss@8.5.18)
+ postcss-focus-visible: 10.0.1(postcss@8.5.18)
+ postcss-focus-within: 9.0.1(postcss@8.5.18)
+ postcss-font-variant: 5.0.0(postcss@8.5.18)
+ postcss-gap-properties: 6.0.0(postcss@8.5.18)
+ postcss-image-set-function: 7.0.0(postcss@8.5.18)
+ postcss-lab-function: 7.0.12(postcss@8.5.18)
+ postcss-logical: 8.1.0(postcss@8.5.18)
+ postcss-nesting: 13.0.2(postcss@8.5.18)
+ postcss-opacity-percentage: 3.0.0(postcss@8.5.18)
+ postcss-overflow-shorthand: 6.0.0(postcss@8.5.18)
+ postcss-page-break: 3.0.4(postcss@8.5.18)
+ postcss-place: 10.0.0(postcss@8.5.18)
+ postcss-pseudo-class-any-link: 10.0.1(postcss@8.5.18)
+ postcss-replace-overflow-wrap: 4.0.0(postcss@8.5.18)
+ postcss-selector-not: 8.0.1(postcss@8.5.18)
+
+ postcss-pseudo-class-any-link@10.0.1(postcss@8.5.18):
+ dependencies:
+ postcss: 8.5.18
+ postcss-selector-parser: 7.1.1
+
+ postcss-replace-overflow-wrap@4.0.0(postcss@8.5.18):
+ dependencies:
+ postcss: 8.5.18
+
+ postcss-selector-not@8.0.1(postcss@8.5.18):
+ dependencies:
+ postcss: 8.5.18
+ postcss-selector-parser: 7.1.1
+
+ postcss-selector-parser@7.1.1:
+ dependencies:
+ cssesc: 3.0.0
+ util-deprecate: 1.0.2
+
+ postcss-value-parser@4.2.0: {}
+
+ postcss@8.5.18:
+ dependencies:
+ nanoid: 3.3.16
+ picocolors: 1.1.1
+ source-map-js: 1.2.1
+
+ posthog-js@1.374.0:
+ dependencies:
+ '@opentelemetry/api': 1.9.1
+ '@opentelemetry/api-logs': 0.208.0
+ '@opentelemetry/exporter-logs-otlp-http': 0.208.0(@opentelemetry/api@1.9.1)
+ '@opentelemetry/resources': 2.7.1(@opentelemetry/api@1.9.1)
+ '@opentelemetry/sdk-logs': 0.208.0(@opentelemetry/api@1.9.1)
+ '@posthog/core': 1.29.3
+ '@posthog/types': 1.374.0
+ core-js: 3.49.0
+ dompurify: 3.4.12
+ fflate: 0.4.8
+ preact: 10.29.1
+ query-selector-shadow-dom: 1.0.1
+ web-vitals: 5.2.0
+
+ preact@10.29.1: {}
+
+ prelude-ls@1.2.1: {}
+
+ prettier@3.8.3:
+ optional: true
+
+ pretty-format@27.5.1:
+ dependencies:
+ ansi-regex: 5.0.1
+ ansi-styles: 5.2.0
+ react-is: 17.0.2
+
+ pretty-ms@9.3.0:
+ dependencies:
+ parse-ms: 4.0.0
+
+ process-nextick-args@2.0.1: {}
+
+ process@0.11.10: {}
+
+ progress@2.0.3: {}
+
+ protobufjs@7.5.9:
+ dependencies:
+ '@protobufjs/aspromise': 1.1.2
+ '@protobufjs/base64': 1.1.2
+ '@protobufjs/codegen': 2.0.5
+ '@protobufjs/eventemitter': 1.1.0
+ '@protobufjs/fetch': 1.1.1
+ '@protobufjs/float': 1.0.2
+ '@protobufjs/inquire': 1.1.2
+ '@protobufjs/path': 1.1.2
+ '@protobufjs/pool': 1.1.0
+ '@protobufjs/utf8': 1.1.1
+ '@types/node': 24.13.2
+ long: 5.3.2
+
+ proxy-from-env@1.1.0: {}
+
+ public-encrypt@4.0.3:
+ dependencies:
+ bn.js: 4.12.3
+ browserify-rsa: 4.1.1
+ create-hash: 1.2.0
+ parse-asn1: 5.1.9
+ randombytes: 2.1.0
+ safe-buffer: 5.2.1
+
+ punycode@1.4.1: {}
+
+ punycode@2.3.1: {}
+
+ qrcode@1.5.4:
+ dependencies:
+ dijkstrajs: 1.0.3
+ pngjs: 5.0.0
+ yargs: 15.4.1
+
+ qs@6.15.3:
+ dependencies:
+ es-define-property: 1.0.1
+ side-channel: 1.1.1
+
+ query-selector-shadow-dom@1.0.1: {}
+
+ querystring-es3@0.2.1: {}
+
+ queue-microtask@1.2.3: {}
+
+ randombytes@2.1.0:
+ dependencies:
+ safe-buffer: 5.2.1
+
+ randomfill@1.0.4:
+ dependencies:
+ randombytes: 2.1.0
+ safe-buffer: 5.2.1
+
+ react-docgen-typescript@2.4.0(typescript@5.9.3):
+ dependencies:
+ typescript: 5.9.3
+
+ react-docgen@8.0.3:
+ dependencies:
+ '@babel/core': 7.29.7
+ '@babel/traverse': 7.29.7
+ '@babel/types': 7.29.7
+ '@types/babel__core': 7.20.5
+ '@types/babel__traverse': 7.28.0
+ '@types/doctrine': 0.0.9
+ '@types/resolve': 1.20.6
+ doctrine: 3.0.0
+ resolve: 1.22.12
+ strip-indent: 4.1.1
+ transitivePeerDependencies:
+ - supports-color
+
+ react-dom@19.2.7(react@19.2.7):
+ dependencies:
+ react: 19.2.7
+ scheduler: 0.27.0
+
+ react-i18next@16.6.6(i18next@25.10.10(typescript@5.9.3))(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(typescript@5.9.3):
+ dependencies:
+ '@babel/runtime': 7.29.2
+ html-parse-stringify: 3.0.1
+ i18next: 25.10.10(typescript@5.9.3)
+ react: 19.2.7
+ use-sync-external-store: 1.6.0(react@19.2.7)
+ optionalDependencies:
+ react-dom: 19.2.7(react@19.2.7)
+ typescript: 5.9.3
+
+ react-i18next@17.0.8(i18next@26.3.3(typescript@5.9.3))(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(typescript@5.9.3):
+ dependencies:
+ '@babel/runtime': 7.29.7
+ html-parse-stringify: 3.0.1
+ i18next: 26.3.3(typescript@5.9.3)
+ react: 19.2.7
+ use-sync-external-store: 1.6.0(react@19.2.7)
+ optionalDependencies:
+ react-dom: 19.2.7(react@19.2.7)
+ typescript: 5.9.3
+
+ react-is@16.13.1: {}
+
+ react-is@17.0.2: {}
+
+ react-remove-scroll-bar@2.3.8(@types/react@19.2.17)(react@19.2.7):
+ dependencies:
+ react: 19.2.7
+ react-style-singleton: 2.2.3(@types/react@19.2.17)(react@19.2.7)
+ tslib: 2.8.1
+ optionalDependencies:
+ '@types/react': 19.2.17
+
+ react-remove-scroll@2.7.2(@types/react@19.2.17)(react@19.2.7):
+ dependencies:
+ react: 19.2.7
+ react-remove-scroll-bar: 2.3.8(@types/react@19.2.17)(react@19.2.7)
+ react-style-singleton: 2.2.3(@types/react@19.2.17)(react@19.2.7)
+ tslib: 2.8.1
+ use-callback-ref: 1.3.3(@types/react@19.2.17)(react@19.2.7)
+ use-sidecar: 1.1.3(@types/react@19.2.17)(react@19.2.7)
+ optionalDependencies:
+ '@types/react': 19.2.17
+
+ react-router-dom@7.18.0(react-dom@19.2.7(react@19.2.7))(react@19.2.7):
+ dependencies:
+ react: 19.2.7
+ react-dom: 19.2.7(react@19.2.7)
+ react-router: 7.18.0(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+
+ react-router@7.18.0(react-dom@19.2.7(react@19.2.7))(react@19.2.7):
+ dependencies:
+ cookie: 1.1.1
+ react: 19.2.7
+ set-cookie-parser: 2.7.2
+ optionalDependencies:
+ react-dom: 19.2.7(react@19.2.7)
+
+ react-style-singleton@2.2.3(@types/react@19.2.17)(react@19.2.7):
+ dependencies:
+ get-nonce: 1.0.1
+ react: 19.2.7
+ tslib: 2.8.1
+ optionalDependencies:
+ '@types/react': 19.2.17
+
+ react-use-measure@2.1.7(react-dom@19.2.7(react@19.2.7))(react@19.2.7):
+ dependencies:
+ react: 19.2.7
+ optionalDependencies:
+ react-dom: 19.2.7(react@19.2.7)
+
+ react@19.2.7: {}
+
+ readable-stream@2.3.8:
+ dependencies:
+ core-util-is: 1.0.3
+ inherits: 2.0.4
+ isarray: 1.0.0
+ process-nextick-args: 2.0.1
+ safe-buffer: 5.1.2
+ string_decoder: 1.1.1
+ util-deprecate: 1.0.2
+
+ readable-stream@3.6.2:
+ dependencies:
+ inherits: 2.0.4
+ string_decoder: 1.3.0
+ util-deprecate: 1.0.2
+
+ readdirp@3.6.0:
+ dependencies:
+ picomatch: 2.3.2
+
+ readdirp@5.0.0: {}
+
+ recast@0.23.12:
+ dependencies:
+ ast-types: 0.16.1
+ esprima: 4.0.1
+ source-map: 0.6.1
+ tiny-invariant: 1.3.3
+ tslib: 2.8.1
+
+ redent@3.0.0:
+ dependencies:
+ indent-string: 4.0.0
+ strip-indent: 3.0.0
+
+ regexparam@3.0.0: {}
+
+ relateurl@0.2.7: {}
+
+ require-directory@2.1.1: {}
+
+ require-main-filename@2.0.0: {}
+
+ resolve-from@4.0.0: {}
+
+ resolve@1.22.12:
+ dependencies:
+ es-errors: 1.3.0
+ is-core-module: 2.16.2
+ path-parse: 1.0.7
+ supports-preserve-symlinks-flag: 1.0.0
+
+ restore-cursor@5.1.0:
+ dependencies:
+ onetime: 7.0.0
+ signal-exit: 4.1.0
+
+ reusify@1.1.0: {}
+
+ rimraf@3.0.2:
+ dependencies:
+ glob: 10.5.0
+
+ ripemd160@2.0.3:
+ dependencies:
+ hash-base: 3.1.2
+ inherits: 2.0.4
+
+ rolldown@1.1.3:
+ dependencies:
+ '@oxc-project/types': 0.137.0
+ '@rolldown/pluginutils': 1.0.1
+ optionalDependencies:
+ '@rolldown/binding-android-arm64': 1.1.3
+ '@rolldown/binding-darwin-arm64': 1.1.3
+ '@rolldown/binding-darwin-x64': 1.1.3
+ '@rolldown/binding-freebsd-x64': 1.1.3
+ '@rolldown/binding-linux-arm-gnueabihf': 1.1.3
+ '@rolldown/binding-linux-arm64-gnu': 1.1.3
+ '@rolldown/binding-linux-arm64-musl': 1.1.3
+ '@rolldown/binding-linux-ppc64-gnu': 1.1.3
+ '@rolldown/binding-linux-s390x-gnu': 1.1.3
+ '@rolldown/binding-linux-x64-gnu': 1.1.3
+ '@rolldown/binding-linux-x64-musl': 1.1.3
+ '@rolldown/binding-openharmony-arm64': 1.1.3
+ '@rolldown/binding-wasm32-wasi': 1.1.3
+ '@rolldown/binding-win32-arm64-msvc': 1.1.3
+ '@rolldown/binding-win32-x64-msvc': 1.1.3
+
+ rollup@4.60.1:
+ dependencies:
+ '@types/estree': 1.0.8
+ optionalDependencies:
+ '@rollup/rollup-android-arm-eabi': 4.60.1
+ '@rollup/rollup-android-arm64': 4.60.1
+ '@rollup/rollup-darwin-arm64': 4.60.1
+ '@rollup/rollup-darwin-x64': 4.60.1
+ '@rollup/rollup-freebsd-arm64': 4.60.1
+ '@rollup/rollup-freebsd-x64': 4.60.1
+ '@rollup/rollup-linux-arm-gnueabihf': 4.60.1
+ '@rollup/rollup-linux-arm-musleabihf': 4.60.1
+ '@rollup/rollup-linux-arm64-gnu': 4.60.1
+ '@rollup/rollup-linux-arm64-musl': 4.60.1
+ '@rollup/rollup-linux-loong64-gnu': 4.60.1
+ '@rollup/rollup-linux-loong64-musl': 4.60.1
+ '@rollup/rollup-linux-ppc64-gnu': 4.60.1
+ '@rollup/rollup-linux-ppc64-musl': 4.60.1
+ '@rollup/rollup-linux-riscv64-gnu': 4.60.1
+ '@rollup/rollup-linux-riscv64-musl': 4.60.1
+ '@rollup/rollup-linux-s390x-gnu': 4.60.1
+ '@rollup/rollup-linux-x64-gnu': 4.60.1
+ '@rollup/rollup-linux-x64-musl': 4.60.1
+ '@rollup/rollup-openbsd-x64': 4.60.1
+ '@rollup/rollup-openharmony-arm64': 4.60.1
+ '@rollup/rollup-win32-arm64-msvc': 4.60.1
+ '@rollup/rollup-win32-ia32-msvc': 4.60.1
+ '@rollup/rollup-win32-x64-gnu': 4.60.1
+ '@rollup/rollup-win32-x64-msvc': 4.60.1
+ fsevents: 2.3.3
+ optional: true
+
+ rrweb-cssom@0.8.0: {}
+
+ run-applescript@7.1.0: {}
+
+ run-async@4.0.6: {}
+
+ run-parallel@1.2.0:
+ dependencies:
+ queue-microtask: 1.2.3
+
+ rxjs@7.8.2:
+ dependencies:
+ tslib: 2.8.1
+
+ safe-buffer@5.1.2: {}
+
+ safe-buffer@5.2.1: {}
+
+ safe-regex-test@1.1.0:
+ dependencies:
+ call-bound: 1.0.4
+ es-errors: 1.3.0
+ is-regex: 1.2.1
+
+ safer-buffer@2.1.2: {}
+
+ sass@1.101.0:
+ dependencies:
+ chokidar: 5.0.0
+ immutable: 5.1.9
+ source-map-js: 1.2.1
+ optionalDependencies:
+ '@parcel/watcher': 2.5.6
+
+ saxes@6.0.0:
+ dependencies:
+ xmlchars: 2.2.0
+
+ scheduler@0.27.0: {}
+
+ sdp-transform@2.15.0: {}
+
+ sdp-transform@3.0.0: {}
+
+ sdp@3.2.2: {}
+
+ semver@6.3.1: {}
+
+ semver@7.8.1: {}
+
+ semver@7.8.5: {}
+
+ set-blocking@2.0.0: {}
+
+ set-cookie-parser@2.7.2: {}
+
+ set-function-length@1.2.2:
+ dependencies:
+ define-data-property: 1.1.4
+ es-errors: 1.3.0
+ function-bind: 1.1.2
+ get-intrinsic: 1.3.0
+ gopd: 1.2.0
+ has-property-descriptors: 1.0.2
+
+ setimmediate@1.0.5: {}
+
+ sha.js@2.4.12:
+ dependencies:
+ inherits: 2.0.4
+ safe-buffer: 5.2.1
+ to-buffer: 1.2.2
+
+ shebang-command@2.0.0:
+ dependencies:
+ shebang-regex: 3.0.0
+
+ shebang-regex@3.0.0: {}
+
+ side-channel-list@1.0.1:
+ dependencies:
+ es-errors: 1.3.0
+ object-inspect: 1.13.4
+
+ side-channel-map@1.0.1:
+ dependencies:
+ call-bound: 1.0.4
+ es-errors: 1.3.0
+ get-intrinsic: 1.3.0
+ object-inspect: 1.13.4
+
+ side-channel-weakmap@1.0.2:
+ dependencies:
+ call-bound: 1.0.4
+ es-errors: 1.3.0
+ get-intrinsic: 1.3.0
+ object-inspect: 1.13.4
+ side-channel-map: 1.0.1
+
+ side-channel@1.1.1:
+ dependencies:
+ es-errors: 1.3.0
+ object-inspect: 1.13.4
+ side-channel-list: 1.0.1
+ side-channel-map: 1.0.1
+ side-channel-weakmap: 1.0.2
+
+ siginfo@2.0.0: {}
+
+ signal-exit@4.1.0: {}
+
+ sirv@3.0.2:
+ dependencies:
+ '@polka/url': 1.0.0-next.29
+ mrmime: 2.0.1
+ totalist: 3.0.1
+
+ smol-toml@1.6.1: {}
+
+ snake-case@3.0.4:
+ dependencies:
+ dot-case: 3.0.4
+ tslib: 2.8.1
+
+ source-map-js@1.2.1: {}
+
+ source-map-support@0.5.21:
+ dependencies:
+ buffer-from: 1.1.2
+ source-map: 0.6.1
+
+ source-map@0.6.1: {}
+
+ stackback@0.0.2: {}
+
+ std-env@4.1.0: {}
+
+ stdin-discarder@0.3.2: {}
+
+ storybook@10.4.6(@testing-library/dom@10.4.1)(@types/react@19.2.17)(prettier@3.8.3)(react@19.2.7):
+ dependencies:
+ '@storybook/global': 5.0.0
+ '@storybook/icons': 2.1.0(react@19.2.7)
+ '@testing-library/jest-dom': 6.9.1
+ '@testing-library/user-event': 14.6.1(@testing-library/dom@10.4.1)
+ '@vitest/expect': 3.2.4
+ '@vitest/spy': 3.2.4
+ '@webcontainer/env': 1.1.1
+ esbuild: 0.28.1
+ open: 10.2.0
+ oxc-parser: 0.127.0
+ oxc-resolver: 11.21.3
+ recast: 0.23.12
+ semver: 7.8.5
+ use-sync-external-store: 1.6.0(react@19.2.7)
+ ws: 8.21.0
+ optionalDependencies:
+ '@types/react': 19.2.17
+ prettier: 3.8.3
+ transitivePeerDependencies:
+ - '@testing-library/dom'
+ - bufferutil
+ - react
+ - utf-8-validate
+
+ stream-browserify@3.0.0:
+ dependencies:
+ inherits: 2.0.4
+ readable-stream: 3.6.2
+
+ stream-http@3.2.0:
+ dependencies:
+ builtin-status-codes: 3.0.0
+ inherits: 2.0.4
+ readable-stream: 3.6.2
+ xtend: 4.0.2
+
+ string-width@4.2.3:
+ dependencies:
+ emoji-regex: 8.0.0
+ is-fullwidth-code-point: 3.0.0
+ strip-ansi: 6.0.1
+
+ string-width@5.1.2:
+ dependencies:
+ eastasianwidth: 0.2.0
+ emoji-regex: 9.2.2
+ strip-ansi: 7.2.0
+
+ string-width@8.2.1:
+ dependencies:
+ get-east-asian-width: 1.6.0
+ strip-ansi: 7.2.0
+
+ string_decoder@1.1.1:
+ dependencies:
+ safe-buffer: 5.1.2
+
+ string_decoder@1.3.0:
+ dependencies:
+ safe-buffer: 5.2.1
+
+ strip-ansi@6.0.1:
+ dependencies:
+ ansi-regex: 5.0.1
+
+ strip-ansi@7.2.0:
+ dependencies:
+ ansi-regex: 6.2.2
+
+ strip-bom@3.0.0: {}
+
+ strip-final-newline@4.0.0: {}
+
+ strip-indent@3.0.0:
+ dependencies:
+ min-indent: 1.0.1
+
+ strip-indent@4.1.1: {}
+
+ strip-json-comments@3.1.1: {}
+
+ strip-json-comments@5.0.3: {}
+
+ supports-color@7.2.0:
+ dependencies:
+ has-flag: 4.0.0
+
+ supports-preserve-symlinks-flag@1.0.0: {}
+
+ svg-parser@2.0.4: {}
+
+ symbol-tree@3.2.4: {}
+
+ tabbable@6.5.0: {}
+
+ terser@5.46.1:
+ dependencies:
+ '@jridgewell/source-map': 0.3.11
+ acorn: 8.16.0
+ commander: 2.20.3
+ source-map-support: 0.5.21
+
+ text-table@0.2.0: {}
+
+ timers-browserify@2.0.12:
+ dependencies:
+ setimmediate: 1.0.5
+
+ tiny-invariant@1.3.3: {}
+
+ tinybench@2.9.0: {}
+
+ tinyexec@1.2.4: {}
+
+ tinyglobby@0.2.17:
+ dependencies:
+ fdir: 6.5.0(picomatch@4.0.4)
+ picomatch: 4.0.4
+
+ tinypool@2.1.0: {}
+
+ tinyrainbow@2.0.0: {}
+
+ tinyrainbow@3.1.0: {}
+
+ tinyspy@4.0.4: {}
+
+ tldts-core@6.1.86: {}
+
+ tldts@6.1.86:
+ dependencies:
+ tldts-core: 6.1.86
+
+ to-buffer@1.2.2:
+ dependencies:
+ isarray: 2.0.5
+ safe-buffer: 5.2.1
+ typed-array-buffer: 1.0.3
+
+ to-regex-range@5.0.1:
+ dependencies:
+ is-number: 7.0.0
+
+ toggle-selection@1.0.6: {}
+
+ totalist@3.0.1: {}
+
+ tough-cookie@5.1.2:
+ dependencies:
+ tldts: 6.1.86
+
+ tr46@0.0.3: {}
+
+ tr46@5.1.1:
+ dependencies:
+ punycode: 2.3.1
+
+ ts-api-utils@2.5.0(typescript@5.9.3):
+ dependencies:
+ typescript: 5.9.3
+
+ ts-dedent@2.3.0: {}
+
+ tsconfig-paths@4.2.0:
+ dependencies:
+ json5: 2.2.3
+ minimist: 1.2.8
+ strip-bom: 3.0.0
+
+ tslib@2.8.1: {}
+
+ tty-browserify@0.0.1: {}
+
+ tunnel@0.0.6: {}
+
+ type-check@0.4.0:
+ dependencies:
+ prelude-ls: 1.2.1
+
+ type-fest@0.20.2: {}
+
+ typed-array-buffer@1.0.3:
+ dependencies:
+ call-bound: 1.0.4
+ es-errors: 1.3.0
+ is-typed-array: 1.1.15
+
+ typed-emitter@2.1.0:
+ optionalDependencies:
+ rxjs: 7.8.2
+
+ typescript@5.9.3: {}
+
+ unbash@2.2.0: {}
+
+ undici-types@7.18.2: {}
+
+ undici@6.27.0: {}
+
+ unhomoglyph@1.0.6: {}
+
+ unicorn-magic@0.3.0: {}
+
+ unique-names-generator@4.7.1: {}
+
+ universal-user-agent@6.0.1: {}
+
+ universalify@2.0.1: {}
+
+ unplugin@1.0.1:
+ dependencies:
+ acorn: 8.16.0
+ chokidar: 3.6.0
+ webpack-sources: 3.3.4
+ webpack-virtual-modules: 0.5.0
+
+ unplugin@1.16.1:
+ dependencies:
+ acorn: 8.16.0
+ webpack-virtual-modules: 0.6.2
+
+ unplugin@2.3.11:
+ dependencies:
+ '@jridgewell/remapping': 2.3.5
+ acorn: 8.17.0
+ picomatch: 4.0.4
+ webpack-virtual-modules: 0.6.2
+
+ update-browserslist-db@1.2.3(browserslist@4.28.2):
+ dependencies:
+ browserslist: 4.28.2
+ escalade: 3.2.0
+ picocolors: 1.1.1
+
+ uri-js@4.4.1:
+ dependencies:
+ punycode: 2.3.1
+
+ url@0.11.4:
+ dependencies:
+ punycode: 1.4.1
+ qs: 6.15.3
+
+ use-callback-ref@1.3.3(@types/react@19.2.17)(react@19.2.7):
+ dependencies:
+ react: 19.2.7
+ tslib: 2.8.1
+ optionalDependencies:
+ '@types/react': 19.2.17
+
+ use-sidecar@1.1.3(@types/react@19.2.17)(react@19.2.7):
+ dependencies:
+ detect-node-es: 1.1.0
+ react: 19.2.7
+ tslib: 2.8.1
+ optionalDependencies:
+ '@types/react': 19.2.17
+
+ use-sync-external-store@1.6.0(react@19.2.7):
+ dependencies:
+ react: 19.2.7
+
+ usehooks-ts@3.1.1(react@19.2.7):
+ dependencies:
+ lodash.debounce: 4.0.8
+ react: 19.2.7
+
+ util-deprecate@1.0.2: {}
+
+ util@0.12.5:
+ dependencies:
+ inherits: 2.0.4
+ is-arguments: 1.2.0
+ is-generator-function: 1.1.2
+ is-typed-array: 1.1.15
+ which-typed-array: 1.1.20
+
+ uuid@14.0.1: {}
+
+ vaul@1.1.2(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7):
+ dependencies:
+ '@radix-ui/react-dialog': 1.1.17(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ react: 19.2.7
+ react-dom: 19.2.7(react@19.2.7)
+ transitivePeerDependencies:
+ - '@types/react'
+ - '@types/react-dom'
+
+ vite-plugin-generate-file@0.3.1:
+ dependencies:
+ ejs: 3.1.10
+ js-yaml: 4.3.0
+ mime-types: 2.1.35
+ picocolors: 1.1.1
+
+ vite-plugin-html@3.2.2(vite@8.1.0(@types/node@24.13.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(terser@5.46.1)(yaml@2.9.0)):
+ dependencies:
+ '@rollup/pluginutils': 4.2.1
+ colorette: 2.0.20
+ connect-history-api-fallback: 1.6.0
+ consola: 2.15.3
+ dotenv: 16.6.1
+ dotenv-expand: 8.0.3
+ ejs: 3.1.10
+ fast-glob: 3.3.3
+ fs-extra: 10.1.0
+ html-minifier-terser: 6.1.0
+ node-html-parser: 5.4.2
+ pathe: 0.2.0
+ vite: 8.1.0(@types/node@24.13.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(terser@5.46.1)(yaml@2.9.0)
+
+ vite-plugin-node-polyfills@0.28.0(rollup@4.60.1)(vite@8.1.0(@types/node@24.13.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(terser@5.46.1)(yaml@2.9.0)):
+ dependencies:
+ '@rollup/plugin-inject': 5.0.5(rollup@4.60.1)
+ node-stdlib-browser: 1.3.1
+ vite: 8.1.0(@types/node@24.13.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(terser@5.46.1)(yaml@2.9.0)
+ transitivePeerDependencies:
+ - rollup
+
+ vite-plugin-node-stdlib-browser@0.2.1(node-stdlib-browser@1.3.1)(rollup@4.60.1)(vite@8.1.0(@types/node@24.13.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(terser@5.46.1)(yaml@2.9.0)):
+ dependencies:
+ '@rollup/plugin-inject': 5.0.5(rollup@4.60.1)
+ node-stdlib-browser: 1.3.1
+ vite: 8.1.0(@types/node@24.13.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(terser@5.46.1)(yaml@2.9.0)
+ transitivePeerDependencies:
+ - rollup
+
+ vite-plugin-svgr@4.5.0(rollup@4.60.1)(typescript@5.9.3)(vite@8.1.0(@types/node@24.13.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(terser@5.46.1)(yaml@2.9.0)):
+ dependencies:
+ '@rollup/pluginutils': 5.3.0(rollup@4.60.1)
+ '@svgr/core': 8.1.0(typescript@5.9.3)
+ '@svgr/plugin-jsx': 8.1.0(@svgr/core@8.1.0(typescript@5.9.3))
+ vite: 8.1.0(@types/node@24.13.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(terser@5.46.1)(yaml@2.9.0)
+ transitivePeerDependencies:
+ - rollup
+ - supports-color
+ - typescript
+
+ vite-plugin-wasm@3.6.0(vite@8.1.0(@types/node@24.13.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(terser@5.46.1)(yaml@2.9.0)):
+ dependencies:
+ vite: 8.1.0(@types/node@24.13.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(terser@5.46.1)(yaml@2.9.0)
+
+ vite@8.1.0(@types/node@24.13.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(terser@5.46.1)(yaml@2.9.0):
+ dependencies:
+ lightningcss: 1.32.0
+ picomatch: 4.0.4
+ postcss: 8.5.18
+ rolldown: 1.1.3
+ tinyglobby: 0.2.17
+ optionalDependencies:
+ '@types/node': 24.13.2
+ esbuild: 0.28.1
+ fsevents: 2.3.3
+ jiti: 2.7.0
+ sass: 1.101.0
+ terser: 5.46.1
+ yaml: 2.9.0
+
+ vitest-axe@1.0.0-pre.5(vitest@4.1.9):
+ dependencies:
+ '@vitest/pretty-format': 3.2.4
+ axe-core: 4.11.3
+ chalk: 5.6.2
+ lodash-es: 4.18.1
+ vitest: 4.1.9(@opentelemetry/api@1.9.1)(@types/node@24.13.2)(@vitest/browser-playwright@4.1.9)(@vitest/coverage-v8@4.1.9)(@vitest/ui@4.1.9)(jsdom@26.1.0)(vite@8.1.0(@types/node@24.13.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(terser@5.46.1)(yaml@2.9.0))
+
+ vitest@4.1.9(@opentelemetry/api@1.9.1)(@types/node@24.13.2)(@vitest/browser-playwright@4.1.9)(@vitest/coverage-v8@4.1.9)(@vitest/ui@4.1.9)(jsdom@26.1.0)(vite@8.1.0(@types/node@24.13.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(terser@5.46.1)(yaml@2.9.0)):
+ dependencies:
+ '@vitest/expect': 4.1.9
+ '@vitest/mocker': 4.1.9(vite@8.1.0(@types/node@24.13.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(terser@5.46.1)(yaml@2.9.0))
+ '@vitest/pretty-format': 4.1.9
+ '@vitest/runner': 4.1.9
+ '@vitest/snapshot': 4.1.9
+ '@vitest/spy': 4.1.9
+ '@vitest/utils': 4.1.9
+ es-module-lexer: 2.2.0
+ expect-type: 1.4.0
+ magic-string: 0.30.21
+ obug: 2.1.3
+ pathe: 2.0.3
+ picomatch: 4.0.4
+ std-env: 4.1.0
+ tinybench: 2.9.0
+ tinyexec: 1.2.4
+ tinyglobby: 0.2.17
+ tinyrainbow: 3.1.0
+ vite: 8.1.0(@types/node@24.13.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(terser@5.46.1)(yaml@2.9.0)
+ why-is-node-running: 2.3.0
+ optionalDependencies:
+ '@opentelemetry/api': 1.9.1
+ '@types/node': 24.13.2
+ '@vitest/browser-playwright': 4.1.9(playwright@1.61.1)(vite@8.1.0(@types/node@24.13.2)(esbuild@0.28.1)(jiti@2.7.0)(sass@1.101.0)(terser@5.46.1)(yaml@2.9.0))(vitest@4.1.9)
+ '@vitest/coverage-v8': 4.1.9(@vitest/browser@4.1.9)(vitest@4.1.9)
+ '@vitest/ui': 4.1.9(vitest@4.1.9)
+ jsdom: 26.1.0
+ transitivePeerDependencies:
+ - msw
+
+ vm-browserify@1.1.2: {}
+
+ void-elements@3.1.0: {}
+
+ w3c-xmlserializer@5.0.0:
+ dependencies:
+ xml-name-validator: 5.0.0
+
+ walk-up-path@4.0.0: {}
+
+ web-vitals@5.2.0: {}
+
+ webidl-conversions@3.0.1: {}
+
+ webidl-conversions@7.0.0: {}
+
+ webpack-sources@3.3.4: {}
+
+ webpack-virtual-modules@0.5.0: {}
+
+ webpack-virtual-modules@0.6.2: {}
+
+ webrtc-adapter@9.0.6:
+ dependencies:
+ sdp: 3.2.2
+
+ whatwg-encoding@3.1.1:
+ dependencies:
+ iconv-lite: 0.6.3
+
+ whatwg-mimetype@4.0.0: {}
+
+ whatwg-url@14.2.0:
+ dependencies:
+ tr46: 5.1.1
+ webidl-conversions: 7.0.0
+
+ whatwg-url@5.0.0:
+ dependencies:
+ tr46: 0.0.3
+ webidl-conversions: 3.0.1
+
+ which-module@2.0.1: {}
+
+ which-typed-array@1.1.20:
+ dependencies:
+ available-typed-arrays: 1.0.7
+ call-bind: 1.0.9
+ call-bound: 1.0.4
+ for-each: 0.3.5
+ get-proto: 1.0.1
+ gopd: 1.2.0
+ has-tostringtag: 1.0.2
+
+ which@2.0.2:
+ dependencies:
+ isexe: 2.0.0
+
+ why-is-node-running@2.3.0:
+ dependencies:
+ siginfo: 2.0.0
+ stackback: 0.0.2
+
+ word-wrap@1.2.5: {}
+
+ wrap-ansi@6.2.0:
+ dependencies:
+ ansi-styles: 4.3.0
+ string-width: 4.2.3
+ strip-ansi: 6.0.1
+
+ wrap-ansi@7.0.0:
+ dependencies:
+ ansi-styles: 4.3.0
+ string-width: 4.2.3
+ strip-ansi: 6.0.1
+
+ wrap-ansi@8.1.0:
+ dependencies:
+ ansi-styles: 6.2.3
+ string-width: 5.1.2
+ strip-ansi: 7.2.0
+
+ wrappy@1.0.2: {}
+
+ ws@8.21.0: {}
+
+ wsl-utils@0.1.0:
+ dependencies:
+ is-wsl: 3.1.1
+
+ xml-name-validator@5.0.0: {}
+
+ xmlchars@2.2.0: {}
+
+ xtend@4.0.2: {}
+
+ y18n@4.0.3: {}
+
+ yallist@3.1.1: {}
+
+ yaml@2.8.3: {}
+
+ yaml@2.9.0: {}
+
+ yargs-parser@18.1.3:
+ dependencies:
+ camelcase: 5.3.1
+ decamelize: 1.2.0
+
+ yargs@15.4.1:
+ dependencies:
+ cliui: 6.0.0
+ decamelize: 1.2.0
+ find-up: 4.1.0
+ get-caller-file: 2.0.5
+ require-directory: 2.1.1
+ require-main-filename: 2.0.0
+ set-blocking: 2.0.0
+ string-width: 4.2.3
+ which-module: 2.0.1
+ y18n: 4.0.3
+ yargs-parser: 18.1.3
+
+ yocto-queue@0.1.0: {}
+
+ yoctocolors@2.1.2: {}
+
+ zod@3.25.76: {}
+
+ zod@4.3.6: {}
diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml
new file mode 100644
index 000000000..30999eb19
--- /dev/null
+++ b/pnpm-workspace.yaml
@@ -0,0 +1,58 @@
+minimumReleaseAgeExclude:
+ - "@vector-im/compound-design-tokens"
+ - "@vector-im/compound-web"
+ - matrix-js-sdk
+ - matrix-widget-api
+allowBuilds:
+ "@parcel/watcher": true
+ "@sentry/cli": true
+ "@swc/core": true
+ "core-js": true
+ "esbuild": true
+ "matrix-js-sdk@https://codeload.github.com/matrix-org/matrix-js-sdk/tar.gz/8c95727b6278fe7942c20d0b9485f984dd0694b7": true
+ "protobufjs": true
+overrides:
+ # We need compatible versions of RxJS in our dependencies and LiveKit's dependencies, but
+ # LiveKit has pinned it to a very specific version which is now holding us back from updating.
+ # See livekit/components-js#1101 for a request for a proper solution.
+ "@livekit/components-core>rxjs": "^7.8.1"
+ # Dedupe Mediapipe dependencies.
+ "@livekit/track-processors>@mediapipe/tasks-vision": "^0.10.18"
+ # Security fix: https://security-tracker.debian.org/tracker/CVE-2026-31802
+ "tar": "^7.5.11"
+ # Security fixes:
+ # - https://github.com/advisories/GHSA-7r86-cg39-jmmj
+ # - https://github.com/advisories/GHSA-23c5-xmqv-rm74
+ "minimatch": "^10.2.3"
+ # Security fix: https://github.com/element-hq/element-call/security/dependabot/109
+ "glob": "^10.5.0"
+ # Security fixes:
+ # - https://github.com/element-hq/element-call/security/dependabot/110
+ # - https://github.com/element-hq/element-call/security/dependabot/122
+ # - https://github.com/element-hq/element-call/security/dependabot/179
+ "qs": "^6.15.2"
+ # Security fixes:
+ # - https://github.com/element-hq/element-call/security/dependabot/106
+ # - https://github.com/element-hq/element-call/security/dependabot/203
+ "js-yaml": "^4.2.0"
+ # Storybook declares support for 0.27.0 only but empirically works fine with 0.28.0.
+ "esbuild": "^0.28.0"
+ # Security fixes:
+ # - https://github.com/nodejs/undici/releases/tag/v6.24.0
+ # - https://github.com/element-hq/element-call/security/dependabot/201
+ # - https://github.com/element-hq/element-call/security/dependabot/199
+ "undici": "^6.27.0"
+ # Security fix: https://github.com/advisories/GHSA-rf6f-7fwh-wjgh
+ "flatted": "^3.4.2"
+ # Security fix: https://github.com/element-hq/element-call/security/dependabot/184
+ "ws": "^8.21.0"
+ # Security fixes:
+ # - https://github.com/element-hq/element-call/security/dependabot/191
+ # - https://github.com/element-hq/element-call/security/dependabot/190
+ # - https://github.com/element-hq/element-call/security/dependabot/192
+ # - https://github.com/element-hq/element-call/security/dependabot/194
+ # - https://github.com/element-hq/element-call/security/dependabot/198
+ # - https://github.com/element-hq/element-call/security/dependabot/196
+ # - https://github.com/element-hq/element-call/security/dependabot/195
+ # - https://github.com/element-hq/element-call/security/dependabot/193
+ "dompurify": "^3.4.11"
diff --git a/renovate.json b/renovate.json
index 31709cf07..56e7ac8f8 100644
--- a/renovate.json
+++ b/renovate.json
@@ -48,10 +48,32 @@
"groupName": "Vaul",
"matchDepNames": ["vaul"],
"prHeader": "Please review modals on mobile for visual regressions."
+ },
+ {
+ "groupName": "PostHog",
+ "matchDepNames": ["posthog-js"],
+ "prHeader": "Please ensure that all analytics data is still appropriately sanitized."
+ },
+ {
+ "groupName": "embedded package dependencies",
+ "matchFileNames": ["embedded/**/*"]
+ },
+ {
+ "groupName": "Pnpm",
+ "matchDepNames": ["pnpm"]
+ },
+ {
+ "description": "Update the element-web image digest daily, in its own PR",
+ "groupName": "Element Web",
+ "matchPackageNames": ["ghcr.io/element-hq/element-web"],
+ "matchUpdateTypes": ["digest"],
+ "schedule": ["* 0-3 * * *"],
+ "minimumReleaseAge": null,
+ "automerge": true
}
],
"semanticCommits": "disabled",
- "ignoreDeps": ["posthog-js"],
+ "ignoreDeps": [],
"vulnerabilityAlerts": {
"schedule": ["at any time"],
"prHourlyLimit": 0,
diff --git a/scripts/.pnpmfile.cjs b/scripts/.pnpmfile.cjs
new file mode 100644
index 000000000..23b0759f4
--- /dev/null
+++ b/scripts/.pnpmfile.cjs
@@ -0,0 +1,62 @@
+/*
+Copyright 2026 Element Creations Ltd.
+
+SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
+Please see LICENSE in the repository root for full details.
+*/
+// DONT RUN THIS FILE MANUALLY
+// This file is intended to be used with `pnpm links:on` and `pnpm links:off` which will copy this file to the project root.
+// See docs/linking.md for details.
+//
+//
+// Created based on https://github.com/element-hq/element-call/blob/60fae70a60e3697eb41210ccf1e400cab37df7c8/.yarn/plugins/linker.cjs
+// and the following prompt history:
+// - Can you convert this yarn plugin into a pnpm plugin.
+// - The goal is to not have modifications to the package.json and lock files so that we do not track links on gh.
+// This seems to modify the package.json file.
+// What can we do with pnpm to have the link inforamtion in a seperate file
+// - why do you cache the loaded links. When does this file get executed?
+// Do we need this optimization.
+// How do we guarantee, that we aleays use the most recent content from the links file?
+//
+// Manual transition to cjs. Claude proposed manual yaml parsing.
+
+const fs = require("fs");
+const path = require("path");
+
+function loadLinks() {
+ try {
+ return require(path.join(__dirname, ".links.cjs"));
+ } catch (e) {
+ return null;
+ }
+}
+
+function readPackage(pkg, context) {
+ const links = loadLinks();
+ if (!links) return pkg;
+
+ const manifest = JSON.parse(
+ fs.readFileSync(path.join(__dirname, "package.json"), "utf8"),
+ );
+ if (pkg.name !== manifest.name) return pkg;
+
+ for (const [name, linkPath] of Object.entries(links)) {
+ const resolved = `link:${path.resolve(__dirname, linkPath)}`;
+ if (pkg.dependencies && pkg.dependencies[name]) {
+ context.log(`Linking ${name} -> ${resolved}`);
+ pkg.dependencies[name] = resolved;
+ } else if (pkg.devDependencies && pkg.devDependencies[name]) {
+ context.log(`Linking ${name} -> ${resolved}`);
+ pkg.devDependencies[name] = resolved;
+ }
+ }
+
+ return pkg;
+}
+
+module.exports = {
+ hooks: {
+ readPackage,
+ },
+};
diff --git a/scripts/dockerbuild.sh b/scripts/dockerbuild.sh
index ceabde8e2..5cf4c71ef 100755
--- a/scripts/dockerbuild.sh
+++ b/scripts/dockerbuild.sh
@@ -5,5 +5,5 @@ set -ex
export VITE_APP_VERSION=$(git describe --tags --abbrev=0)
corepack enable
-yarn install
-yarn run build
+pnpm install
+pnpm run build
diff --git a/scripts/playwright-webserver-command.sh b/scripts/playwright-webserver-command.sh
new file mode 100755
index 000000000..70726f453
--- /dev/null
+++ b/scripts/playwright-webserver-command.sh
@@ -0,0 +1,10 @@
+#!/bin/sh
+if [ -n "$USE_DOCKER" ]; then
+ set -ex
+ pnpm build
+ docker build -t element-call:testing .
+ exec docker run --rm --name element-call-testing -p 8080:8080 -v ./config/config.devenv.json:/app/config.json:ro,Z element-call:testing
+else
+ cp config/config.devenv.json public/config.json
+ exec pnpm dev --host
+fi
diff --git a/scripts/setup-linking.sh b/scripts/setup-linking.sh
new file mode 100755
index 000000000..b20228d6a
--- /dev/null
+++ b/scripts/setup-linking.sh
@@ -0,0 +1,26 @@
+#!/usr/bin/env bash
+
+# Checks if there currently is linking configured. Informs the user to disable linking before committing.
+
+LINKSFILE=.links.cjs
+echo "Checking for existing linking configuration in $LINKSFILE..."
+if test -f "$LINKSFILE"; then
+echo "Linking configuration found in $LINKSFILE."
+else
+ echo "No $LINKSFILE -> Creating $LINKSFILE with default values. Please edit this file to point to your local checkouts of the dependencies you want to link."
+ echo '''// Packages to link to local checkouts
+module.exports = {
+ "matrix-js-sdk": "../your/path/matrix-js-sdk",
+ "matrix-widget-api": "../your/path/matrix-widget-api",
+};''' > $LINKSFILE
+fi
+echo "updating local git hookPath to .githooks"
+git config --local core.hooksPath .githooks
+echo ""
+echo "Setup complete."
+echo "Update: .links.cjs to your liking"
+echo "Run: 'pnpm links:on' to test your .links.cjs"
+echo "Run: 'git commit' with links enabled to test the git pre-commit hook."
+echo "Run: 'pnpm links:off' to be able to commit again"
+echo "Run: 'git config --local core.hooksPath \"\"' to allow committing with linking on (not recommended)"
+echo "Run: 'rm links.cjs' & 'git config --local core.hooksPath \"\"' to fully revert what this script did"
diff --git a/sdk/README.md b/sdk/README.md
new file mode 100644
index 000000000..7102ba29c
--- /dev/null
+++ b/sdk/README.md
@@ -0,0 +1,59 @@
+# SDK mode (EXPERIMENTAL)
+
+EC can be build in sdk mode. This will result in a compiled js file that can be imported in very simple webapps.
+
+It allows to use matrixRTC in combination with livekit without relying on element call.
+
+This is done by instantiating the call view model and exposing some useful behaviors (observables) and methods.
+
+This folder contains an example index.html file that showcases the sdk in use (hosted on localhost:8123 with a webserver allowing cors (for example `npx serve -l 81234 --cors`)) as a godot engine HTML export template.
+
+## Getting started
+
+To get started run
+
+```
+pnpm install
+pnpm build:sdk
+```
+
+in the repository root.
+
+It will create a `dist` folder containing the compiled js file.
+
+This file needs to be hosted. Locally (via `npx serve -l 81234 --cors`) or on a remote server.
+
+Now you just need to add the widget to element web via:
+
+```
+/addwidget http://localhost:3000?widgetId=$matrix_widget_id&perParticipantE2EE=true&userId=$matrix_user_id&deviceId=$org.matrix.msc3819.matrix_device_id&baseUrl=$org.matrix.msc4039.matrix_base_url&roomId=$matrix_room_id
+```
+
+## Widgets
+
+The sdk mode is particularly interesting to be used in widgets. In widgets you do not need to pay attention to matrix login/cs api ...
+To create a widget see the example `index.html` file in this folder. And add it to EW via:
+`/addwidget ` (see **url parameters** for more details on ``)
+
+### url parameters
+
+The url parameters are needed to pass initial data to the widget. They will automatically be used
+by the matrixRTCSdk to start the postmessage widget api (communication between the client (e.g. Element Web) and the widget)
+
+```
+widgetId = $matrix_widget_id
+perParticipantE2EE = true
+userId = $matrix_user_id
+deviceId = $org.matrix.msc3819.matrix_device_id
+baseUrl = $org.matrix.msc4039.matrix_base_url
+```
+
+`parentUrl = // will be inserted automatically`
+
+Full template use as ``:
+
+```
+http://localhost:3000?widgetId=$matrix_widget_id&perParticipantE2EE=true&userId=$matrix_user_id&deviceId=$org.matrix.msc3819.matrix_device_id&baseUrl=$org.matrix.msc4039.matrix_base_url&roomId=$matrix_room_id
+```
+
+the `$` prefixed variables will be replaced by EW on widget instantiation. (e.g. `$matrix_user_id` -> `@user:example.com` (url encoding will also be applied automatically by EW) -> `%40user%3Aexample.com`)
diff --git a/sdk/helper.ts b/sdk/helper.ts
new file mode 100644
index 000000000..9f7e02a7d
--- /dev/null
+++ b/sdk/helper.ts
@@ -0,0 +1,51 @@
+/*
+Copyright 2025 Element Creations Ltd.
+
+SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
+Please see LICENSE in the repository root for full details.
+*/
+
+/**
+ * This file contains helper functions and types for the MatrixRTC SDK.
+ */
+
+import { logger as rootLogger } from "matrix-js-sdk/lib/logger";
+import { scan } from "rxjs";
+
+import { type WidgetHelpers } from "../src/widget";
+import { type LivekitRoomItem } from "../src/state/CallViewModel/CallViewModel";
+
+export const tryMakeSticky = (widget: WidgetHelpers): void => {
+ const logger = rootLogger.getChild("[MatrixRTCSdk]");
+ logger.info("try making sticky MatrixRTCSdk");
+ void widget.api
+ .setAlwaysOnScreen(true)
+ .then(() => {
+ logger.info("sticky MatrixRTCSdk");
+ })
+ .catch((error) => {
+ logger.error("failed to make sticky MatrixRTCSdk", error);
+ });
+};
+export const TEXT_LK_TOPIC = "matrixRTC";
+/**
+ * simple helper operator to combine the last emitted and the current emitted value of a rxjs observable
+ *
+ * I think there should be a builtin for this but i did not find it...
+ */
+export const currentAndPrev = scan<
+ LivekitRoomItem[],
+ {
+ prev: LivekitRoomItem[];
+ current: LivekitRoomItem[];
+ }
+>(
+ ({ current: lastCurrentVal }, items) => ({
+ prev: lastCurrentVal,
+ current: items,
+ }),
+ {
+ prev: [],
+ current: [],
+ },
+);
diff --git a/sdk/index.html b/sdk/index.html
new file mode 100644
index 000000000..8883b9a3c
--- /dev/null
+++ b/sdk/index.html
@@ -0,0 +1,68 @@
+
+
+
+ MatrixRTC Widget
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/sdk/main.ts b/sdk/main.ts
new file mode 100644
index 000000000..a001af65c
--- /dev/null
+++ b/sdk/main.ts
@@ -0,0 +1,370 @@
+/*
+Copyright 2025-2026 Element Creations Ltd.
+
+SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
+Please see LICENSE in the repository root for full details.
+*/
+
+/**
+ * EXPERIMENTAL
+ *
+ * This file is the entrypoint for the sdk build of element call: `pnpm build:sdk`
+ * use in widgets.
+ * It exposes the `createMatrixRTCSdk` which creates the `MatrixRTCSdk` interface (see below) that
+ * can be used to join a rtc session and exchange realtime data.
+ * It takes care of all the tricky bits:
+ * - sending delayed events
+ * - finding the right sfu
+ * - handling the media stream
+ * - sending join/leave state or sticky events
+ * - setting up encryption and scharing keys
+ */
+
+import {
+ combineLatest,
+ map,
+ type Observable,
+ of,
+ shareReplay,
+ Subject,
+ switchMap,
+ tap,
+} from "rxjs";
+import {
+ type CallMembership,
+ MatrixRTCSessionEvent,
+ MatrixRTCSessionManager,
+} from "matrix-js-sdk/lib/matrixrtc";
+import {
+ type Room as LivekitRoom,
+ type TextStreamReader,
+ type LocalParticipant,
+ type RemoteParticipant,
+} from "livekit-client";
+
+// TODO how can this get fixed? to just be part of `livekit-client`
+// Can this be done in the tsconfig.json
+import { type TextStreamInfo } from "../node_modules/livekit-client/dist/src/room/types";
+import { type Behavior, constant } from "../src/state/Behavior";
+import { createCallViewModel$ } from "../src/state/CallViewModel/CallViewModel";
+import { ObservableScope } from "../src/state/ObservableScope";
+import { getUrlParams } from "../src/UrlParams";
+import { MuteStates } from "../src/state/MuteStates";
+import { MediaDevices } from "../src/state/MediaDevices";
+import { E2eeType } from "../src/e2ee/e2eeType";
+import { currentAndPrev, TEXT_LK_TOPIC, tryMakeSticky } from "./helper";
+import { logger as rootLogger } from "matrix-js-sdk/lib/logger";
+import {
+ ElementWidgetActions,
+ widget as _widget,
+ initializeWidget,
+} from "../src/widget";
+import { type Connection } from "../src/state/CallViewModel/remoteMembers/Connection";
+
+interface MatrixRTCSdk {
+ /**
+ * observe connected$ to track the state.
+ * @returns
+ */
+ join: () => void;
+ /** @throws on leave errors */
+ leave: () => void;
+ /**
+ * Ends the rtc sdk. This will unsubscribe any event listeners. And end the associated scope.
+ * No updates can be received from the rtc sdk. The sdk cannot be restarted after.
+ * A new sdk needs to be created via createMatrixRTCSdk.
+ */
+ stop: () => void;
+ data$: Observable<{ rtcBackendIdentity: string; data: string }>;
+ /**
+ * flattened list of remote members
+ */
+ remoteMembers$: Behavior<
+ {
+ connection: Connection | null;
+ membership: CallMembership;
+ participant: LocalParticipant | RemoteParticipant | null;
+ }[]
+ >;
+ /**
+ * flattened local member
+ */
+ localMember$: Behavior<{
+ connection: Connection | null;
+ membership: CallMembership;
+ participant: LocalParticipant | null;
+ } | null>;
+ /** Use the LocalMemberConnectionState returned from `join` for a more detailed connection state */
+ connected$: Behavior;
+ sendData?: (data: unknown) => Promise;
+ sendRoomMessage?: (message: string) => Promise;
+}
+
+export async function createMatrixRTCSdk(
+ application: string = "m.call",
+ id: string = "",
+ sticky: boolean = false,
+): Promise {
+ const logger = rootLogger.getChild("[MatrixRTCSdk]");
+ const scope = new ObservableScope();
+
+ // widget client
+ initializeWidget(application, true);
+ const widget = _widget;
+ if (!widget) throw Error("No widget. This webapp can only start as a widget");
+ const client = await widget.client;
+ logger.info("client created");
+
+ // url params
+ const { roomId } = getUrlParams();
+ if (roomId === null) throw Error("could not get roomId from url params");
+ const room = client.getRoom(roomId);
+ if (room === null) throw Error("could not get room from client");
+
+ // rtc session
+ const slot = { application, id };
+ const rtcSessionManager = new MatrixRTCSessionManager(logger, client, slot);
+ rtcSessionManager.start();
+ const rtcSession = rtcSessionManager.getRoomSession(room);
+
+ // media devices
+ const mediaDevices = new MediaDevices(scope);
+ const muteStates = new MuteStates(scope, mediaDevices, {
+ audioEnabled: false,
+ videoEnabled: false,
+ });
+
+ // call view model
+ const callViewModel = createCallViewModel$(
+ scope,
+ rtcSession,
+ room,
+ mediaDevices,
+ muteStates,
+ { encryptionSystem: { kind: E2eeType.PER_PARTICIPANT } },
+ of({}),
+ of({}),
+ constant({ supported: false, processor: undefined }),
+ );
+ logger.info("CallViewModelCreated");
+
+ // create data listener
+ const data$ = new Subject<{ rtcBackendIdentity: string; data: string }>();
+
+ const lkTextStreamHandlerFunction = async (
+ reader: TextStreamReader,
+ participantInfo: { identity: string },
+ livekitRoom: LivekitRoom,
+ ): Promise => {
+ const info = reader.info;
+ logger.info(
+ `Received text stream from ${participantInfo.identity}\n` +
+ ` Topic: ${info.topic}\n` +
+ ` Timestamp: ${info.timestamp}\n` +
+ ` ID: ${info.id}\n` +
+ ` Size: ${info.size}`, // Optional, only available if the stream was sent with `sendText`
+ );
+
+ const participants = callViewModel.livekitRoomItems$.value.find(
+ (i) => i.livekitRoom === livekitRoom,
+ )?.participants;
+ if (participants && participants.includes(participantInfo.identity)) {
+ const text = await reader.readAll();
+ logger.info(`Received text: ${text}`);
+ data$.next({ rtcBackendIdentity: participantInfo.identity, data: text });
+ } else {
+ logger.warn(
+ "Received text from unknown participant",
+ participantInfo.identity,
+ );
+ }
+ };
+
+ const livekitRoomItemsSub = callViewModel.livekitRoomItems$
+ .pipe(
+ tap((beforecurrentAndPrev) => {
+ logger.info(
+ `LiveKit room items updated: ${beforecurrentAndPrev.length}`,
+ beforecurrentAndPrev,
+ );
+ }),
+ currentAndPrev,
+ tap((aftercurrentAndPrev) => {
+ logger.info(
+ `LiveKit room items updated: ${aftercurrentAndPrev.current.length}, ${aftercurrentAndPrev.prev.length}`,
+ aftercurrentAndPrev,
+ );
+ }),
+ )
+ .subscribe({
+ next: ({ prev, current }) => {
+ const prevRooms = prev.map((i) => i.livekitRoom);
+ const currentRooms = current.map((i) => i.livekitRoom);
+ const addedRooms = currentRooms.filter((r) => !prevRooms.includes(r));
+ const removedRooms = prevRooms.filter((r) => !currentRooms.includes(r));
+ addedRooms.forEach((r) => {
+ logger.info(`Registering text stream handler for room `);
+ r.registerTextStreamHandler(
+ TEXT_LK_TOPIC,
+ (reader, participantInfo) =>
+ void lkTextStreamHandlerFunction(reader, participantInfo, r),
+ );
+ });
+ removedRooms.forEach((r) => {
+ logger.info(`Unregistering text stream handler for room `);
+ r.unregisterTextStreamHandler(TEXT_LK_TOPIC);
+ });
+ },
+ complete: () => {
+ logger.info("Livekit room items subscription completed");
+ for (const item of callViewModel.livekitRoomItems$.value) {
+ logger.info("unregistering room item from room", item.url);
+ item.livekitRoom.unregisterTextStreamHandler(TEXT_LK_TOPIC);
+ }
+ },
+ });
+
+ // create sendData function
+ const sendFn: Behavior<(data: string) => Promise> =
+ scope.behavior(
+ callViewModel.localMatrixLivekitMember$.pipe(
+ switchMap((m) => {
+ if (!m)
+ return of((data: string): never => {
+ throw Error("local membership not yet ready.");
+ });
+ return m.participant.value$.pipe(
+ map((p) => {
+ if (p === null) {
+ return (data: string): never => {
+ throw Error("local participant not yet ready to send data.");
+ };
+ } else {
+ return async (data: string): Promise =>
+ p.sendText(data, { topic: TEXT_LK_TOPIC });
+ }
+ }),
+ );
+ }),
+ ),
+ );
+
+ const sendData = async (data: unknown): Promise => {
+ const dataString = JSON.stringify(data);
+ logger.info("try sending: ", dataString);
+ try {
+ await Promise.resolve();
+ const info = await sendFn.value(dataString);
+ logger.info(`Sent text with stream ID: ${info.id}`);
+ } catch (e) {
+ logger.error("failed sending: ", dataString, e);
+ }
+ };
+
+ const sendRoomMessage = async (message: string): Promise => {
+ const messageString = JSON.stringify(message);
+ logger.info("try sending to room: ", messageString);
+ try {
+ await client.sendTextMessage(room.roomId, message);
+ } catch (e) {
+ logger.error("failed sending to room: ", messageString, e);
+ }
+ };
+
+ // after hangup gets called
+ const leaveSubs = callViewModel.leave$.subscribe(() => {
+ const scheduleWidgetCloseOnLeave = async (): Promise => {
+ const leaveResolver = Promise.withResolvers();
+ logger.info("waiting for RTC leave");
+ rtcSession.on(MatrixRTCSessionEvent.JoinStateChanged, (isJoined) => {
+ logger.info("received RTC join update: ", isJoined);
+ if (!isJoined) leaveResolver.resolve();
+ });
+ await leaveResolver.promise;
+ logger.info("send Unstick");
+ await widget.api
+ .setAlwaysOnScreen(false)
+ .catch((e) =>
+ logger.error(
+ "Failed to set call widget `alwaysOnScreen` to false",
+ e,
+ ),
+ );
+ logger.info("send Close");
+ await widget.api.transport
+ .send(ElementWidgetActions.Close, {})
+ .catch((e) => logger.error("Failed to send close action", e));
+ };
+
+ // schedule close first and then leave (scope.end)
+ void scheduleWidgetCloseOnLeave();
+ });
+
+ logger.info("createMatrixRTCSdk done");
+
+ return {
+ join: (): void => {
+ // first lets try making the widget sticky
+ if (sticky) tryMakeSticky(widget);
+ callViewModel.join();
+ },
+ leave: (): void => {
+ callViewModel.leave();
+ },
+ stop: (): void => {
+ leaveSubs.unsubscribe();
+ livekitRoomItemsSub.unsubscribe();
+ scope.end();
+ },
+ data$,
+ localMember$: scope.behavior(
+ callViewModel.localMatrixLivekitMember$.pipe(
+ tap((member) =>
+ logger.info("localMatrixLivekitMember$ next: ", member),
+ ),
+ switchMap((member) => {
+ if (member === null) return of(null);
+ return combineLatest([
+ member.connection$,
+ member.membership$,
+ member.participant.value$,
+ ]).pipe(
+ map(([connection, membership, participant]) => ({
+ connection,
+ membership,
+ participant,
+ })),
+ );
+ }),
+ tap((member) => logger.info("localMember$ next: ", member)),
+ ),
+ ),
+ connected$: callViewModel.connected$,
+ remoteMembers$: scope.behavior(
+ callViewModel.remoteMatrixLivekitMembers$.pipe(
+ switchMap((members) => {
+ const listOfMemberObservables = members.map((member) =>
+ combineLatest([
+ member.connection$,
+ member.membership$,
+ member.participant.value$,
+ ]).pipe(
+ map(([connection, membership, participant]) => ({
+ connection,
+ membership,
+ participant,
+ })),
+ // using shareReplay instead of a Behavior here because the behavior would need
+ // a tricky scope.end() setup.
+ shareReplay({ bufferSize: 1, refCount: true }),
+ ),
+ );
+ return combineLatest(listOfMemberObservables);
+ }),
+ ),
+ [],
+ ),
+ sendData,
+ sendRoomMessage,
+ };
+}
diff --git a/src/@types/dom-mediacapture-transform.d.ts b/src/@types/dom-mediacapture-transform.d.ts
new file mode 100644
index 000000000..ed0a1e4a1
--- /dev/null
+++ b/src/@types/dom-mediacapture-transform.d.ts
@@ -0,0 +1,147 @@
+/* eslint-disable */
+// The contents of this file below the line are copied from
+// @types/dom-mediacapture-transform, which is inlined here into Element Call so
+// that we can avoid the package's dependency on @types/dom-webcodecs, which is
+// broken in TypeScript 5.9.
+// (https://github.com/DefinitelyTyped/DefinitelyTyped/discussions/74294)
+// If that issue is resolved, we can remove this file and return to depending on
+// @types/dom-mediacapture-transform.
+// -----------------------------------------------------------------------------
+
+// This project is licensed under the MIT license.
+// Copyrights are respective of each contributor listed at the beginning of each definition file.
+
+// 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.
+
+// In general, these types are only available behind a command line flag or an origin trial in
+// Chrome 90+.
+
+// This API depends on WebCodecs.
+
+// Versioning:
+// Until the above-mentioned spec is finalized, the major version number is 0. Although not
+// necessary for version 0, consider incrementing the minor version number for breaking changes.
+
+// The following modify existing DOM types to allow defining type-safe APIs on audio and video tracks.
+
+/** Specialize MediaStreamTrack so that we can refer specifically to an audio track. */
+interface MediaStreamAudioTrack extends MediaStreamTrack {
+ readonly kind: "audio";
+ clone(): MediaStreamAudioTrack;
+}
+
+/** Specialize MediaStreamTrack so that we can refer specifically to a video track. */
+interface MediaStreamVideoTrack extends MediaStreamTrack {
+ readonly kind: "video";
+ clone(): MediaStreamVideoTrack;
+}
+
+/** Assert that getAudioTracks and getVideoTracks return the tracks with the appropriate kind. */
+interface MediaStream {
+ getAudioTracks(): MediaStreamAudioTrack[];
+ getVideoTracks(): MediaStreamVideoTrack[];
+}
+
+// The following were originally generated from the spec using
+// https://github.com/microsoft/TypeScript-DOM-lib-generator, then heavily modified.
+
+/**
+ * A track sink that is capable of exposing the unencoded frames from the track to a
+ * ReadableStream, and exposes a control channel for signals going in the oppposite direction.
+ */
+interface MediaStreamTrackProcessor {
+ /**
+ * Allows reading the frames flowing through the MediaStreamTrack provided to the constructor.
+ */
+ readonly readable: ReadableStream;
+ /** Allows sending control signals to the MediaStreamTrack provided to the constructor. */
+ readonly writableControl: WritableStream;
+}
+
+declare var MediaStreamTrackProcessor: {
+ prototype: MediaStreamTrackProcessor;
+
+ /** Constructor overrides based on the type of track. */
+ new (
+ init: MediaStreamTrackProcessorInit & { track: MediaStreamAudioTrack },
+ ): MediaStreamTrackProcessor;
+ new (
+ init: MediaStreamTrackProcessorInit & { track: MediaStreamVideoTrack },
+ ): MediaStreamTrackProcessor;
+};
+
+interface MediaStreamTrackProcessorInit {
+ track: MediaStreamTrack;
+ /**
+ * If media frames are not read from MediaStreamTrackProcessor.readable quickly enough, the
+ * MediaStreamTrackProcessor will internally buffer up to maxBufferSize of the frames produced
+ * by the track. If the internal buffer is full, each time the track produces a new frame, the
+ * oldest frame in the buffer will be dropped and the new frame will be added to the buffer.
+ */
+ maxBufferSize?: number | undefined;
+}
+
+/**
+ * Takes video frames as input, and emits control signals that result from subsequent processing.
+ */
+interface MediaStreamTrackGenerator<
+ T extends AudioData | VideoFrame,
+> extends MediaStreamTrack {
+ /**
+ * Allows writing media frames to the MediaStreamTrackGenerator, which is itself a
+ * MediaStreamTrack. When a frame is written to writable, the frame’s close() method is
+ * automatically invoked, so that its internal resources are no longer accessible from
+ * JavaScript.
+ */
+ readonly writable: WritableStream;
+ /**
+ * Allows reading control signals sent from any sinks connected to the
+ * MediaStreamTrackGenerator.
+ */
+ readonly readableControl: ReadableStream;
+}
+
+type MediaStreamAudioTrackGenerator = MediaStreamTrackGenerator &
+ MediaStreamAudioTrack;
+type MediaStreamVideoTrackGenerator = MediaStreamTrackGenerator &
+ MediaStreamVideoTrack;
+
+declare var MediaStreamTrackGenerator: {
+ prototype: MediaStreamTrackGenerator;
+
+ /** Constructor overrides based on the type of track. */
+ new (
+ init: MediaStreamTrackGeneratorInit & {
+ kind: "audio";
+ signalTarget?: MediaStreamAudioTrack | undefined;
+ },
+ ): MediaStreamAudioTrackGenerator;
+ new (
+ init: MediaStreamTrackGeneratorInit & {
+ kind: "video";
+ signalTarget?: MediaStreamVideoTrack | undefined;
+ },
+ ): MediaStreamVideoTrackGenerator;
+};
+
+interface MediaStreamTrackGeneratorInit {
+ kind: MediaStreamTrackGeneratorKind;
+ /**
+ * (Optional) track to which the MediaStreamTrackGenerator will automatically forward control
+ * signals. If signalTarget is provided and signalTarget.kind and kind do not match, the
+ * MediaStreamTrackGenerator’s constructor will raise an exception.
+ */
+ signalTarget?: MediaStreamTrack | undefined;
+}
+
+type MediaStreamTrackGeneratorKind = "audio" | "video";
+
+type MediaStreamTrackSignalType = "request-frame";
+
+interface MediaStreamTrackSignal {
+ signalType: MediaStreamTrackSignalType;
+}
diff --git a/src/@types/mdx.d.ts b/src/@types/mdx.d.ts
new file mode 100644
index 000000000..75b63feac
--- /dev/null
+++ b/src/@types/mdx.d.ts
@@ -0,0 +1,12 @@
+/*
+Copyright 2026 Element Creations Ltd.
+
+SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
+Please see LICENSE in the repository root for full details.
+*/
+
+import { JSX as ReactJSX } from "react";
+
+declare module "mdx/types.js" {
+ export import JSX = ReactJSX;
+}
diff --git a/src/App.tsx b/src/App.tsx
index 549a98f20..8f6ef21a1 100644
--- a/src/App.tsx
+++ b/src/App.tsx
@@ -5,7 +5,14 @@ SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
Please see LICENSE in the repository root for full details.
*/
-import { type FC, type JSX, Suspense, useEffect, useState } from "react";
+import {
+ type FC,
+ type JSX,
+ Suspense,
+ useEffect,
+ useMemo,
+ useState,
+} from "react";
import { BrowserRouter, Route, useLocation, Routes } from "react-router-dom";
import * as Sentry from "@sentry/react";
import { TooltipProvider } from "@vector-im/compound-web";
@@ -17,11 +24,14 @@ import { RegisterPage } from "./auth/RegisterPage";
import { RoomPage } from "./room/RoomPage";
import { ClientProvider } from "./ClientContext";
import { ErrorPage, LoadingPage } from "./FullScreenView";
-import { DisconnectedBanner } from "./DisconnectedBanner";
import { Initializer } from "./initializer";
-import { MediaDevicesProvider } from "./livekit/MediaDevicesContext";
import { widget } from "./widget";
import { useTheme } from "./useTheme";
+import { ProcessorProvider } from "./livekit/TrackProcessorContext";
+import { type AppViewModel } from "./state/AppViewModel";
+import { MediaDevicesContext } from "./MediaDevicesContext";
+import { getUrlParams, HeaderStyle, useUrlParams } from "./UrlParams";
+import { AppBar } from "./AppBar";
const SentryRoute = Sentry.withSentryReactRouterV7Routing(Route);
@@ -31,25 +41,27 @@ interface SimpleProviderProps {
const BackgroundProvider: FC = ({ children }) => {
const { pathname } = useLocation();
+ const { background } = useUrlParams();
useEffect(() => {
- let backgroundImage = "";
- if (!["/login", "/register"].includes(pathname) && !widget) {
- backgroundImage = "var(--background-gradient)";
- }
+ document
+ .getElementsByTagName("body")[0]
+ .setAttribute("data-background", background);
+ }, [pathname, background]);
- document.getElementsByTagName("body")[0].style.backgroundImage =
- backgroundImage;
- }, [pathname]);
-
- return <>{children}>;
+ return children;
};
+
const ThemeProvider: FC = ({ children }) => {
useTheme();
return children;
};
-export const App: FC = () => {
+interface Props {
+ vm: AppViewModel;
+}
+
+export const App: FC = ({ vm }) => {
const [loaded, setLoaded] = useState(false);
useEffect(() => {
Initializer.init()
@@ -61,39 +73,42 @@ export const App: FC = () => {
.catch(logger.error);
});
+ // Since we are outside the router component, we cannot use useUrlParams here
+ const { header } = useMemo(getUrlParams, []);
+
+ const content = loaded ? (
+
+
+
+ }
+ >
+
+ } />
+ } />
+ } />
+ } />
+
+
+
+
+
+ ) : (
+
+ );
+
return (
- // eslint-disable-next-line @typescript-eslint/ban-ts-comment
- // @ts-ignore
- {loaded ? (
-
-
-
- (
-
- )}
- >
-
-
- } />
- } />
- }
- />
- } />
-
-
-
-
-
- ) : (
-
- )}
+
+ {header === HeaderStyle.AppBar ? (
+ {content}
+ ) : (
+ content
+ )}
+
diff --git a/src/AppBar.module.css b/src/AppBar.module.css
new file mode 100644
index 000000000..cc63854e7
--- /dev/null
+++ b/src/AppBar.module.css
@@ -0,0 +1,179 @@
+.bar {
+ flex-shrink: 0;
+ position: relative;
+ z-index: var(--call-view-header-footer-layer);
+ padding-left: var(--content-inset-left);
+ padding-right: var(--content-inset-right);
+ padding-top: env(safe-area-inset-top);
+ opacity: 1;
+ transition: opacity 0.15s;
+}
+
+/* Pseudo-element for the gradient background */
+.bar::before {
+ content: "";
+ position: absolute;
+ inset-inline: 0;
+ /* Extend the gradient beyond the bottom of the header for readability */
+ inset-block: 0 -16px;
+ background: linear-gradient(
+ 0deg,
+ rgba(0, 0, 0, 0) 0%,
+ var(--cpd-color-bg-canvas-default) 100%
+ );
+}
+
+.bar.hidden {
+ opacity: 0;
+ pointer-events: none;
+ /* Switch to position: absolute so the bar takes up no space in the layout
+ when hidden. */
+ position: absolute;
+ inset-block-start: 0;
+ inset-inline: 0;
+}
+
+.bar:has(:focus-visible) {
+ opacity: 1;
+ pointer-events: initial;
+}
+
+.bar > header {
+ flex-shrink: 0;
+ position: sticky;
+ inset-inline: 0;
+ inset-block-start: 0;
+ display: grid;
+ grid-template-columns: 1fr auto 1fr;
+ grid-template-rows:
+ var(--cpd-space-3x) minmax(var(--cpd-space-10x), auto)
+ var(--cpd-space-3x);
+ grid-template-areas:
+ ". . ."
+ "primaryButton title secondaryButton"
+ ". . .";
+ place-items: center;
+ column-gap: var(--cpd-space-2x);
+}
+
+.bar:has(.subtitle) > header {
+ grid-template-rows:
+ var(--cpd-space-3x) minmax(var(--cpd-space-10x), auto) var(--cpd-space-5x)
+ minmax(var(--cpd-space-8x), auto);
+ grid-template-areas:
+ ". . ."
+ "primaryButton title secondaryButton"
+ ". . ."
+ "subtitle subtitle subtitle";
+}
+
+/* Hide everything but the subtitle in small windows */
+@media (max-height: 450px) {
+ .bar {
+ display: none;
+ }
+
+ .bar:has(.subtitle) {
+ display: initial;
+
+ .title,
+ .primaryButton,
+ .secondaryButton {
+ display: none;
+ }
+
+ > header {
+ grid-template-columns: 1fr;
+ grid-template-rows: var(--cpd-space-5x) minmax(var(--cpd-space-5x), auto);
+ grid-template-areas: "." "subtitle";
+ }
+ }
+}
+
+.primaryButton {
+ grid-area: primaryButton;
+ justify-self: start;
+}
+
+.title {
+ grid-area: title;
+}
+
+.subtitle {
+ grid-area: subtitle;
+
+ svg {
+ color: var(--cpd-color-icon-tertiary);
+ margin-inline-end: var(--cpd-space-2x);
+ block-size: 1.2em;
+ inline-size: 1.2em;
+ vertical-align: text-bottom;
+ }
+}
+
+.title,
+.subtitle {
+ margin: 0;
+ overflow: hidden;
+ text-overflow: ellipsis;
+ white-space: nowrap;
+}
+
+.secondaryButton {
+ grid-area: secondaryButton;
+ justify-self: end;
+}
+
+.primaryButton,
+.secondaryButton {
+ svg * {
+ color: var(--cpd-color-icon-primary);
+ }
+}
+
+body[data-platform="ios"] {
+ .bar > header {
+ grid-template-rows: minmax(var(--cpd-space-11x), auto) var(--cpd-space-4x);
+ grid-template-areas: "primaryButton title secondaryButton";
+ }
+
+ .bar:has(.subtitle) > header {
+ grid-template-rows:
+ minmax(var(--cpd-space-6x), auto) minmax(var(--cpd-space-5x), auto)
+ var(--cpd-space-4x);
+ grid-template-areas:
+ "primaryButton title secondaryButton"
+ "primaryButton subtitle secondaryButton";
+
+ .title {
+ align-self: end;
+ /* Nudge the title and subtitle even closer together to replicate native
+ iOS styles */
+ transform: translateY(2px);
+ }
+
+ .subtitle {
+ align-self: start;
+ }
+ }
+
+ .subtitle {
+ color: var(--cpd-color-text-secondary);
+
+ svg {
+ display: none;
+ }
+ }
+
+ /* Hide everything but the subtitle in small windows */
+ @media (max-height: 450px) {
+ .bar:has(.subtitle) > header {
+ grid-template-rows: var(--cpd-space-4x) minmax(var(--cpd-space-5x), auto);
+ grid-template-areas: "." "subtitle";
+ }
+
+ .subtitle {
+ color: var(--cpd-color-text-primary);
+ }
+ }
+}
diff --git a/src/AppBar.test.tsx b/src/AppBar.test.tsx
new file mode 100644
index 000000000..29380b97f
--- /dev/null
+++ b/src/AppBar.test.tsx
@@ -0,0 +1,37 @@
+/*
+Copyright 2025 New Vector Ltd.
+
+SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
+Please see LICENSE in the repository root for full details.
+*/
+
+import { type FC, type ReactNode } from "react";
+import { render } from "@testing-library/react";
+import { describe, expect, it } from "vitest";
+import { TooltipProvider } from "@vector-im/compound-web";
+
+import { AppBar, useAppBarSubtitle, useAppBarTitle } from "./AppBar";
+
+const content =
This is the content.
;
+
+function snapshotAppBar(content: ReactNode): void {
+ const { container } = render(
+
+ {content}
+ ,
+ );
+ expect(container).toMatchSnapshot();
+}
+
+describe("AppBar", () => {
+ it("renders", () => snapshotAppBar(content));
+
+ it("renders with title and subtitle", () => {
+ const TestComponent: FC = () => {
+ useAppBarTitle("Title");
+ useAppBarSubtitle("Subtitle");
+ return content;
+ };
+ snapshotAppBar();
+ });
+});
diff --git a/src/AppBar.tsx b/src/AppBar.tsx
new file mode 100644
index 000000000..18314dd32
--- /dev/null
+++ b/src/AppBar.tsx
@@ -0,0 +1,213 @@
+/*
+Copyright 2025 New Vector Ltd.
+
+SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
+Please see LICENSE in the repository root for full details.
+*/
+
+import {
+ use,
+ useCallback,
+ useEffect,
+ useMemo,
+ useState,
+ createContext,
+ type FC,
+ type MouseEvent,
+ type ReactNode,
+} from "react";
+import classNames from "classnames";
+import { Heading, IconButton, Text, Tooltip } from "@vector-im/compound-web";
+import {
+ ArrowLeftIcon,
+ ChevronLeftIcon,
+ CollapseIcon,
+} from "@vector-im/compound-design-tokens/assets/web/icons";
+import { useTranslation } from "react-i18next";
+import { logger } from "matrix-js-sdk/lib/logger";
+
+import { platform } from "./Platform";
+import styles from "./AppBar.module.css";
+
+interface AppBarContext {
+ setTitle: (value: string) => void;
+ setSubtitle: (value: ReactNode) => void;
+ setSecondaryButton: (value: ReactNode) => void;
+ setPrimaryButtonIconKind: (value: "back" | "minimise") => void;
+ setHidden: (value: boolean) => void;
+}
+
+const AppBarContext = createContext(null);
+
+interface Props {
+ children: ReactNode;
+}
+
+/**
+ * A "top app bar" featuring a back button, title and possibly a secondary
+ * button, similar to what you might see in mobile apps.
+ */
+export const AppBar: FC = ({ children }) => {
+ const { t } = useTranslation();
+ const onBackClick = useCallback((e: MouseEvent) => {
+ e.preventDefault();
+ window.controls.onBackButtonPressed?.();
+ }, []);
+
+ const [title, setTitle] = useState("");
+ const [subtitle, setSubtitle] = useState(undefined);
+ const [hidden, setHidden] = useState(false);
+ const [secondaryButton, setSecondaryButton] = useState(
+ null,
+ );
+ const [primaryButtonIcon, setPrimaryButtonIconKind] = useState<
+ "back" | "minimise"
+ >("minimise");
+
+ const context = useMemo(
+ () => ({
+ setTitle,
+ setSubtitle,
+ setSecondaryButton,
+ setHidden,
+ setPrimaryButtonIconKind,
+ }),
+ [
+ setTitle,
+ setSubtitle,
+ setHidden,
+ setSecondaryButton,
+ setPrimaryButtonIconKind,
+ ],
+ );
+
+ const BackIcon = platform === "android" ? ArrowLeftIcon : ChevronLeftIcon;
+
+ return (
+ <>
+ {/* Wrap the header in a div due to annoying z-index issues with the
+ gradient background */}
+
-
-
-
-
-
-
-
-
+ {header === "standard" && (
+
+
+
+
+
+
+
+
+ )}
diff --git a/src/home/useGroupCallRooms.ts b/src/home/useGroupCallRooms.ts
index 45b893e3e..977b59aba 100644
--- a/src/home/useGroupCallRooms.ts
+++ b/src/home/useGroupCallRooms.ts
@@ -81,8 +81,9 @@ function sortRooms(client: MatrixClient, rooms: Room[]): Room[] {
}
const roomIsJoinable = (room: Room): boolean => {
- if (!room.hasEncryptionStateEvent() && !getKeyForRoom(room.roomId)) {
- // if we have an non encrypted room (no encryption state event) we need a locally stored shared key.
+ const password = getKeyForRoom(room.roomId);
+ if (!room.hasEncryptionStateEvent() && !password) {
+ // if we have a non encrypted room (no encryption state event) we need a locally stored shared key.
// in case this key also does not exists we cannot join the room.
return false;
}
@@ -112,19 +113,49 @@ const roomIsJoinable = (room: Room): boolean => {
}
};
+/**
+ * Determines if a given room has call events in it, and therefore
+ * is likely to be a call room.
+ * @param room The Matrix room instance.
+ * @returns `true` if the room has call events.
+ */
const roomHasCallMembershipEvents = (room: Room): boolean => {
- switch (room.getMyMembership()) {
- case KnownMembership.Join:
- return !!room
- .getLiveTimeline()
- .getState(EventTimeline.FORWARDS)
- ?.events?.get(EventType.GroupCallMemberPrefix);
- case KnownMembership.Knock:
- // Assume that a room you've knocked on is able to hold calls
- return true;
- default:
- return false;
+ // Check our room membership first, to rule out any rooms
+ // we can't have a call in.
+ const myMembership = room.getMyMembership();
+ if (myMembership === KnownMembership.Knock) {
+ // Assume that a room you've knocked on is able to hold calls
+ return true;
+ } else if (myMembership !== KnownMembership.Join) {
+ // Otherwise, non-joined rooms should never show up.
+ return false;
}
+
+ // Legacy member state checks (cheaper to check.)
+ const timeline = room.getLiveTimeline();
+ if (
+ timeline
+ .getState(EventTimeline.FORWARDS)
+ ?.events?.has(EventType.GroupCallMemberPrefix)
+ ) {
+ return true;
+ }
+
+ // Check for *active* calls using sticky events.
+ for (const sticky of room._unstable_getStickyEvents()) {
+ if (sticky.getType() === EventType.RTCMembership) {
+ return true;
+ }
+ }
+
+ // Otherwise, check recent event history to see if anyone had
+ // sent a call membership in here.
+ return timeline.getEvents().some(
+ (e) =>
+ // Membership events only count if both of these are true
+ e.unstableStickyInfo && e.getType() === EventType.GroupCallMemberPrefix,
+ );
+ // Otherwise, it's *unlikely* this room was ever a call.
};
export function useGroupCallRooms(client: MatrixClient): GroupCallRoom[] {
diff --git a/src/icons/FullScreenMaximise.svg b/src/icons/FullScreenMaximise.svg
new file mode 100644
index 000000000..1814f16e2
--- /dev/null
+++ b/src/icons/FullScreenMaximise.svg
@@ -0,0 +1,6 @@
+
diff --git a/src/icons/FullScreenMinimise.svg b/src/icons/FullScreenMinimise.svg
new file mode 100644
index 000000000..204259e2f
--- /dev/null
+++ b/src/icons/FullScreenMinimise.svg
@@ -0,0 +1,6 @@
+
diff --git a/src/icons/StarSelected.svg b/src/icons/StarSelected.svg
index 69a8ce80e..8004b0e48 100644
--- a/src/icons/StarSelected.svg
+++ b/src/icons/StarSelected.svg
@@ -1,3 +1,3 @@
\ No newline at end of file
+
+
diff --git a/src/icons/StarUnselected.svg b/src/icons/StarUnselected.svg
index be2819473..7a28ee950 100644
--- a/src/icons/StarUnselected.svg
+++ b/src/icons/StarUnselected.svg
@@ -1,4 +1,4 @@
-
\ No newline at end of file
+
diff --git a/src/index.css b/src/index.css
index 883481b10..660745692 100644
--- a/src/index.css
+++ b/src/index.css
@@ -28,23 +28,30 @@ layer(compound);
--font-size-title: calc(24px * var(--font-scale));
--font-size-headline: calc(32px * var(--font-scale));
- /* These colors are needed during the transitionary period between the old and
- new Compound design systems, but should be removed ASAP */
- --stopgap-color-on-solid-accent: var(--cpd-color-bg-canvas-default);
- --stopgap-background-85: rgba(255, 255, 255, 0.85);
- --stopgap-bgColor3: #444;
-
--cpd-color-border-accent: var(--cpd-color-green-800);
/* The distance to inset non-full-width content from the edge of the window
along the inline axis. This ramps up from 16px for typical mobile windows, to
- 96px for typical desktop windows. */
- --inline-content-inset: min(
- var(--cpd-space-24x),
- max(var(--cpd-space-4x), calc((100vw - 900px) / 3))
+ 96px for typical desktop windows, and accounts for the safe area. */
+ --content-inset-left: calc(
+ env(safe-area-inset-left) +
+ min(
+ var(--cpd-space-24x),
+ max(var(--cpd-space-4x), calc((100vw - 900px) / 3))
+ )
+ );
+ --content-inset-right: calc(
+ env(safe-area-inset-right) +
+ min(
+ var(--cpd-space-24x),
+ max(var(--cpd-space-4x), calc((100vw - 900px) / 3))
+ )
);
--small-drop-shadow: 0px 1.2px 2.4px 0px rgba(0, 0, 0, 0.15);
+ --big-drop-shadow: 0px 0px 24px 0px #1b1d221a;
--subtle-drop-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
- --background-gradient: url("graphics/backgroundGradient.svg");
+
+ --call-view-overlay-layer: 1;
+ --call-view-header-footer-layer: 2;
}
:root,
@@ -60,9 +67,6 @@ layer(compound);
body {
background-color: var(--cpd-color-bg-canvas-default);
- background-size: calc(max(1440px, 100vw)) calc(max(800px, 100vh));
- background-repeat: no-repeat;
- background-position: center;
color: var(--cpd-color-text-primary);
color-scheme: dark;
margin: 0;
@@ -71,6 +75,31 @@ body {
-webkit-tap-highlight-color: transparent;
}
+@media (min-height: 330px) {
+ body[data-background="gradient"]::before {
+ content: "";
+ position: fixed;
+ inset: 0;
+ background-image: url("graphics/mobile-gradient.svg");
+ background-size: auto;
+ background-position: bottom;
+ background-repeat: no-repeat;
+ }
+
+ body[data-background="gradient"][data-platform="desktop"]::before {
+ background-image: url("graphics/desktop-gradient.svg");
+ background-size: calc(max(1440px, 100vw)) calc(max(800px, 100vh));
+ background-position: center;
+ }
+}
+
+/* This prohibits the view to scroll for pages smaller than 122px in width
+we use this for mobile pip webviews */
+.no-scroll-body {
+ position: fixed;
+ width: 100%;
+}
+
/* We use this to not render the page at all until we know the theme.*/
.no-theme {
opacity: 0;
diff --git a/src/initializer.test.ts b/src/initializer.test.ts
index 0e43ed1f6..6439c015c 100644
--- a/src/initializer.test.ts
+++ b/src/initializer.test.ts
@@ -18,7 +18,7 @@ import {
import { mockConfig } from "./utils/test";
-const sentryInitSpy = vi.fn();
+const sentryInitSpy = vi.hoisted(() => vi.fn());
// Place the mock after the spy is defined
vi.mock("@sentry/react", () => ({
diff --git a/src/initializer.tsx b/src/initializer.tsx
index 1087dc947..7c6fc529d 100644
--- a/src/initializer.tsx
+++ b/src/initializer.tsx
@@ -16,19 +16,24 @@ import LanguageDetector from "i18next-browser-languagedetector";
import * as Sentry from "@sentry/react";
import { logger } from "matrix-js-sdk/lib/logger";
import { shouldPolyfill as shouldPolyfillSegmenter } from "@formatjs/intl-segmenter/should-polyfill";
-import { shouldPolyfill as shouldPolyfillDurationFormat } from "@formatjs/intl-durationformat/should-polyfill";
+import { shouldPolyfill as shouldPolyfillDurationFormat } from "@formatjs/intl-durationformat/should-polyfill.js";
import {
useLocation,
useNavigationType,
createRoutesFromChildren,
matchRoutes,
} from "react-router-dom";
+import {
+ setLogExtension as setLKLogExtension,
+ setLogLevel as setLKLogLevel,
+} from "livekit-client";
import { getUrlParams } from "./UrlParams";
import { Config } from "./config/Config";
-import { ElementCallOpenTelemetry } from "./otel/otel";
import { platform } from "./Platform";
import { isFailure } from "./utils/fetch";
+import { initializeWidget } from "./widget";
+import { enableExtendedLivekitLogs } from "./settings/settings.ts";
// This generates a map of locale names to their URL (based on import.meta.url), which looks like this:
// {
@@ -101,7 +106,6 @@ enum LoadState {
class DependencyLoadStates {
public config: LoadState = LoadState.None;
public sentry: LoadState = LoadState.None;
- public openTelemetry: LoadState = LoadState.None;
public allDepsAreLoaded(): boolean {
return !Object.values(this).some((s) => s !== LoadState.Loaded);
@@ -117,13 +121,15 @@ export class Initializer {
}
public static async initBeforeReact(): Promise {
+ initializeWidget();
+
const polyfills: Promise[] = [];
if (shouldPolyfillSegmenter()) {
polyfills.push(import("@formatjs/intl-segmenter/polyfill-force"));
}
if (shouldPolyfillDurationFormat()) {
- polyfills.push(import("@formatjs/intl-durationformat/polyfill-force"));
+ polyfills.push(import("@formatjs/intl-durationformat/polyfill-force.js"));
}
await Promise.all(polyfills);
@@ -136,6 +142,11 @@ export class Initializer {
lookup: () => getUrlParams().lang ?? undefined,
});
+ // Synchronise the HTML lang attribute with the i18next language
+ i18n.on("languageChanged", (lng) => {
+ document.documentElement.lang = lng;
+ });
+
await i18n
.use(Backend)
.use(languageDetector)
@@ -183,6 +194,18 @@ export class Initializer {
// Add the platform to the DOM, so CSS can query it
document.body.setAttribute("data-platform", platform);
+
+ // livekit logging configuration
+ setLKLogExtension((level, msg, context) => {
+ // we pass a synthetic logger name of "livekit" to the rageshake to make it easier to read
+ global.mx_rage_logger.log(level, "livekit", msg, context);
+ });
+
+ enableExtendedLivekitLogs.value$.subscribe((enabled) => {
+ setLKLogLevel(enabled ? "trace" : "info");
+ });
+
+ window.setLKLogLevel = setLKLogLevel;
}
public static init(): Promise | null {
@@ -261,15 +284,6 @@ export class Initializer {
this.loadStates.sentry = LoadState.Loaded;
}
- // OpenTelemetry (also only after config loaded)
- if (
- this.loadStates.openTelemetry === LoadState.None &&
- this.loadStates.config === LoadState.Loaded
- ) {
- ElementCallOpenTelemetry.globalInit();
- this.loadStates.openTelemetry = LoadState.Loaded;
- }
-
if (this.loadStates.allDepsAreLoaded()) {
// resolve if there is no dependency that is not loaded
resolve();
diff --git a/src/input/AvatarInputField.tsx b/src/input/AvatarInputField.tsx
index 4a3173b40..f9b147076 100644
--- a/src/input/AvatarInputField.tsx
+++ b/src/input/AvatarInputField.tsx
@@ -113,7 +113,7 @@ export const AvatarInputField: FC = ({
iconOnly
Icon={EditIcon}
kind="tertiary"
- size="sm"
+ size="md"
aria-label={t("action.edit")}
/>
}
@@ -136,7 +136,7 @@ export const AvatarInputField: FC = ({
iconOnly
Icon={EditIcon}
kind="tertiary"
- size="sm"
+ size="md"
aria-label={t("action.edit")}
onClick={onSelectUpload}
/>
diff --git a/src/input/Input.module.css b/src/input/Input.module.css
index 869416b67..6c229f1c5 100644
--- a/src/input/Input.module.css
+++ b/src/input/Input.module.css
@@ -173,14 +173,6 @@ Please see LICENSE in the repository root for full details.
border-color: var(--cpd-color-border-disabled);
}
-.checkbox svg {
- display: none;
-}
-
-.checkbox svg * {
- stroke: var(--stopgap-color-on-solid-accent);
-}
-
.checkboxField input[type="checkbox"]:checked + label > .checkbox {
background: var(--cpd-color-text-action-accent);
border-color: var(--cpd-color-text-action-accent);
diff --git a/src/input/Input.tsx b/src/input/Input.tsx
index 82b961090..1f6d35e8d 100644
--- a/src/input/Input.tsx
+++ b/src/input/Input.tsx
@@ -9,10 +9,10 @@ import {
type ChangeEvent,
type FC,
type ForwardedRef,
- forwardRef,
type ReactNode,
useId,
type JSX,
+ type Ref,
} from "react";
import classNames from "classnames";
@@ -54,6 +54,7 @@ function Field({ children, className }: FieldProps): JSX.Element {
}
interface InputFieldProps {
+ ref?: Ref;
label?: string;
type: string;
prefix?: string;
@@ -78,88 +79,81 @@ interface InputFieldProps {
onChange?: (event: ChangeEvent) => void;
}
-export const InputField = forwardRef<
- HTMLInputElement | HTMLTextAreaElement,
- InputFieldProps
->(
- (
- {
- id,
- label,
- className,
- type,
- checked,
- prefix,
- suffix,
- description,
- disabled,
- min,
- ...rest
- },
- ref,
- ) => {
- const descriptionId = useId();
+export const InputField: FC = ({
+ ref,
+ id,
+ label,
+ className,
+ type,
+ checked,
+ prefix,
+ suffix,
+ description,
+ disabled,
+ min,
+ ...rest
+}) => {
+ const descriptionId = useId();
- return (
-
- {prefix && {prefix}}
- {type === "textarea" ? (
- // eslint-disable-next-line @typescript-eslint/ban-ts-comment
- // @ts-ignore
-
+ );
+};
InputField.displayName = "InputField";
diff --git a/src/input/StarRatingInput.stories.tsx b/src/input/StarRatingInput.stories.tsx
new file mode 100644
index 000000000..9dc43480b
--- /dev/null
+++ b/src/input/StarRatingInput.stories.tsx
@@ -0,0 +1,25 @@
+/*
+Copyright 2026 Element Creations Ltd.
+
+SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
+Please see LICENSE in the repository root for full details.
+*/
+
+import { fn } from "storybook/test";
+
+import type { Meta, StoryObj } from "@storybook/react-vite";
+import { StarRatingInput } from "./StarRatingInput";
+
+const meta = {
+ component: StarRatingInput,
+} satisfies Meta;
+
+export default meta;
+type Story = StoryObj;
+
+export const Default: Story = {
+ args: {
+ starCount: 5,
+ onChange: fn(),
+ },
+};
diff --git a/src/livekit/BlurBackgroundTransformer.ts b/src/livekit/BlurBackgroundTransformer.ts
new file mode 100644
index 000000000..f86120d33
--- /dev/null
+++ b/src/livekit/BlurBackgroundTransformer.ts
@@ -0,0 +1,80 @@
+/*
+Copyright 2024-2025 New Vector Ltd.
+
+SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
+Please see LICENSE in the repository root for full details.
+*/
+
+import {
+ BackgroundTransformer,
+ VideoTransformer,
+ type VideoTransformerInitOptions,
+} from "@livekit/track-processors";
+import { ImageSegmenter } from "@mediapipe/tasks-vision";
+
+import modelAssetPath from "../mediapipe/imageSegmenter/selfie_segmenter.tflite?url";
+
+interface WasmFileset {
+ /** The path to the Wasm loader script. */
+ wasmLoaderPath: string;
+ /** The path to the Wasm binary. */
+ wasmBinaryPath: string;
+}
+
+// The MediaPipe package, by default, ships some alternative versions of the
+// WASM files which avoid SIMD for compatibility with older browsers. But SIMD
+// in WASM is actually fine by our support policy, so we include just the SIMD
+// versions.
+// It's really not ideal that we have to reference these internal files from
+// MediaPipe and depend on node_modules having this specific structure. It's
+// easy to see this breaking if our dependencies changed and MediaPipe were
+// no longer hoisted, or if we switched to another dependency loader such as
+// yarn PnP.
+// https://github.com/google-ai-edge/mediapipe/issues/5961
+const wasmFileset: WasmFileset = {
+ wasmLoaderPath: new URL(
+ "../../node_modules/@mediapipe/tasks-vision/wasm/vision_wasm_internal.js",
+ import.meta.url,
+ ).href,
+ wasmBinaryPath: new URL(
+ "../../node_modules/@mediapipe/tasks-vision/wasm/vision_wasm_internal.wasm",
+ import.meta.url,
+ ).href,
+};
+
+/**
+ * Track processor that applies effects such as blurring to a user's background.
+ *
+ * This is just like LiveKit's prebuilt BackgroundTransformer except that it
+ * loads the segmentation models from our own bundle rather than as an external
+ * resource fetched from the public internet.
+ */
+export class BlurBackgroundTransformer extends BackgroundTransformer {
+ public async init({
+ outputCanvas,
+ inputElement: inputVideo,
+ }: VideoTransformerInitOptions): Promise {
+ // Call super.super.init() since we're totally replacing the init method of
+ // BackgroundTransformer here, rather than extending it
+ await VideoTransformer.prototype.init.call(this, {
+ outputCanvas,
+ inputElement: inputVideo,
+ });
+
+ this.imageSegmenter = await ImageSegmenter.createFromOptions(wasmFileset, {
+ baseOptions: {
+ modelAssetPath,
+ delegate: "GPU",
+ ...this.options.segmenterOptions,
+ },
+ canvas: this.canvas,
+ runningMode: "VIDEO",
+ outputCategoryMask: true,
+ outputConfidenceMasks: false,
+ });
+
+ if (this.options.blurRadius) {
+ this.gl?.setBlurRadius(this.options.blurRadius);
+ }
+ }
+}
diff --git a/src/livekit/MatrixAudioRenderer.test.tsx b/src/livekit/MatrixAudioRenderer.test.tsx
new file mode 100644
index 000000000..bc6ef6687
--- /dev/null
+++ b/src/livekit/MatrixAudioRenderer.test.tsx
@@ -0,0 +1,288 @@
+/*
+Copyright 2023, 2024 New Vector Ltd.
+
+SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
+Please see LICENSE in the repository root for full details.
+*/
+
+import { afterEach, beforeEach, expect, it, vi } from "vitest";
+import { render, type RenderResult } from "@testing-library/react";
+import {
+ getTrackReferenceId,
+ type TrackReference,
+} from "@livekit/components-core";
+import {
+ type Participant,
+ type RemoteAudioTrack,
+ type Room,
+ Track,
+} from "livekit-client";
+import { type ReactNode } from "react";
+import { useTracks } from "@livekit/components-react";
+
+import { testAudioContext } from "../useAudioContext.test";
+import * as MediaDevicesContext from "../MediaDevicesContext";
+import { LivekitRoomAudioRenderer } from "./MatrixAudioRenderer";
+import {
+ mockMediaDevices,
+ mockRemoteParticipant,
+ mockTrack,
+} from "../utils/test";
+import { initializeWidget } from "../widget";
+initializeWidget();
+export const TestAudioContextConstructor = vi.fn(
+ class {
+ public constructor() {
+ return testAudioContext;
+ }
+ },
+);
+
+const MediaDevicesProvider = MediaDevicesContext.MediaDevicesContext.Provider;
+
+beforeEach(() => {
+ vi.stubGlobal("AudioContext", TestAudioContextConstructor);
+});
+
+afterEach(() => {
+ vi.unstubAllGlobals();
+ vi.clearAllMocks();
+});
+
+vi.mock("@livekit/components-react", async (importOriginal) => {
+ return {
+ ...(await importOriginal()),
+ AudioTrack: (props: { trackRef: TrackReference }): ReactNode => {
+ return (
+
+ );
+ },
+ useTracks: vi.fn(),
+ };
+});
+
+let tracks: TrackReference[] = [];
+
+/**
+ * Render the test component with given rtc members and livekit participant identities.
+ *
+ * It is possible to have rtc members that are not in livekit (e.g. not yet joined) and vice versa.
+ *
+ * @param rtcMembers - Array of active rtc members with userId and deviceId.
+ * @param livekitParticipantIdentities - Array of livekit participant (that are publishing).
+ * @param explicitTracks - Array of tracks available in livekit, if not provided, one audio track per livekitParticipantIdentities will be created.
+ * */
+
+function renderTestComponent(
+ rtcMembers: { userId: string; deviceId: string }[],
+ livekitParticipantIdentities: string[],
+ explicitTracks?: {
+ participantId: string;
+ kind: Track.Kind;
+ source: Track.Source;
+ }[],
+): RenderResult {
+ const liveKitParticipants = livekitParticipantIdentities.map((identity) =>
+ mockRemoteParticipant({ identity }),
+ );
+ const participants = rtcMembers.flatMap(({ userId, deviceId }) => {
+ const p = liveKitParticipants.find(
+ (p) => p.identity === `${userId}:${deviceId}`,
+ );
+ return p === undefined ? [] : [p];
+ });
+ const livekitRoom = {
+ remoteParticipants: new Map(
+ liveKitParticipants.map((p) => [p.identity, p]),
+ ),
+ } as unknown as Room;
+
+ if (explicitTracks?.length ?? 0 > 0) {
+ tracks = explicitTracks!.map(({ participantId, source, kind }) => {
+ const participant =
+ liveKitParticipants.find((p) => p.identity === participantId) ??
+ mockRemoteParticipant({ identity: participantId });
+ return mockTrack(participant, kind, source);
+ });
+ } else {
+ tracks = participants.map((p) => mockTrack(p));
+ }
+
+ vi.mocked(useTracks).mockReturnValue(tracks);
+ return render(
+
+ p.identity)}
+ livekitRoom={livekitRoom}
+ url={""}
+ />
+ ,
+ );
+}
+
+it("should render for member", () => {
+ const { container, queryAllByTestId } = renderTestComponent(
+ [{ userId: "@alice", deviceId: "DEV0" }],
+ ["@alice:DEV0"],
+ );
+ expect(container).toBeTruthy();
+ expect(queryAllByTestId("audio")).toHaveLength(1);
+});
+
+it("should not render without member", () => {
+ const { container, queryAllByTestId } = renderTestComponent(
+ [{ userId: "@bob", deviceId: "DEV0" }],
+ ["@alice:DEV0"],
+ );
+ expect(container).toBeTruthy();
+ expect(queryAllByTestId("audio")).toHaveLength(0);
+});
+
+const TEST_CASES: {
+ name: string;
+ rtcUsers: { userId: string; deviceId: string }[];
+ livekitParticipantIdentities: string[];
+ explicitTracks?: {
+ participantId: string;
+ kind: Track.Kind;
+ source: Track.Source;
+ }[];
+ expectedAudioTracks: number;
+}[] = [
+ {
+ name: "single user single device",
+ rtcUsers: [
+ { userId: "@alice", deviceId: "DEV0" },
+ { userId: "@alice", deviceId: "DEV1" },
+ { userId: "@bob", deviceId: "DEV0" },
+ ],
+ livekitParticipantIdentities: ["@alice:DEV0", "@bob:DEV0", "@alice:DEV1"],
+ expectedAudioTracks: 3,
+ },
+ // Charlie is a rtc member but not in livekit
+ {
+ name: "Charlie is rtc member but not in livekit",
+ rtcUsers: [
+ { userId: "@alice", deviceId: "DEV0" },
+ { userId: "@bob", deviceId: "DEV0" },
+ { userId: "@charlie", deviceId: "DEV0" },
+ ],
+ livekitParticipantIdentities: ["@alice:DEV0", "@bob:DEV0"],
+ expectedAudioTracks: 2,
+ },
+ // Charlie is in livekit but not rtc member
+ {
+ name: "Charlie is in livekit but not rtc member",
+ rtcUsers: [
+ { userId: "@alice", deviceId: "DEV0" },
+ { userId: "@bob", deviceId: "DEV0" },
+ ],
+ livekitParticipantIdentities: ["@alice:DEV0", "@bob:DEV0", "@charlie:DEV0"],
+ expectedAudioTracks: 2,
+ },
+ {
+ name: "no audio track, only video track",
+ rtcUsers: [{ userId: "@alice", deviceId: "DEV0" }],
+ livekitParticipantIdentities: ["@alice:DEV0"],
+ explicitTracks: [
+ {
+ participantId: "@alice:DEV0",
+ kind: Track.Kind.Video,
+ source: Track.Source.Camera,
+ },
+ ],
+ expectedAudioTracks: 0,
+ },
+ {
+ name: "Audio track from unknown source",
+ rtcUsers: [{ userId: "@alice", deviceId: "DEV0" }],
+ livekitParticipantIdentities: ["@alice:DEV0"],
+ explicitTracks: [
+ {
+ participantId: "@alice:DEV0",
+ kind: Track.Kind.Audio,
+ source: Track.Source.Unknown,
+ },
+ ],
+ expectedAudioTracks: 1,
+ },
+ {
+ name: "Audio track from other device",
+ rtcUsers: [{ userId: "@alice", deviceId: "DEV0" }],
+ livekitParticipantIdentities: ["@alice:DEV0"],
+ explicitTracks: [
+ {
+ participantId: "@alice:DEV1",
+ kind: Track.Kind.Audio,
+ source: Track.Source.Microphone,
+ },
+ ],
+ expectedAudioTracks: 0,
+ },
+ {
+ name: "two audio tracks, microphone and screenshare",
+ rtcUsers: [{ userId: "@alice", deviceId: "DEV0" }],
+ livekitParticipantIdentities: ["@alice:DEV0"],
+ explicitTracks: [
+ {
+ participantId: "@alice:DEV0",
+ kind: Track.Kind.Audio,
+ source: Track.Source.Microphone,
+ },
+ {
+ participantId: "@alice:DEV0",
+ kind: Track.Kind.Audio,
+ source: Track.Source.ScreenShareAudio,
+ },
+ ],
+ expectedAudioTracks: 2,
+ },
+];
+
+it.each(TEST_CASES)(
+ `should render sound test cases $name`,
+ ({
+ rtcUsers,
+ livekitParticipantIdentities,
+ explicitTracks,
+ expectedAudioTracks,
+ }) => {
+ const { queryAllByTestId } = renderTestComponent(
+ rtcUsers,
+ livekitParticipantIdentities,
+ explicitTracks,
+ );
+ expect(queryAllByTestId("audio")).toHaveLength(expectedAudioTracks);
+ },
+);
+
+it("should not setup audioContext gain and pan if there is no need to.", () => {
+ renderTestComponent([{ userId: "@bob", deviceId: "DEV0" }], ["@bob:DEV0"]);
+ const audioTrack = tracks[0].publication.track! as RemoteAudioTrack;
+
+ expect(audioTrack.setAudioContext).toHaveBeenCalledTimes(1);
+ expect(audioTrack.setAudioContext).toHaveBeenCalledWith(undefined);
+ expect(audioTrack.setWebAudioPlugins).toHaveBeenCalledTimes(1);
+ expect(audioTrack.setWebAudioPlugins).toHaveBeenCalledWith([]);
+
+ expect(testAudioContext.gain.gain.value).toEqual(1);
+ expect(testAudioContext.pan.pan.value).toEqual(0);
+});
+
+it("should setup audioContext gain and pan", () => {
+ vi.spyOn(MediaDevicesContext, "useEarpieceAudioConfig").mockReturnValue({
+ pan: 1,
+ volume: 0.1,
+ });
+
+ renderTestComponent([{ userId: "@bob", deviceId: "DEV0" }], ["@bob:DEV0"]);
+
+ const audioTrack = tracks[0].publication.track! as RemoteAudioTrack;
+ expect(audioTrack.setAudioContext).toHaveBeenCalled();
+ expect(audioTrack.setWebAudioPlugins).toHaveBeenCalled();
+
+ expect(testAudioContext.gain.gain.value).toEqual(0.1);
+ expect(testAudioContext.pan.pan.value).toEqual(1);
+});
diff --git a/src/livekit/MatrixAudioRenderer.tsx b/src/livekit/MatrixAudioRenderer.tsx
new file mode 100644
index 000000000..e3970e9f3
--- /dev/null
+++ b/src/livekit/MatrixAudioRenderer.tsx
@@ -0,0 +1,210 @@
+/*
+Copyright 2025 New Vector Ltd.
+
+SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
+Please see LICENSE in the repository root for full details.
+*/
+
+import { getTrackReferenceId } from "@livekit/components-core";
+import { type Room as LivekitRoom } from "livekit-client";
+import { type RemoteAudioTrack, Track } from "livekit-client";
+import { useEffect, useMemo, useState, type ReactNode } from "react";
+import {
+ useTracks,
+ AudioTrack,
+ type AudioTrackProps,
+} from "@livekit/components-react";
+import { logger as rootLogger } from "matrix-js-sdk/lib/logger";
+
+import { useEarpieceAudioConfig } from "../MediaDevicesContext";
+import { useReactiveState } from "../useReactiveState";
+import * as controls from "../controls";
+
+export interface MatrixAudioRendererProps {
+ /**
+ * The service URL of the LiveKit room.
+ */
+ url: string;
+ livekitRoom: LivekitRoom;
+ /**
+ * The list of participant identities to render audio for.
+ * This list needs to be composed based on the matrixRTC members so that we do not play audio from users
+ * that are not expected to be in the rtc session (local user is excluded).
+ */
+ validIdentities: string[];
+ /**
+ * If set to `true`, mutes all audio tracks rendered by the component.
+ * @remarks
+ * If set to `true`, the server will stop sending audio track data to the client.
+ */
+ muted?: boolean;
+}
+
+/**
+ * Takes care of handling remote participants’ audio tracks and makes sure that microphones and screen share are audible.
+ *
+ * It also takes care of the earpiece audio configuration for iOS devices.
+ * This is done by using the WebAudio API to create a stereo pan effect that mimics the earpiece audio.
+ * @example
+ * ```tsx
+ *
+ *
+ *
+ * ```
+ * @public
+ */
+export function LivekitRoomAudioRenderer({
+ url,
+ livekitRoom,
+ validIdentities,
+ muted,
+}: MatrixAudioRendererProps): ReactNode {
+ const logger = rootLogger.getChild("[MatrixAudioRenderer]");
+ const tracks = useTracks(
+ [
+ Track.Source.Microphone,
+ Track.Source.ScreenShareAudio,
+ Track.Source.Unknown,
+ ],
+ {
+ updateOnlyOn: [],
+ onlySubscribed: true,
+ room: livekitRoom,
+ },
+ )
+ // Only keep audio tracks
+ .filter((ref) => ref.publication.kind === Track.Kind.Audio)
+ // Only keep tracks from participants that are in the validIdentities list
+ .filter((ref) => {
+ const isValid = validIdentities.includes(ref.participant.identity);
+ if (!isValid) {
+ // TODO make sure to also skip the warn logging for the local identity
+ // Log that there is an invalid identity, that means that someone is publishing audio that is not expected to be in the call.
+ logger.warn(
+ `Audio track ${ref.participant.identity} from ${url} has no matching matrix call member`,
+ `current members: ${validIdentities.join()}`,
+ `track will not get rendered`,
+ );
+ return false;
+ }
+ return true;
+ });
+
+ // This component is also (in addition to the "only play audio for connected members" logic above)
+ // responsible for mimicking earpiece audio on iPhones.
+ // The Safari audio devices enumeration does not expose an earpiece audio device.
+ // We alternatively use the audioContext pan node to only use one of the stereo channels.
+
+ // This component does get additionally complicated because of a Safari bug.
+ // (see: https://bugs.webkit.org/show_bug.cgi?id=251532
+ // and the related issues: https://bugs.webkit.org/show_bug.cgi?id=237878
+ // and https://bugs.webkit.org/show_bug.cgi?id=231105)
+ //
+ // AudioContext gets stopped if the webview gets moved into the background.
+ // Once the phone is in standby audio playback will stop.
+ // So we can only use the pan trick only works is the phone is not in standby.
+ // If earpiece mode is not used we do not use audioContext to allow standby playback.
+ // shouldUseAudioContext is set to false if stereoPan === 0 to allow standby bluetooth playback.
+
+ const { pan: stereoPan, volume: volumeFactor } = useEarpieceAudioConfig();
+ const shouldUseAudioContext = stereoPan !== 0;
+
+ // initialize the potentially used audio context.
+ const [audioContext, setAudioContext] = useState(
+ undefined,
+ );
+ useEffect(() => {
+ const ctx = new AudioContext();
+ setAudioContext(ctx);
+ return (): void => {
+ void ctx.close();
+ };
+ }, []);
+ const audioNodes = useMemo(
+ () => ({
+ gain: audioContext?.createGain(),
+ pan: audioContext?.createStereoPanner(),
+ }),
+ [audioContext],
+ );
+
+ // Simple effects to update the gain and pan node based on the props
+ useEffect(() => {
+ if (audioNodes.pan) audioNodes.pan.pan.value = stereoPan;
+ }, [audioNodes.pan, stereoPan]);
+ useEffect(() => {
+ if (audioNodes.gain) audioNodes.gain.gain.value = volumeFactor;
+ }, [audioNodes.gain, volumeFactor]);
+
+ return (
+ // We add all audio elements into one
for the browser developer tool experience/tidyness.
+
+ {tracks.map((trackRef) => (
+
+ ))}
+
+ );
+}
+
+interface StereoPanAudioTrackProps {
+ muted?: boolean;
+ audioContext?: AudioContext;
+ audioNodes: {
+ gain?: GainNode;
+ pan?: StereoPannerNode;
+ };
+}
+
+/**
+ * This wraps `livekit.AudioTrack` to allow adding audio nodes to a track.
+ * It main purpose is to remount the AudioTrack component when switching from
+ * audioContext to normal audio playback.
+ * As of now the AudioTrack component does not support adding audio nodes while being mounted.
+ * @param props The component props
+ * @param props.trackRef The track reference
+ * @param props.muted If the track should be muted
+ * @param props.audioContext The audio context to use
+ * @param props.audioNodes The audio nodes to use
+ * @returns
+ */
+function AudioTrackWithAudioNodes({
+ trackRef,
+ muted,
+ audioContext,
+ audioNodes,
+ ...props
+}: StereoPanAudioTrackProps &
+ AudioTrackProps &
+ React.RefAttributes): ReactNode {
+ // This is used to unmount/remount the AudioTrack component.
+ // Mounting needs to happen after the audioContext is set.
+ // (adding the audio context when already mounted did not work outside strict mode)
+ const [trackReady, setTrackReady] = useReactiveState(
+ () => false,
+ // We only want the track to reset once both (audioNodes and audioContext) are set.
+ // for unsetting the audioContext its enough if one of the two is undefined.
+ [audioContext && audioNodes],
+ );
+
+ useEffect(() => {
+ if (!trackRef || trackReady) return;
+ const track = trackRef.publication.track as RemoteAudioTrack;
+ const useContext = audioContext && audioNodes.gain && audioNodes.pan;
+ track.setAudioContext(useContext ? audioContext : undefined);
+ track.setWebAudioPlugins(
+ useContext ? [audioNodes.gain!, audioNodes.pan!] : [],
+ );
+ setTrackReady(true);
+ controls.setPlaybackStarted();
+ }, [audioContext, audioNodes, setTrackReady, trackReady, trackRef]);
+
+ return (
+ trackReady &&
+ );
+}
diff --git a/src/livekit/MediaDevicesContext.tsx b/src/livekit/MediaDevicesContext.tsx
deleted file mode 100644
index c2fc63e52..000000000
--- a/src/livekit/MediaDevicesContext.tsx
+++ /dev/null
@@ -1,257 +0,0 @@
-/*
-Copyright 2023, 2024 New Vector Ltd.
-
-SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
-Please see LICENSE in the repository root for full details.
-*/
-
-import {
- type FC,
- createContext,
- useCallback,
- useContext,
- useEffect,
- useMemo,
- useRef,
- useState,
- type JSX,
-} from "react";
-import { createMediaDeviceObserver } from "@livekit/components-core";
-import { map, startWith } from "rxjs";
-import { useObservableEagerState } from "observable-hooks";
-import { logger } from "matrix-js-sdk/lib/logger";
-
-import {
- useSetting,
- audioInput as audioInputSetting,
- audioOutput as audioOutputSetting,
- videoInput as videoInputSetting,
- type Setting,
-} from "../settings/settings";
-
-export type DeviceLabel =
- | { type: "name"; name: string }
- | { type: "number"; number: number }
- | { type: "default"; name: string | null };
-
-export interface MediaDevice {
- /**
- * A map from available device IDs to labels.
- */
- available: Map;
- selectedId: string | undefined;
- /**
- * The group ID of the selected device.
- */
- // This is exposed sort of ad-hoc because it's only needed for knowing when to
- // restart the tracks of default input devices, and ideally this behavior
- // would be encapsulated somehow…
- selectedGroupId: string | undefined;
- select: (deviceId: string) => void;
-}
-
-export interface MediaDevices {
- audioInput: MediaDevice;
- audioOutput: MediaDevice;
- videoInput: MediaDevice;
- startUsingDeviceNames: () => void;
- stopUsingDeviceNames: () => void;
-}
-
-function useMediaDevice(
- kind: MediaDeviceKind,
- setting: Setting,
- usingNames: boolean,
-): MediaDevice {
- // Make sure we don't needlessly reset to a device observer without names,
- // once permissions are already given
- const hasRequestedPermissions = useRef(false);
- const requestPermissions = usingNames || hasRequestedPermissions.current;
- hasRequestedPermissions.current ||= usingNames;
-
- // We use a bare device observer here rather than one of the fancy device
- // selection hooks from @livekit/components-react, because
- // useMediaDeviceSelect expects a room or track, which we don't have here, and
- // useMediaDevices provides no way to request device names.
- // Tragically, the only way to get device names out of LiveKit is to specify a
- // kind, which then results in multiple permissions requests.
- const deviceObserver$ = useMemo(
- () =>
- createMediaDeviceObserver(
- kind,
- () => logger.error("Error creating MediaDeviceObserver"),
- requestPermissions,
- ).pipe(startWith([])),
- [kind, requestPermissions],
- );
- const available = useObservableEagerState(
- useMemo(
- () =>
- deviceObserver$.pipe(
- map((availableRaw) => {
- // Sometimes browsers (particularly Firefox) can return multiple device
- // entries for the exact same device ID; using a map deduplicates them
- let available = new Map(
- availableRaw.map((d, i) => [
- d.deviceId,
- d.label
- ? { type: "name", name: d.label }
- : { type: "number", number: i + 1 },
- ]),
- );
- // Create a virtual default audio output for browsers that don't have one.
- // Its device ID must be the empty string because that's what setSinkId
- // recognizes.
- if (
- kind === "audiooutput" &&
- available.size &&
- !available.has("") &&
- !available.has("default")
- )
- available = new Map([
- ["", { type: "default", name: availableRaw[0]?.label || null }],
- ...available,
- ]);
- // Note: creating virtual default input devices would be another problem
- // entirely, because requesting a media stream from deviceId "" won't
- // automatically track the default device.
- return available;
- }),
- ),
- [kind, deviceObserver$],
- ),
- );
-
- const [preferredId, select] = useSetting(setting);
- const selectedId = useMemo(() => {
- if (available.size) {
- // If the preferred device is available, use it. Or if every available
- // device ID is falsy, the browser is probably just being paranoid about
- // fingerprinting and we should still try using the preferred device.
- // Worst case it is not available and the browser will gracefully fall
- // back to some other device for us when requesting the media stream.
- // Otherwise, select the first available device.
- return (preferredId !== undefined && available.has(preferredId)) ||
- (available.size === 1 && available.has(""))
- ? preferredId
- : available.keys().next().value;
- }
- return undefined;
- }, [available, preferredId]);
- const selectedGroupId = useObservableEagerState(
- useMemo(
- () =>
- deviceObserver$.pipe(
- map(
- (availableRaw) =>
- availableRaw.find((d) => d.deviceId === selectedId)?.groupId,
- ),
- ),
- [deviceObserver$, selectedId],
- ),
- );
-
- return useMemo(
- () => ({
- available,
- selectedId,
- selectedGroupId,
- select,
- }),
- [available, selectedId, selectedGroupId, select],
- );
-}
-
-export const deviceStub: MediaDevice = {
- available: new Map(),
- selectedId: undefined,
- selectedGroupId: undefined,
- select: () => {},
-};
-export const devicesStub: MediaDevices = {
- audioInput: deviceStub,
- audioOutput: deviceStub,
- videoInput: deviceStub,
- startUsingDeviceNames: () => {},
- stopUsingDeviceNames: () => {},
-};
-
-export const MediaDevicesContext = createContext(devicesStub);
-
-interface Props {
- children: JSX.Element;
-}
-
-export const MediaDevicesProvider: FC = ({ children }) => {
- // Counts the number of callers currently using device names.
- const [numCallersUsingNames, setNumCallersUsingNames] = useState(0);
- const usingNames = numCallersUsingNames > 0;
-
- const audioInput = useMediaDevice(
- "audioinput",
- audioInputSetting,
- usingNames,
- );
- const audioOutput = useMediaDevice(
- "audiooutput",
- audioOutputSetting,
- usingNames,
- );
- const videoInput = useMediaDevice(
- "videoinput",
- videoInputSetting,
- usingNames,
- );
-
- const startUsingDeviceNames = useCallback(
- () => setNumCallersUsingNames((n) => n + 1),
- [setNumCallersUsingNames],
- );
- const stopUsingDeviceNames = useCallback(
- () => setNumCallersUsingNames((n) => n - 1),
- [setNumCallersUsingNames],
- );
-
- const context: MediaDevices = useMemo(
- () => ({
- audioInput,
- audioOutput,
- videoInput,
- startUsingDeviceNames,
- stopUsingDeviceNames,
- }),
- [
- audioInput,
- audioOutput,
- videoInput,
- startUsingDeviceNames,
- stopUsingDeviceNames,
- ],
- );
-
- return (
-
- {children}
-
- );
-};
-
-export const useMediaDevices = (): MediaDevices =>
- useContext(MediaDevicesContext);
-
-/**
- * React hook that requests for the media devices context to be populated with
- * real device names while this component is mounted. This is not done by
- * default because it may involve requesting additional permissions from the
- * user.
- */
-export const useMediaDeviceNames = (
- context: MediaDevices,
- enabled = true,
-): void =>
- useEffect(() => {
- if (enabled) {
- context.startUsingDeviceNames();
- return context.stopUsingDeviceNames;
- }
- }, [context, enabled]);
diff --git a/src/livekit/TrackProcessorContext.tsx b/src/livekit/TrackProcessorContext.tsx
new file mode 100644
index 000000000..21cd609ea
--- /dev/null
+++ b/src/livekit/TrackProcessorContext.tsx
@@ -0,0 +1,137 @@
+/*
+Copyright 2024-2025 New Vector Ltd.
+
+SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
+Please see LICENSE in the repository root for full details.
+*/
+
+import {
+ ProcessorWrapper,
+ supportsBackgroundProcessors as supportsBackgroundProcessorsLivekitSdk,
+ type BackgroundOptions,
+} from "@livekit/track-processors";
+import {
+ createContext,
+ type FC,
+ type JSX,
+ use,
+ useEffect,
+ useMemo,
+} from "react";
+import { type LocalVideoTrack } from "livekit-client";
+import { combineLatest, map, type Observable } from "rxjs";
+import { useObservable } from "observable-hooks";
+
+import {
+ backgroundBlur as backgroundBlurSettings,
+ useSetting,
+} from "../settings/settings";
+import { BlurBackgroundTransformer } from "./BlurBackgroundTransformer";
+import { type Behavior } from "../state/Behavior";
+import { type ObservableScope } from "../state/ObservableScope";
+import { platform } from "../Platform";
+
+//TODO-MULTI-SFU: This is not yet fully there.
+// it is a combination of exposing observable and react hooks.
+// preferably we should not make this a context anymore and instead just a vm?
+
+export type ProcessorState = {
+ supported: boolean | undefined;
+ processor: undefined | ProcessorWrapper;
+};
+
+const ProcessorContext = createContext(undefined);
+
+export function useTrackProcessor(): ProcessorState {
+ const state = use(ProcessorContext);
+ if (state === undefined)
+ throw new Error(
+ "useTrackProcessor must be used within a ProcessorProvider",
+ );
+ return state;
+}
+
+export function useTrackProcessorObservable$(): Observable {
+ const state = use(ProcessorContext);
+ if (state === undefined)
+ throw new Error(
+ "useTrackProcessor must be used within a ProcessorProvider",
+ );
+ const state$ = useObservable(
+ (init$) => init$.pipe(map(([init]) => init)),
+ [state],
+ );
+
+ return state$;
+}
+
+/**
+ * Updates your video tracks to always use the given processor.
+ */
+export const trackProcessorSync = (
+ scope: ObservableScope,
+ videoTrack$: Behavior,
+ processor$: Behavior,
+): void => {
+ combineLatest([videoTrack$, processor$])
+ .pipe(scope.bind())
+ .subscribe(([videoTrack, processorState]) => {
+ if (!processorState) return;
+ if (!videoTrack) return;
+ const { processor } = processorState;
+ if (processor && !videoTrack.getProcessor()) {
+ void videoTrack.setProcessor(processor);
+ }
+ if (!processor && videoTrack.getProcessor()) {
+ void videoTrack.stopProcessor();
+ }
+ });
+};
+
+export const useTrackProcessorSync = (
+ videoTrack: LocalVideoTrack | null,
+): void => {
+ const { processor } = useTrackProcessor();
+ useEffect(() => {
+ if (!videoTrack) return;
+ if (processor && !videoTrack.getProcessor()) {
+ void videoTrack.setProcessor(processor);
+ }
+ if (!processor && videoTrack.getProcessor()) {
+ void videoTrack.stopProcessor();
+ }
+ }, [processor, videoTrack]);
+};
+
+interface Props {
+ children: JSX.Element;
+}
+
+function supportsBackgroundProcessors(): boolean {
+ return supportsBackgroundProcessorsLivekitSdk() && platform === "desktop";
+}
+
+export const ProcessorProvider: FC = ({ children }) => {
+ // The setting the user wants to have
+ const [blurActivated] = useSetting(backgroundBlurSettings);
+ const supported = useMemo(() => supportsBackgroundProcessors(), []);
+ const blur = useMemo(
+ () =>
+ new ProcessorWrapper(
+ new BlurBackgroundTransformer({ blurRadius: 15 }),
+ "background-blur",
+ ),
+ [],
+ );
+
+ // This is the actual state exposed through the context
+ const processorState = useMemo(
+ () => ({
+ supported,
+ processor: supported && blurActivated ? blur : undefined,
+ }),
+ [supported, blurActivated, blur],
+ );
+
+ return {children};
+};
diff --git a/src/livekit/openIDSFU.test.ts b/src/livekit/openIDSFU.test.ts
new file mode 100644
index 000000000..2ddb6c95c
--- /dev/null
+++ b/src/livekit/openIDSFU.test.ts
@@ -0,0 +1,329 @@
+/*
+Copyright 2025 Element Creations Ltd.
+
+SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
+Please see LICENSE in the repository root for full details.
+*/
+
+import {
+ beforeEach,
+ afterEach,
+ describe,
+ expect,
+ it,
+ type MockedObject,
+ vitest,
+} from "vitest";
+import fetchMock from "fetch-mock";
+import { MatrixError } from "matrix-js-sdk";
+
+import { getSFUConfigWithOpenID, type OpenIDClientParts } from "./openIDSFU";
+import { testJWTToken } from "../utils/test-fixtures";
+import { ownMemberMock } from "../utils/test";
+import { FailToGetOpenIdToken } from "../utils/errors";
+
+const sfuUrl = "https://sfu.example.org";
+
+describe("getSFUConfigWithOpenID", () => {
+ let matrixClient: MockedObject;
+ beforeEach(() => {
+ fetchMock.catch(404);
+ matrixClient = {
+ getOpenIdToken: vitest.fn(),
+ getDeviceId: vitest.fn(),
+ };
+ });
+ afterEach(() => {
+ vitest.clearAllMocks();
+ fetchMock.reset();
+ });
+
+ it("should handle fetching a token", async () => {
+ fetchMock.post("https://sfu.example.org/sfu/get", () => {
+ return {
+ status: 200,
+ body: { url: sfuUrl, jwt: testJWTToken },
+ };
+ });
+ const config = await getSFUConfigWithOpenID(
+ matrixClient,
+ ownMemberMock,
+ "https://sfu.example.org",
+ "!example_room_id",
+ );
+ expect(config).toEqual({
+ jwt: testJWTToken,
+ url: sfuUrl,
+ livekitIdentity: "@me:example.org:ABCDEF",
+ livekitAlias: "!example_room_id",
+ });
+ void (await fetchMock.flush());
+ });
+
+ it("should fail if the SFU errors", async () => {
+ fetchMock.post("https://sfu.example.org/sfu/get", () => {
+ return {
+ status: 500,
+ body: {
+ errcode: "M_LOOKUP_FAILED",
+ error: "Failed to look up user info from homeserver",
+ },
+ };
+ });
+ try {
+ await getSFUConfigWithOpenID(
+ matrixClient,
+ ownMemberMock,
+ "https://sfu.example.org",
+ "!example_room_id",
+ );
+ } catch (ex: unknown) {
+ expect(ex).toBeInstanceOf(FailToGetOpenIdToken);
+ expect((ex as FailToGetOpenIdToken).cause).toBeInstanceOf(MatrixError);
+ const mxError = (ex as Error).cause as MatrixError;
+ expect(mxError.message).toEqual(
+ "MatrixError: [500] Failed to look up user info from homeserver",
+ );
+
+ void (await fetchMock.flush());
+ return;
+ }
+ expect.fail("Expected test to throw;");
+ });
+
+ it("should retry without delay params if the JWT service legacy endpoint returns M_BAD_JSON 400", async () => {
+ let callCount = 0;
+
+ fetchMock.post(
+ "https://sfu.example.org/sfu/get",
+ (url, opts) => {
+ callCount++;
+ const body = JSON.parse(opts.body as string);
+
+ // First call: check if it has delay parts and return 400
+ if (callCount === 1) {
+ expect(body).toHaveProperty("delay_id", "mock_delay_id");
+ return {
+ status: 400,
+ body: { errcode: "M_BAD_JSON", error: "Unsupported parameters" },
+ };
+ }
+
+ // Second call: check if delay parts were stripped and return success
+ expect(body).not.toHaveProperty("delay_id");
+ expect(body).not.toHaveProperty("delay_timeout");
+ expect(body).not.toHaveProperty("delay_cs_api_url");
+
+ return {
+ status: 200,
+ body: { url: sfuUrl, jwt: testJWTToken },
+ };
+ },
+ { overwriteRoutes: true },
+ );
+
+ // Note: Assuming getSFUConfigWithOpenID eventually calls getLiveKitJWT
+ const config = await getSFUConfigWithOpenID(
+ matrixClient,
+ ownMemberMock,
+ "https://sfu.example.org",
+ "!example_room_id",
+ {
+ delayEndpointBaseUrl: "https://matrix.homeserverserver.org",
+ delayId: "mock_delay_id",
+ },
+ );
+
+ expect(config.jwt).toBe(testJWTToken);
+ expect(callCount).toBe(2);
+ void (await fetchMock.flush());
+ });
+
+ it("should successfully send delay parameters to the JWT service legacy endpoint", async () => {
+ fetchMock.post(
+ "https://sfu.example.org/sfu/get",
+ (url, opts) => {
+ const body = JSON.parse(opts.body as string);
+
+ // Verify, that the request contains the expected delay parameters
+ if (
+ body.delay_id === "mock_delay_id" &&
+ body.delay_timeout === 10000 &&
+ body.delay_cs_api_url === "https://homeserverserver.org/cs_api"
+ ) {
+ return {
+ status: 200,
+ body: { url: sfuUrl, jwt: testJWTToken },
+ };
+ }
+ return {
+ status: 400,
+ body: { error: "Missing expected delay params" },
+ };
+ },
+ { overwriteRoutes: true },
+ );
+
+ const config = await getSFUConfigWithOpenID(
+ matrixClient,
+ ownMemberMock,
+ "https://sfu.example.org",
+ "!example_room_id",
+ {
+ delayEndpointBaseUrl: "https://homeserverserver.org/cs_api",
+ delayId: "mock_delay_id",
+ },
+ );
+
+ // Prüfe das Ergebnis
+ expect(config).toMatchObject({
+ jwt: testJWTToken,
+ url: sfuUrl,
+ });
+
+ void (await fetchMock.flush());
+ });
+
+ it("should try legacy and then new endpoint with delay delegation", async () => {
+ fetchMock.post("https://sfu.example.org/get_token", () => {
+ return {
+ status: 500,
+ body: {
+ errcode: "M_LOOKUP_FAILED",
+ error: "Failed to look up user info from homeserver",
+ },
+ };
+ });
+ fetchMock.post("https://sfu.example.org/sfu/get", () => {
+ return {
+ status: 500,
+ body: {
+ errcode: "M_LOOKUP_FAILED",
+ error: "Failed to look up user info from homeserver",
+ },
+ };
+ });
+ try {
+ await getSFUConfigWithOpenID(
+ matrixClient,
+ ownMemberMock,
+ "https://sfu.example.org",
+ "!example_room_id",
+ {
+ delayEndpointBaseUrl: "https://matrix.homeserverserver.org",
+ delayId: "mock_delay_id",
+ },
+ );
+ } catch (ex) {
+ expect(ex).toBeInstanceOf(FailToGetOpenIdToken);
+ expect((ex as FailToGetOpenIdToken).cause).toBeInstanceOf(MatrixError);
+ const mxError = (ex as Error).cause as MatrixError;
+ expect(mxError.message).toEqual(
+ "MatrixError: [500] Failed to look up user info from homeserver",
+ );
+ void (await fetchMock.flush());
+ }
+ const calls = fetchMock.calls();
+ expect(calls.length).toBe(2);
+
+ expect(calls[0][0]).toStrictEqual("https://sfu.example.org/get_token");
+ expect(calls[0][1]).toStrictEqual({
+ // check if it uses correct delayID!
+ body: '{"room_id":"!example_room_id","slot_id":"m.call#ROOM","member":{"id":"@alice:example.org:DEVICE","claimed_user_id":"@alice:example.org","claimed_device_id":"DEVICE"},"delay_id":"mock_delay_id","delay_timeout":10000,"delay_cs_api_url":"https://matrix.homeserverserver.org"}',
+ method: "POST",
+ headers: {
+ "Content-Type": "application/json",
+ },
+ });
+
+ expect(calls[1][0]).toStrictEqual("https://sfu.example.org/sfu/get");
+
+ expect(calls[1][1]).toStrictEqual({
+ body: '{"room":"!example_room_id","device_id":"DEVICE","delay_id":"mock_delay_id","delay_timeout":10000,"delay_cs_api_url":"https://matrix.homeserverserver.org"}',
+ headers: {
+ "Content-Type": "application/json",
+ },
+ method: "POST",
+ });
+ });
+
+ it("dont try legacy if endpoint with delay delegation is sucessful", async () => {
+ fetchMock.post("https://sfu.example.org/get_token", () => {
+ return {
+ status: 200,
+ body: { url: sfuUrl, jwt: testJWTToken },
+ };
+ });
+ fetchMock.post("https://sfu.example.org/sfu/get", () => {
+ return {
+ status: 500,
+ body: { error: "Test failure" },
+ };
+ });
+ try {
+ await getSFUConfigWithOpenID(
+ matrixClient,
+ ownMemberMock,
+ "https://sfu.example.org",
+ "!example_room_id",
+ {
+ delayEndpointBaseUrl: "https://matrix.homeserverserver.org",
+ delayId: "mock_delay_id",
+ },
+ );
+ } catch (ex) {
+ expect(ex).toBeInstanceOf(FailToGetOpenIdToken);
+ expect((ex as FailToGetOpenIdToken).cause).toEqual(
+ new Error("SFU Config fetch failed with status code 500"),
+ );
+ void (await fetchMock.flush());
+ }
+ const calls = fetchMock.calls();
+ expect(calls.length).toBe(1);
+
+ expect(calls[0][0]).toStrictEqual("https://sfu.example.org/get_token");
+ expect(calls[0][1]).toStrictEqual({
+ // check if it uses correct delayID!
+ body: '{"room_id":"!example_room_id","slot_id":"m.call#ROOM","member":{"id":"@alice:example.org:DEVICE","claimed_user_id":"@alice:example.org","claimed_device_id":"DEVICE"},"delay_id":"mock_delay_id","delay_timeout":10000,"delay_cs_api_url":"https://matrix.homeserverserver.org"}',
+ method: "POST",
+ headers: {
+ "Content-Type": "application/json",
+ },
+ });
+ });
+
+ it("should retry fetching the openid token", async () => {
+ let count = 0;
+ matrixClient.getOpenIdToken.mockImplementation(async () => {
+ count++;
+ if (count < 2) {
+ throw Error("Test failure");
+ }
+ return Promise.resolve({
+ token_type: "Bearer",
+ access_token: "foobar",
+ matrix_server_name: "example.org",
+ expires_in: 30,
+ });
+ });
+ fetchMock.post("https://sfu.example.org/sfu/get", () => {
+ return {
+ status: 200,
+ body: { url: sfuUrl, jwt: testJWTToken },
+ };
+ });
+ const config = await getSFUConfigWithOpenID(
+ matrixClient,
+ ownMemberMock,
+ "https://sfu.example.org",
+ "!example_room_id",
+ );
+ expect(config).toEqual({
+ jwt: testJWTToken,
+ url: sfuUrl,
+ livekitIdentity: "@me:example.org:ABCDEF",
+ livekitAlias: "!example_room_id",
+ });
+ void (await fetchMock.flush());
+ });
+});
diff --git a/src/livekit/openIDSFU.ts b/src/livekit/openIDSFU.ts
index 2ebd6045e..00cf69b1a 100644
--- a/src/livekit/openIDSFU.ts
+++ b/src/livekit/openIDSFU.ts
@@ -5,27 +5,64 @@ SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
Please see LICENSE in the repository root for full details.
*/
-import { type IOpenIDToken, type MatrixClient } from "matrix-js-sdk";
-import { logger } from "matrix-js-sdk/lib/logger";
-import { type MatrixRTCSession } from "matrix-js-sdk/lib/matrixrtc";
-import { useEffect, useState } from "react";
-import { type LivekitFocus } from "matrix-js-sdk/lib/matrixrtc";
+import {
+ type IOpenIDToken,
+ type MatrixClient,
+ parseErrorResponse,
+} from "matrix-js-sdk";
+import { type CallMembershipIdentityParts } from "matrix-js-sdk/lib/matrixrtc/EncryptionManager";
+import { type Logger } from "matrix-js-sdk/lib/logger";
-import { useActiveLivekitFocus } from "../room/useActiveFocus";
-import { useErrorBoundary } from "../useErrorBoundary";
-import { FailToGetOpenIdToken } from "../utils/errors";
+import {
+ FailToGetOpenIdToken,
+ NoMatrix2AuthorizationService,
+} from "../utils/errors";
import { doNetworkOperationWithRetry } from "../utils/matrix";
+import { Config } from "../config/Config";
+import { JwtEndpointVersion } from "../state/CallViewModel/localMember/LocalTransport";
+/**
+ * Configuration and access tokens provided by the SFU on successful authentication.
+ */
export interface SFUConfig {
url: string;
jwt: string;
+ livekitAlias: string;
+ // NOTE: Currently unused.
+ livekitIdentity: string;
}
-export function sfuConfigEquals(a?: SFUConfig, b?: SFUConfig): boolean {
- if (a === undefined && b === undefined) return true;
- if (a === undefined || b === undefined) return false;
-
- return a.jwt === b.jwt && a.url === b.url;
+/**
+ * Decoded details from the JWT.
+ */
+interface SFUJWTPayload {
+ /**
+ * Expiration time for the JWT.
+ * Note: This value is in seconds since Unix epoch.
+ */
+ exp: number;
+ /**
+ * Name of the instance which authored the JWT
+ */
+ iss: string;
+ /**
+ * Time at which the JWT can start to be used.
+ * Note: This value is in seconds since Unix epoch.
+ */
+ nbf: number;
+ /**
+ * Subject. The Livekit alias in this context.
+ */
+ sub: string;
+ /**
+ * The set of permissions for the user.
+ */
+ video: {
+ canPublish: boolean;
+ canSubscribe: boolean;
+ room: string;
+ roomJoin: boolean;
+ };
}
// The bits we need from MatrixClient
@@ -34,38 +71,38 @@ export type OpenIDClientParts = Pick<
"getOpenIdToken" | "getDeviceId"
>;
-export function useOpenIDSFU(
- client: OpenIDClientParts,
- rtcSession: MatrixRTCSession,
-): SFUConfig | undefined {
- const [sfuConfig, setSFUConfig] = useState(undefined);
-
- const activeFocus = useActiveLivekitFocus(rtcSession);
- const { showErrorBoundary } = useErrorBoundary();
-
- useEffect(() => {
- if (activeFocus) {
- getSFUConfigWithOpenID(client, activeFocus).then(
- (sfuConfig) => {
- setSFUConfig(sfuConfig);
- },
- (e) => {
- showErrorBoundary(new FailToGetOpenIdToken(e));
- logger.error("Failed to get SFU config", e);
- },
- );
- } else {
- setSFUConfig(undefined);
- }
- }, [client, activeFocus, showErrorBoundary]);
-
- return sfuConfig;
-}
-
+/**
+ * Gets a bearer token from the homeserver and then use it to authenticate
+ * to the matrix RTC backend in order to get acces to the SFU.
+ * It has built-in retry for calls to the homeserver with a backoff policy.
+ * @param client The Matrix client
+ * @param membership Our own membership identity parts used to send to jwt service.
+ * @param serviceUrl The URL of the livekit SFU service
+ * @param roomId The room id used in the jwt request. This is NOT the livekit_alias. The jwt service will provide the alias. It maps matrix room ids <-> Livekit aliases.
+ * @param opts Additional options to modify which endpoint with which data will be used to acquire the jwt token.
+ * @param opts.forceJwtEndpoint This will use the old jwt endpoint which will create the rtc backend identity based on string concatenation
+ * instead of a hash.
+ * This function by default uses whatever is possible with the current jwt service installed next to the SFU.
+ * For remote connections this does not matter, since we will not publish there we can rely on the newest option.
+ * For our own connection we can only use the hashed version if we also send the new matrix2.0 sticky events.
+ * @param opts.delayEndpointBaseUrl The URL of the matrix homeserver.
+ * @param opts.delayId The delay id used for the jwt service to manage.
+ * @param logger optional logger.
+ * @returns Object containing the token information
+ * @throws FailToGetOpenIdToken
+ */
export async function getSFUConfigWithOpenID(
client: OpenIDClientParts,
- activeFocus: LivekitFocus,
-): Promise {
+ membership: CallMembershipIdentityParts,
+ serviceUrl: string,
+ roomId: string,
+ opts?: {
+ forceJwtEndpoint?: JwtEndpointVersion;
+ delayEndpointBaseUrl?: string;
+ delayId?: string;
+ },
+ logger?: Logger,
+): Promise {
let openIdToken: IOpenIDToken;
try {
openIdToken = await doNetworkOperationWithRetry(async () =>
@@ -76,53 +113,207 @@ export async function getSFUConfigWithOpenID(
error instanceof Error ? error : new Error("Unknown error"),
);
}
- logger.debug("Got openID token", openIdToken);
+ logger?.debug("Got openID token", openIdToken);
+ let sfuConfig: { url: string; jwt: string } | undefined;
+ const tryBothJwtEndpoints = opts?.forceJwtEndpoint === undefined; // This is for SFUs where we do not publish.
+
+ const forceMatrix2Jwt =
+ opts?.forceJwtEndpoint === JwtEndpointVersion.Matrix_2_0;
+
+ // We want to start using the new endpoint (with optional delay delegation)
+ // if we can use both or if we are forced to use the new one.
+ if (tryBothJwtEndpoints || forceMatrix2Jwt) {
+ try {
+ logger?.info(
+ `Trying to get JWT with delegation for focus ${serviceUrl}...`,
+ );
+ const sfuConfig = await getLiveKitJWTWithDelayDelegation(
+ membership,
+ serviceUrl,
+ roomId,
+ openIdToken,
+ opts?.delayEndpointBaseUrl,
+ opts?.delayId,
+ );
+
+ return extractFullConfigFromToken(sfuConfig);
+ } catch (e) {
+ logger?.debug(`Failed fetching jwt with matrix 2.0 endpoint:`, e);
+ // Make this throw a hard error in case we force the matrix2.0 endpoint.
+ if (forceMatrix2Jwt) {
+ throw new NoMatrix2AuthorizationService(e as Error);
+ }
+ }
+ }
+
+ // DEPRECATED
+ // here we either have a sfuConfig or we already exited because of `if (forceMatrix2) throw ...`
+ // The only case we can get into this condition is, if `forceMatrix2` is `false`
try {
- logger.info(
- `Trying to get JWT from call's active focus URL of ${activeFocus.livekit_service_url}...`,
+ logger?.info(
+ `Trying to get JWT with legacy endpoint for focus ${serviceUrl}...`,
);
- const sfuConfig = await getLiveKitJWT(
- client,
- activeFocus.livekit_service_url,
- activeFocus.livekit_alias,
+ sfuConfig = await getLiveKitJWT(
+ membership.deviceId,
+ serviceUrl,
+ roomId,
openIdToken,
+ opts?.delayEndpointBaseUrl,
+ opts?.delayId,
);
- logger.info(`Got JWT from call's active focus URL.`);
-
- return sfuConfig;
- } catch (e) {
- logger.warn(
- `Failed to get JWT from RTC session's active focus URL of ${activeFocus.livekit_service_url}.`,
- e,
+ logger?.info(`Got JWT from call's active focus URL.`);
+ return extractFullConfigFromToken(sfuConfig);
+ } catch (ex) {
+ throw new FailToGetOpenIdToken(
+ ex instanceof Error ? ex : new Error(`Unknown error ${ex}`),
);
- return undefined;
}
}
+function extractFullConfigFromToken(sfuConfig: {
+ url: string;
+ jwt: string;
+}): SFUConfig {
+ const [, payloadStr] = sfuConfig.jwt.split(".");
+ const payload = JSON.parse(global.atob(payloadStr)) as SFUJWTPayload;
+ return {
+ jwt: sfuConfig.jwt,
+ url: sfuConfig.url,
+ livekitAlias: payload.video.room,
+ // NOTE: Currently unused.
+ // Probably also not helpful since we now compute the backendIdentity on joining the call so we can use it for the encryption manager.
+ // The only reason for us to know it locally is to connect the right users with the lk world. (and to set our own keys)
+ livekitIdentity: payload.sub,
+ };
+}
+
async function getLiveKitJWT(
- client: OpenIDClientParts,
+ deviceId: string,
livekitServiceURL: string,
- roomName: string,
+ matrixRoomId: string,
openIDToken: IOpenIDToken,
-): Promise {
- try {
- const res = await fetch(livekitServiceURL + "/sfu/get", {
+ delayEndpointBaseUrl?: string,
+ delayId?: string,
+): Promise<{ url: string; jwt: string }> {
+ interface IDelayParams {
+ delay_id?: string;
+ delay_timeout?: number;
+ delay_cs_api_url?: string;
+ }
+ let bodyDalayParts: IDelayParams = {};
+ // Also check for empty string
+ if (delayId && delayEndpointBaseUrl) {
+ const delayTimeoutMs =
+ Config.get().matrix_rtc_session?.delayed_leave_event_delay_ms;
+ bodyDalayParts = {
+ delay_id: delayId,
+ delay_timeout: delayTimeoutMs,
+ delay_cs_api_url: delayEndpointBaseUrl,
+ };
+ }
+
+ const makeRequest = async (delayParts: IDelayParams): Promise => {
+ return await fetch(livekitServiceURL + "/sfu/get", {
method: "POST",
headers: {
"Content-Type": "application/json",
},
body: JSON.stringify({
- room: roomName,
+ // The legacy JWT endpoint uses only the matrix room id to calculate the livekit room alias.
+ // However, the livekit room alias is provided as part of the JWT payload.
+ room: matrixRoomId,
openid_token: openIDToken,
- device_id: client.getDeviceId(),
+ device_id: deviceId,
+ ...delayParts,
}),
});
- if (!res.ok) {
- throw new Error("SFU Config fetch failed with status code " + res.status);
+ };
+
+ const res = await doNetworkOperationWithRetry(async () => {
+ let response = await makeRequest(bodyDalayParts);
+
+ // Old service compatibility check
+ const oldServiceDoesNotSupportDelayParts =
+ response.status === 400 && Object.keys(bodyDalayParts).length > 0;
+ // If http status 400 with M_BAD_JSON and we sent delay parts, retry without them
+ if (oldServiceDoesNotSupportDelayParts) {
+ try {
+ const errorBody = await response.json();
+ if (errorBody.errcode === "M_BAD_JSON") {
+ response = await makeRequest({});
+ }
+ } catch {
+ // If we can't parse the error, treat as real error
+ }
}
- return await res.json();
- } catch (e) {
- throw new Error("SFU Config fetch failed with exception " + e);
+
+ return response;
+ });
+
+ if (!res.ok) {
+ throw parseErrorResponse(res, await res.text());
+ }
+ return await res.json();
+}
+
+class NotSupportedError extends Error {
+ public constructor(message: string) {
+ super(message);
+ this.name = "NotSupported";
}
}
+
+export async function getLiveKitJWTWithDelayDelegation(
+ membership: CallMembershipIdentityParts,
+ livekitServiceURL: string,
+ matrixRoomId: string,
+ openIDToken: IOpenIDToken,
+ delayEndpointBaseUrl?: string,
+ delayId?: string,
+): Promise<{ url: string; jwt: string }> {
+ const { userId, deviceId, memberId } = membership;
+
+ const body = {
+ room_id: matrixRoomId,
+ slot_id: "m.call#ROOM",
+ openid_token: openIDToken,
+ member: {
+ id: memberId,
+ claimed_user_id: userId,
+ claimed_device_id: deviceId,
+ },
+ };
+
+ let bodyDalayParts = {};
+ // Also check for empty string
+ if (delayId && delayEndpointBaseUrl) {
+ const delayTimeoutMs =
+ Config.get().matrix_rtc_session?.delayed_leave_event_delay_ms;
+ bodyDalayParts = {
+ delay_id: delayId,
+ delay_timeout: delayTimeoutMs,
+ delay_cs_api_url: delayEndpointBaseUrl,
+ };
+ }
+
+ const res = await doNetworkOperationWithRetry(async () => {
+ return await fetch(livekitServiceURL + "/get_token", {
+ method: "POST",
+ headers: {
+ "Content-Type": "application/json",
+ },
+ body: JSON.stringify({ ...body, ...bodyDalayParts }),
+ });
+ });
+
+ if (!res.ok) {
+ const msg = "SFU Config fetch failed with status code " + res.status;
+ if (res.status === 404) {
+ throw new NotSupportedError(msg);
+ } else {
+ throw parseErrorResponse(res, await res.text());
+ }
+ }
+ return await res.json();
+}
diff --git a/src/livekit/useECConnectionState.test.tsx b/src/livekit/useECConnectionState.test.tsx
deleted file mode 100644
index 5f2f6064c..000000000
--- a/src/livekit/useECConnectionState.test.tsx
+++ /dev/null
@@ -1,75 +0,0 @@
-/*
-Copyright 2025 New Vector Ltd.
-
-SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
-Please see LICENSE in the repository root for full details.
-*/
-
-import { type FC, useCallback, useState } from "react";
-import { test, vi } from "vitest";
-import {
- ConnectionError,
- ConnectionErrorReason,
- type Room,
-} from "livekit-client";
-import userEvent from "@testing-library/user-event";
-import { render, screen } from "@testing-library/react";
-import { MemoryRouter } from "react-router-dom";
-
-import { useECConnectionState } from "./useECConnectionState";
-import { type SFUConfig } from "./openIDSFU";
-import { GroupCallErrorBoundary } from "../room/GroupCallErrorBoundary.tsx";
-
-test.each<[string, ConnectionError]>([
- [
- "LiveKit hits track limit",
- new ConnectionError("", ConnectionErrorReason.InternalError, 503),
- ],
- [
- "LiveKit hits room participant limit",
- new ConnectionError("", ConnectionErrorReason.ServerUnreachable, 200),
- ],
- [
- "LiveKit Cloud hits connection limit",
- new ConnectionError("", ConnectionErrorReason.NotAllowed, 429),
- ],
-])(
- "useECConnectionState throws error when %s hits track limit",
- async (_server, error) => {
- const mockRoom = {
- on: () => {},
- off: () => {},
- once: () => {},
- connect: () => {
- throw error;
- },
- localParticipant: {
- getTrackPublication: () => {},
- createTracks: () => [],
- },
- } as unknown as Room;
-
- const TestComponent: FC = () => {
- const [sfuConfig, setSfuConfig] = useState(
- undefined,
- );
- const connect = useCallback(
- () => setSfuConfig({ url: "URL", jwt: "JWT token" }),
- [],
- );
- useECConnectionState({}, false, mockRoom, sfuConfig);
- return Connect;
- };
-
- const user = userEvent.setup();
- render(
-
-
-
-
- ,
- );
- await user.click(screen.getByRole("button", { name: "Connect" }));
- screen.getByText("Insufficient capacity");
- },
-);
diff --git a/src/livekit/useECConnectionState.ts b/src/livekit/useECConnectionState.ts
deleted file mode 100644
index fa9a30388..000000000
--- a/src/livekit/useECConnectionState.ts
+++ /dev/null
@@ -1,309 +0,0 @@
-/*
-Copyright 2023, 2024 New Vector Ltd.
-
-SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
-Please see LICENSE in the repository root for full details.
-*/
-
-import {
- type AudioCaptureOptions,
- ConnectionError,
- ConnectionState,
- type LocalTrack,
- type Room,
- RoomEvent,
- Track,
-} from "livekit-client";
-import { useCallback, useEffect, useRef, useState } from "react";
-import { logger } from "matrix-js-sdk/lib/logger";
-import * as Sentry from "@sentry/react";
-
-import { type SFUConfig, sfuConfigEquals } from "./openIDSFU";
-import { PosthogAnalytics } from "../analytics/PosthogAnalytics";
-import {
- ElementCallError,
- InsufficientCapacityError,
- UnknownCallError,
-} from "../utils/errors.ts";
-
-declare global {
- interface Window {
- peerConnectionTimeout?: number;
- websocketTimeout?: number;
- }
-}
-
-/*
- * Additional values for states that a call can be in, beyond what livekit
- * provides in ConnectionState. Also reconnects the call if the SFU Config
- * changes.
- */
-export enum ECAddonConnectionState {
- // We are switching from one focus to another (or between livekit room aliases on the same focus)
- ECSwitchingFocus = "ec_switching_focus",
- // The call has just been initialised and is waiting for credentials to arrive before attempting
- // to connect. This distinguishes from the 'Disconnected' state which is now just for when livekit
- // gives up on connectivity and we consider the call to have failed.
- ECWaiting = "ec_waiting",
-}
-
-export type ECConnectionState = ConnectionState | ECAddonConnectionState;
-
-// This is mostly necessary because an empty useRef is an empty object
-// which is truthy, so we can't just use Boolean(currentSFUConfig.current)
-function sfuConfigValid(sfuConfig?: SFUConfig): boolean {
- return Boolean(sfuConfig?.url) && Boolean(sfuConfig?.jwt);
-}
-
-async function doConnect(
- livekitRoom: Room,
- sfuConfig: SFUConfig,
- audioEnabled: boolean,
- audioOptions: AudioCaptureOptions,
-): Promise {
- // Always create an audio track manually.
- // livekit (by default) keeps the mic track open when you mute, but if you start muted,
- // doesn't publish it until you unmute. We want to publish it from the start so we're
- // always capturing audio: it helps keep bluetooth headsets in the right mode and
- // mobile browsers to know we're doing a call.
- if (
- livekitRoom!.localParticipant.getTrackPublication(Track.Source.Microphone)
- ) {
- logger.warn(
- "Pre-creating audio track but participant already appears to have an microphone track: this shouldn't happen!",
- );
- Sentry.captureMessage(
- "Pre-creating audio track but participant already appears to have an microphone track!",
- );
- return;
- }
-
- logger.info("Pre-creating microphone track");
- let preCreatedAudioTrack: LocalTrack | undefined;
- try {
- const audioTracks = await livekitRoom!.localParticipant.createTracks({
- audio: audioOptions,
- });
- if (audioTracks.length < 1) {
- logger.info("Tried to pre-create local audio track but got no tracks");
- } else {
- preCreatedAudioTrack = audioTracks[0];
- }
- logger.info("Pre-created microphone track");
- } catch (e) {
- logger.error("Failed to pre-create microphone track", e);
- }
-
- if (!audioEnabled) await preCreatedAudioTrack?.mute();
-
- // check again having awaited for the track to create
- if (
- livekitRoom!.localParticipant.getTrackPublication(Track.Source.Microphone)
- ) {
- logger.warn(
- "Pre-created audio track but participant already appears to have an microphone track: this shouldn't happen!",
- );
- preCreatedAudioTrack?.stop();
- return;
- }
-
- logger.info("Connecting & publishing");
- try {
- await connectAndPublish(livekitRoom, sfuConfig, preCreatedAudioTrack, []);
- } catch (e) {
- preCreatedAudioTrack?.stop();
- logger.debug("Stopped precreated audio tracks.");
- throw e;
- }
-}
-
-/**
- * Connect to the SFU and publish specific tracks, if provided.
- * This is very specific to what we need to do: for instance, we don't
- * currently have a need to prepublish video tracks. We just prepublish
- * a mic track at the start of a call and copy any srceenshare tracks over
- * when switching focus (because we can't re-acquire them without the user
- * going through the dialog to choose them again).
- */
-async function connectAndPublish(
- livekitRoom: Room,
- sfuConfig: SFUConfig,
- micTrack: LocalTrack | undefined,
- screenshareTracks: MediaStreamTrack[],
-): Promise {
- const tracker = PosthogAnalytics.instance.eventCallConnectDuration;
- // Track call connect duration
- tracker.cacheConnectStart();
- livekitRoom.once(RoomEvent.SignalConnected, tracker.cacheWsConnect);
-
- try {
- await livekitRoom!.connect(sfuConfig!.url, sfuConfig!.jwt, {
- // Due to stability issues on Firefox we are testing the effect of different
- // timeouts, and allow these values to be set through the console
- peerConnectionTimeout: window.peerConnectionTimeout ?? 45000,
- websocketTimeout: window.websocketTimeout ?? 45000,
- });
- } catch (e) {
- // LiveKit uses 503 to indicate that the server has hit its track limits.
- // https://github.com/livekit/livekit/blob/fcb05e97c5a31812ecf0ca6f7efa57c485cea9fb/pkg/service/rtcservice.go#L171
- // It also errors with a status code of 200 (yes, really) for room
- // participant limits.
- // LiveKit Cloud uses 429 for connection limits.
- // Either way, all these errors can be explained as "insufficient capacity".
- if (
- e instanceof ConnectionError &&
- (e.status === 503 || e.status === 200 || e.status === 429)
- )
- throw new InsufficientCapacityError();
- throw e;
- }
-
- // remove listener in case the connect promise rejects before `SignalConnected` is emitted.
- livekitRoom.off(RoomEvent.SignalConnected, tracker.cacheWsConnect);
- tracker.track({ log: true });
-
- if (micTrack) {
- logger.info(`Publishing precreated mic track`);
- await livekitRoom.localParticipant.publishTrack(micTrack, {
- source: Track.Source.Microphone,
- });
- }
-
- logger.info(
- `Publishing ${screenshareTracks.length} precreated screenshare tracks`,
- );
- for (const st of screenshareTracks) {
- livekitRoom.localParticipant
- .publishTrack(st, {
- source: Track.Source.ScreenShare,
- })
- .catch((e) => {
- logger.error("Failed to publish screenshare track", e);
- });
- }
-}
-
-export function useECConnectionState(
- initialAudioOptions: AudioCaptureOptions,
- initialAudioEnabled: boolean,
- livekitRoom?: Room,
- sfuConfig?: SFUConfig,
-): ECConnectionState {
- const [connState, setConnState] = useState(
- sfuConfig && livekitRoom
- ? livekitRoom.state
- : ECAddonConnectionState.ECWaiting,
- );
-
- const [isSwitchingFocus, setSwitchingFocus] = useState(false);
- const [isInDoConnect, setIsInDoConnect] = useState(false);
- const [error, setError] = useState(null);
- if (error !== null) throw error;
-
- const onConnStateChanged = useCallback((state: ConnectionState) => {
- if (state == ConnectionState.Connected) setSwitchingFocus(false);
- setConnState(state);
- }, []);
-
- useEffect(() => {
- const oldRoom = livekitRoom;
-
- if (livekitRoom) {
- livekitRoom.on(RoomEvent.ConnectionStateChanged, onConnStateChanged);
- }
-
- return (): void => {
- if (oldRoom)
- oldRoom.off(RoomEvent.ConnectionStateChanged, onConnStateChanged);
- };
- }, [livekitRoom, onConnStateChanged]);
-
- const doFocusSwitch = useCallback(async (): Promise => {
- const screenshareTracks: MediaStreamTrack[] = [];
- for (const t of livekitRoom!.localParticipant.videoTrackPublications.values()) {
- if (t.track && t.source == Track.Source.ScreenShare) {
- const newTrack = t.track.mediaStreamTrack.clone();
- newTrack.enabled = true;
- screenshareTracks.push(newTrack);
- }
- }
-
- // Flag that we're currently switching focus. This will get reset when the
- // connection state changes back to connected in onConnStateChanged above.
- setSwitchingFocus(true);
- await livekitRoom?.disconnect();
- setIsInDoConnect(true);
- try {
- await connectAndPublish(
- livekitRoom!,
- sfuConfig!,
- undefined,
- screenshareTracks,
- );
- } finally {
- setIsInDoConnect(false);
- }
- }, [livekitRoom, sfuConfig]);
-
- const currentSFUConfig = useRef(Object.assign({}, sfuConfig));
-
- // Id we are transitioning from a valid config to another valid one, we need
- // to explicitly switch focus
- useEffect(() => {
- if (
- sfuConfigValid(sfuConfig) &&
- sfuConfigValid(currentSFUConfig.current) &&
- !sfuConfigEquals(currentSFUConfig.current, sfuConfig)
- ) {
- logger.info(
- `SFU config changed! URL was ${currentSFUConfig.current?.url} now ${sfuConfig?.url}`,
- );
-
- doFocusSwitch().catch((e) => {
- logger.error("Failed to switch focus", e);
- });
- } else if (
- !sfuConfigValid(currentSFUConfig.current) &&
- sfuConfigValid(sfuConfig)
- ) {
- // if we're transitioning from an invalid config to a valid one (ie. connecting)
- // then do an initial connection, including publishing the microphone track:
- // livekit (by default) keeps the mic track open when you mute, but if you start muted,
- // doesn't publish it until you unmute. We want to publish it from the start so we're
- // always capturing audio: it helps keep bluetooth headsets in the right mode and
- // mobile browsers to know we're doing a call.
- setIsInDoConnect(true);
- doConnect(
- livekitRoom!,
- sfuConfig!,
- initialAudioEnabled,
- initialAudioOptions,
- )
- .catch((e) => {
- if (e instanceof ElementCallError) {
- setError(e); // Bubble up any error screens to React
- } else if (e instanceof Error) {
- setError(new UnknownCallError(e));
- } else logger.error("Failed to connect to SFU", e);
- })
- .finally(() => setIsInDoConnect(false));
- }
-
- currentSFUConfig.current = Object.assign({}, sfuConfig);
- }, [
- sfuConfig,
- livekitRoom,
- initialAudioOptions,
- initialAudioEnabled,
- doFocusSwitch,
- ]);
-
- // Because we create audio tracks by hand, there's more to connecting than
- // just what LiveKit does in room.connect, and we should continue to return
- // ConnectionState.Connecting for the entire duration of the doConnect promise
- return isSwitchingFocus
- ? ECAddonConnectionState.ECSwitchingFocus
- : isInDoConnect
- ? ConnectionState.Connecting
- : connState;
-}
diff --git a/src/livekit/useLiveKit.ts b/src/livekit/useLiveKit.ts
deleted file mode 100644
index 0500a04d4..000000000
--- a/src/livekit/useLiveKit.ts
+++ /dev/null
@@ -1,335 +0,0 @@
-/*
-Copyright 2023, 2024 New Vector Ltd.
-
-SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
-Please see LICENSE in the repository root for full details.
-*/
-
-import {
- ConnectionState,
- type E2EEManagerOptions,
- ExternalE2EEKeyProvider,
- Room,
- type RoomOptions,
- Track,
-} from "livekit-client";
-import { useEffect, useMemo, useRef } from "react";
-import E2EEWorker from "livekit-client/e2ee-worker?worker";
-import { logger } from "matrix-js-sdk/lib/logger";
-import { type MatrixRTCSession } from "matrix-js-sdk/lib/matrixrtc";
-
-import { defaultLiveKitOptions } from "./options";
-import { type SFUConfig } from "./openIDSFU";
-import { type MuteStates } from "../room/MuteStates";
-import {
- type MediaDevice,
- type MediaDevices,
- useMediaDevices,
-} from "./MediaDevicesContext";
-import {
- type ECConnectionState,
- useECConnectionState,
-} from "./useECConnectionState";
-import { MatrixKeyProvider } from "../e2ee/matrixKeyProvider";
-import { E2eeType } from "../e2ee/e2eeType";
-import { type EncryptionSystem } from "../e2ee/sharedKeyManagement";
-
-interface UseLivekitResult {
- livekitRoom?: Room;
- connState: ECConnectionState;
-}
-
-export function useLiveKit(
- rtcSession: MatrixRTCSession,
- muteStates: MuteStates,
- sfuConfig: SFUConfig | undefined,
- e2eeSystem: EncryptionSystem,
-): UseLivekitResult {
- const e2eeOptions = useMemo((): E2EEManagerOptions | undefined => {
- if (e2eeSystem.kind === E2eeType.NONE) return undefined;
-
- if (e2eeSystem.kind === E2eeType.PER_PARTICIPANT) {
- return {
- keyProvider: new MatrixKeyProvider(),
- worker: new E2EEWorker(),
- };
- } else if (e2eeSystem.kind === E2eeType.SHARED_KEY && e2eeSystem.secret) {
- return {
- keyProvider: new ExternalE2EEKeyProvider(),
- worker: new E2EEWorker(),
- };
- }
- }, [e2eeSystem]);
-
- useEffect(() => {
- if (e2eeSystem.kind === E2eeType.NONE || !e2eeOptions) return;
-
- if (e2eeSystem.kind === E2eeType.PER_PARTICIPANT) {
- (e2eeOptions.keyProvider as MatrixKeyProvider).setRTCSession(rtcSession);
- } else if (e2eeSystem.kind === E2eeType.SHARED_KEY && e2eeSystem.secret) {
- (e2eeOptions.keyProvider as ExternalE2EEKeyProvider)
- .setKey(e2eeSystem.secret)
- .catch((e) => {
- logger.error("Failed to set shared key for E2EE", e);
- });
- }
- }, [e2eeOptions, e2eeSystem, rtcSession]);
-
- const initialMuteStates = useRef(muteStates);
- const devices = useMediaDevices();
- const initialDevices = useRef(devices);
-
- const roomOptions = useMemo(
- (): RoomOptions => ({
- ...defaultLiveKitOptions,
- videoCaptureDefaults: {
- ...defaultLiveKitOptions.videoCaptureDefaults,
- deviceId: initialDevices.current.videoInput.selectedId,
- },
- audioCaptureDefaults: {
- ...defaultLiveKitOptions.audioCaptureDefaults,
- deviceId: initialDevices.current.audioInput.selectedId,
- },
- audioOutput: {
- deviceId: initialDevices.current.audioOutput.selectedId,
- },
- e2ee: e2eeOptions,
- }),
- [e2eeOptions],
- );
-
- // Store if audio/video are currently updating. If to prohibit unnecessary calls
- // to setMicrophoneEnabled/setCameraEnabled
- const audioMuteUpdating = useRef(false);
- const videoMuteUpdating = useRef(false);
- // Store the current button mute state that gets passed to this hook via props.
- // We need to store it for awaited code that relies on the current value.
- const buttonEnabled = useRef({
- audio: initialMuteStates.current.audio.enabled,
- video: initialMuteStates.current.video.enabled,
- });
-
- // We have to create the room manually here due to a bug inside
- // @livekit/components-react. JSON.stringify() is used in deps of a
- // useEffect() with an argument that references itself, if E2EE is enabled
- const room = useMemo(() => {
- const r = new Room(roomOptions);
- r.setE2EEEnabled(e2eeSystem.kind !== E2eeType.NONE).catch((e) => {
- logger.error("Failed to set E2EE enabled on room", e);
- });
- return r;
- }, [roomOptions, e2eeSystem]);
-
- const connectionState = useECConnectionState(
- {
- deviceId: initialDevices.current.audioInput.selectedId,
- },
- initialMuteStates.current.audio.enabled,
- room,
- sfuConfig,
- );
-
- useEffect(() => {
- // Sync the requested mute states with LiveKit's mute states. We do it this
- // way around rather than using LiveKit as the source of truth, so that the
- // states can be consistent throughout the lobby and loading screens.
- // It's important that we only do this in the connected state, because
- // LiveKit's internal mute states aren't consistent during connection setup,
- // and setting tracks to be enabled during this time causes errors.
- if (room !== undefined && connectionState === ConnectionState.Connected) {
- const participant = room.localParticipant;
- // Always update the muteButtonState Ref so that we can read the current
- // state in awaited blocks.
- buttonEnabled.current = {
- audio: muteStates.audio.enabled,
- video: muteStates.video.enabled,
- };
-
- enum MuteDevice {
- Microphone,
- Camera,
- }
-
- const syncMuteState = async (
- iterCount: number,
- type: MuteDevice,
- ): Promise => {
- // The approach for muting is to always bring the actual livekit state in sync with the button
- // This allows for a very predictable and reactive behavior for the user.
- // (the new state is the old state when pressing the button n times (where n is even))
- // (the new state is different to the old state when pressing the button n times (where n is uneven))
- // In case there are issues with the device there might be situations where setMicrophoneEnabled/setCameraEnabled
- // return immediately. This should be caught with the Error("track with new mute state could not be published").
- // For now we are still using an iterCount to limit the recursion loop to 10.
- // This could happen if the device just really does not want to turn on (hardware based issue)
- // but the mute button is in unmute state.
- // For now our fail mode is to just stay in this state.
- // TODO: decide for a UX on how that fail mode should be treated (disable button, hide button, sync button back to muted without user input)
-
- if (iterCount > 10) {
- logger.error(
- "Stop trying to sync the input device with current mute state after 10 failed tries",
- );
- return;
- }
- let devEnabled;
- let btnEnabled;
- let updating;
- switch (type) {
- case MuteDevice.Microphone:
- devEnabled = participant.isMicrophoneEnabled;
- btnEnabled = buttonEnabled.current.audio;
- updating = audioMuteUpdating.current;
- break;
- case MuteDevice.Camera:
- devEnabled = participant.isCameraEnabled;
- btnEnabled = buttonEnabled.current.video;
- updating = videoMuteUpdating.current;
- break;
- }
- if (devEnabled !== btnEnabled && !updating) {
- try {
- let trackPublication;
- switch (type) {
- case MuteDevice.Microphone:
- audioMuteUpdating.current = true;
- trackPublication = await participant.setMicrophoneEnabled(
- buttonEnabled.current.audio,
- );
- audioMuteUpdating.current = false;
- break;
- case MuteDevice.Camera:
- videoMuteUpdating.current = true;
- trackPublication = await participant.setCameraEnabled(
- buttonEnabled.current.video,
- );
- videoMuteUpdating.current = false;
- break;
- }
-
- if (trackPublication) {
- // await participant.setMicrophoneEnabled can return immediately in some instances,
- // so that participant.isMicrophoneEnabled !== buttonEnabled.current.audio still holds true.
- // This happens if the device is still in a pending state
- // "sleeping" here makes sure we let react do its thing so that participant.isMicrophoneEnabled is updated,
- // so we do not end up in a recursion loop.
- await new Promise((r) => setTimeout(r, 100));
-
- // track got successfully changed to mute/unmute
- // Run the check again after the change is done. Because the user
- // can update the state (presses mute button) while the device is enabling
- // itself we need might need to update the mute state right away.
- // This async recursion makes sure that setCamera/MicrophoneEnabled is
- // called as little times as possible.
- await syncMuteState(iterCount + 1, type);
- } else {
- throw new Error(
- "track with new mute state could not be published",
- );
- }
- } catch (e) {
- if ((e as DOMException).name === "NotAllowedError") {
- logger.error(
- "Fatal error while syncing mute state: resetting",
- e,
- );
- if (type === MuteDevice.Microphone) {
- audioMuteUpdating.current = false;
- muteStates.audio.setEnabled?.(false);
- } else {
- videoMuteUpdating.current = false;
- muteStates.video.setEnabled?.(false);
- }
- } else {
- logger.error(
- "Failed to sync audio mute state with LiveKit (will retry to sync in 1s):",
- e,
- );
- setTimeout(() => {
- syncMuteState(iterCount + 1, type).catch((e) => {
- logger.error(
- `Failed to sync ${MuteDevice[type]} mute state with LiveKit iterCount=${iterCount + 1}`,
- e,
- );
- });
- }, 1000);
- }
- }
- }
- };
-
- syncMuteState(0, MuteDevice.Microphone).catch((e) => {
- logger.error("Failed to sync audio mute state with LiveKit", e);
- });
- syncMuteState(0, MuteDevice.Camera).catch((e) => {
- logger.error("Failed to sync video mute state with LiveKit", e);
- });
- }
- }, [room, muteStates, connectionState]);
-
- useEffect(() => {
- // Sync the requested devices with LiveKit's devices
- if (room !== undefined && connectionState === ConnectionState.Connected) {
- const syncDevice = (kind: MediaDeviceKind, device: MediaDevice): void => {
- const id = device.selectedId;
-
- // Detect if we're trying to use chrome's default device, in which case
- // we need to to see if the default device has changed to a different device
- // by comparing the group ID of the device we're using against the group ID
- // of what the default device is *now*.
- // This is special-cased for only audio inputs because we need to dig around
- // in the LocalParticipant object for the track object and there's not a nice
- // way to do that generically. There is usually no OS-level default video capture
- // device anyway, and audio outputs work differently.
- if (
- id === "default" &&
- kind === "audioinput" &&
- room.options.audioCaptureDefaults?.deviceId === "default"
- ) {
- const activeMicTrack = Array.from(
- room.localParticipant.audioTrackPublications.values(),
- ).find((d) => d.source === Track.Source.Microphone)?.track;
-
- if (
- activeMicTrack &&
- // only restart if the stream is still running: LiveKit will detect
- // when a track stops & restart appropriately, so this is not our job.
- // Plus, we need to avoid restarting again if the track is already in
- // the process of being restarted.
- activeMicTrack.mediaStreamTrack.readyState !== "ended" &&
- device.selectedGroupId !==
- activeMicTrack.mediaStreamTrack.getSettings().groupId
- ) {
- // It's different, so restart the track, ie. cause Livekit to do another
- // getUserMedia() call with deviceId: default to get the *new* default device.
- // Note that room.switchActiveDevice() won't work: Livekit will ignore it because
- // the deviceId hasn't changed (was & still is default).
- room.localParticipant
- .getTrackPublication(Track.Source.Microphone)
- ?.audioTrack?.restartTrack()
- .catch((e) => {
- logger.error(`Failed to restart audio device track`, e);
- });
- }
- } else {
- if (id !== undefined && room.getActiveDevice(kind) !== id) {
- room
- .switchActiveDevice(kind, id)
- .catch((e) =>
- logger.error(`Failed to sync ${kind} device with LiveKit`, e),
- );
- }
- }
- };
-
- syncDevice("audioinput", devices.audioInput);
- syncDevice("audiooutput", devices.audioOutput);
- syncDevice("videoinput", devices.videoInput);
- }
- }, [room, devices, connectionState]);
-
- return {
- connState: connectionState,
- livekitRoom: room,
- };
-}
diff --git a/src/main.tsx b/src/main.tsx
index bfa20443d..8f64c680a 100644
--- a/src/main.tsx
+++ b/src/main.tsx
@@ -15,25 +15,16 @@ import { StrictMode } from "react";
import { createRoot } from "react-dom/client";
import "./index.css";
import { logger } from "matrix-js-sdk/lib/logger";
-import {
- setLogExtension as setLKLogExtension,
- setLogLevel as setLKLogLevel,
-} from "livekit-client";
import { App } from "./App";
import { init as initRageshake } from "./settings/rageshake";
import { Initializer } from "./initializer";
-
-window.setLKLogLevel = setLKLogLevel;
+import { AppViewModel } from "./state/AppViewModel";
+import { globalScope } from "./state/ObservableScope";
initRageshake().catch((e) => {
logger.error("Failed to initialize rageshake", e);
});
-setLKLogLevel("warn");
-setLKLogExtension((level, msg, context) => {
- // we pass a synthetic logger name of "livekit" to the rageshake to make it easier to read
- global.mx_rage_logger.log(level, "livekit", msg, context);
-});
logger.info(`Element Call ${import.meta.env.VITE_APP_VERSION || "dev"}`);
@@ -60,11 +51,11 @@ Initializer.initBeforeReact()
.then(() => {
root.render(
-
+ ,
);
})
.catch((e) => {
- logger.error("Failed to initialize app", e);
+ logger.error(`Failed to initialize app ${e.message}`, e);
root.render(e.message);
});
diff --git a/src/mediapipe/imageSegmenter/README.md b/src/mediapipe/imageSegmenter/README.md
new file mode 100644
index 000000000..39bea2d81
--- /dev/null
+++ b/src/mediapipe/imageSegmenter/README.md
@@ -0,0 +1,5 @@
+# Google AI Edge MediaPipe Selfie Segmentation
+
+- See: https://ai.google.dev/edge/mediapipe/solutions/vision/image_segmenter
+- Latest: https://storage.googleapis.com/mediapipe-models/image_segmenter/selfie_segmenter/float16/latest/selfie_segmenter.tflite
+- License: Apache 2.0 as per https://storage.googleapis.com/mediapipe-assets/Model%20Card%20MediaPipe%20Selfie%20Segmentation.pdf
diff --git a/src/mediapipe/imageSegmenter/selfie_segmenter.tflite b/src/mediapipe/imageSegmenter/selfie_segmenter.tflite
new file mode 100644
index 000000000..a4ebd4777
Binary files /dev/null and b/src/mediapipe/imageSegmenter/selfie_segmenter.tflite differ
diff --git a/src/otel/OTelCall.ts b/src/otel/OTelCall.ts
deleted file mode 100644
index e70cedf2d..000000000
--- a/src/otel/OTelCall.ts
+++ /dev/null
@@ -1,188 +0,0 @@
-/*
-Copyright 2023, 2024 New Vector Ltd.
-
-SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
-Please see LICENSE in the repository root for full details.
-*/
-
-import { type Span } from "@opentelemetry/api";
-import { type MatrixCall } from "matrix-js-sdk";
-import { CallEvent } from "matrix-js-sdk/lib/webrtc/call";
-import {
- type TransceiverStats,
- type CallFeedStats,
-} from "matrix-js-sdk/lib/webrtc/stats/statsReport";
-
-import { ObjectFlattener } from "./ObjectFlattener";
-import { ElementCallOpenTelemetry } from "./otel";
-import { type OTelCallAbstractMediaStreamSpan } from "./OTelCallAbstractMediaStreamSpan";
-import { OTelCallTransceiverMediaStreamSpan } from "./OTelCallTransceiverMediaStreamSpan";
-import { OTelCallFeedMediaStreamSpan } from "./OTelCallFeedMediaStreamSpan";
-
-type StreamId = string;
-type MID = string;
-
-/**
- * Tracks an individual call within a group call, either to a full-mesh peer or a focus
- */
-export class OTelCall {
- private readonly trackFeedSpan = new Map<
- StreamId,
- OTelCallAbstractMediaStreamSpan
- >();
- private readonly trackTransceiverSpan = new Map<
- MID,
- OTelCallAbstractMediaStreamSpan
- >();
-
- public constructor(
- public userId: string,
- public deviceId: string,
- public call: MatrixCall,
- public span: Span,
- ) {
- if (call.peerConn) {
- this.addCallPeerConnListeners();
- } else {
- this.call.once(
- CallEvent.PeerConnectionCreated,
- this.addCallPeerConnListeners,
- );
- }
- }
-
- public dispose(): void {
- this.call.peerConn?.removeEventListener(
- "connectionstatechange",
- this.onCallConnectionStateChanged,
- );
- this.call.peerConn?.removeEventListener(
- "signalingstatechange",
- this.onCallSignalingStateChanged,
- );
- this.call.peerConn?.removeEventListener(
- "iceconnectionstatechange",
- this.onIceConnectionStateChanged,
- );
- this.call.peerConn?.removeEventListener(
- "icegatheringstatechange",
- this.onIceGatheringStateChanged,
- );
- this.call.peerConn?.removeEventListener(
- "icecandidateerror",
- this.onIceCandidateError,
- );
- }
-
- private addCallPeerConnListeners = (): void => {
- this.call.peerConn?.addEventListener(
- "connectionstatechange",
- this.onCallConnectionStateChanged,
- );
- this.call.peerConn?.addEventListener(
- "signalingstatechange",
- this.onCallSignalingStateChanged,
- );
- this.call.peerConn?.addEventListener(
- "iceconnectionstatechange",
- this.onIceConnectionStateChanged,
- );
- this.call.peerConn?.addEventListener(
- "icegatheringstatechange",
- this.onIceGatheringStateChanged,
- );
- this.call.peerConn?.addEventListener(
- "icecandidateerror",
- this.onIceCandidateError,
- );
- };
-
- public onCallConnectionStateChanged = (): void => {
- this.span.addEvent("matrix.call.callConnectionStateChange", {
- callConnectionState: this.call.peerConn?.connectionState,
- });
- };
-
- public onCallSignalingStateChanged = (): void => {
- this.span.addEvent("matrix.call.callSignalingStateChange", {
- callSignalingState: this.call.peerConn?.signalingState,
- });
- };
-
- public onIceConnectionStateChanged = (): void => {
- this.span.addEvent("matrix.call.iceConnectionStateChange", {
- iceConnectionState: this.call.peerConn?.iceConnectionState,
- });
- };
-
- public onIceGatheringStateChanged = (): void => {
- this.span.addEvent("matrix.call.iceGatheringStateChange", {
- iceGatheringState: this.call.peerConn?.iceGatheringState,
- });
- };
-
- public onIceCandidateError = (ev: Event): void => {
- const flatObject = {};
- ObjectFlattener.flattenObjectRecursive(ev, flatObject, "error.", 0);
-
- this.span.addEvent("matrix.call.iceCandidateError", flatObject);
- };
-
- public onCallFeedStats(callFeeds: CallFeedStats[]): void {
- let prvFeeds: StreamId[] = [...this.trackFeedSpan.keys()];
-
- callFeeds.forEach((feed) => {
- if (!this.trackFeedSpan.has(feed.stream)) {
- this.trackFeedSpan.set(
- feed.stream,
- new OTelCallFeedMediaStreamSpan(
- ElementCallOpenTelemetry.instance,
- this.span,
- feed,
- ),
- );
- }
- this.trackFeedSpan.get(feed.stream)?.update(feed);
- prvFeeds = prvFeeds.filter((prvStreamId) => prvStreamId !== feed.stream);
- });
-
- prvFeeds.forEach((prvStreamId) => {
- this.trackFeedSpan.get(prvStreamId)?.end();
- this.trackFeedSpan.delete(prvStreamId);
- });
- }
-
- public onTransceiverStats(transceiverStats: TransceiverStats[]): void {
- let prvTransSpan: MID[] = [...this.trackTransceiverSpan.keys()];
-
- transceiverStats.forEach((transStats) => {
- if (!this.trackTransceiverSpan.has(transStats.mid)) {
- this.trackTransceiverSpan.set(
- transStats.mid,
- new OTelCallTransceiverMediaStreamSpan(
- ElementCallOpenTelemetry.instance,
- this.span,
- transStats,
- ),
- );
- }
- this.trackTransceiverSpan.get(transStats.mid)?.update(transStats);
- prvTransSpan = prvTransSpan.filter(
- (prvStreamId) => prvStreamId !== transStats.mid,
- );
- });
-
- prvTransSpan.forEach((prvMID) => {
- this.trackTransceiverSpan.get(prvMID)?.end();
- this.trackTransceiverSpan.delete(prvMID);
- });
- }
-
- public end(): void {
- this.trackFeedSpan.forEach((feedSpan) => feedSpan.end());
- this.trackTransceiverSpan.forEach((transceiverSpan) =>
- transceiverSpan.end(),
- );
- this.span.end();
- }
-}
diff --git a/src/otel/OTelCallAbstractMediaStreamSpan.ts b/src/otel/OTelCallAbstractMediaStreamSpan.ts
deleted file mode 100644
index 69e415475..000000000
--- a/src/otel/OTelCallAbstractMediaStreamSpan.ts
+++ /dev/null
@@ -1,69 +0,0 @@
-/*
-Copyright 2023, 2024 New Vector Ltd.
-
-SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
-Please see LICENSE in the repository root for full details.
-*/
-
-import opentelemetry, { type Span } from "@opentelemetry/api";
-import { type TrackStats } from "matrix-js-sdk/lib/webrtc/stats/statsReport";
-
-import { type ElementCallOpenTelemetry } from "./otel";
-import { OTelCallMediaStreamTrackSpan } from "./OTelCallMediaStreamTrackSpan";
-
-type TrackId = string;
-
-export abstract class OTelCallAbstractMediaStreamSpan {
- protected readonly trackSpans = new Map<
- TrackId,
- OTelCallMediaStreamTrackSpan
- >();
- public readonly span;
-
- public constructor(
- protected readonly oTel: ElementCallOpenTelemetry,
- protected readonly callSpan: Span,
- protected readonly type: string,
- ) {
- const ctx = opentelemetry.trace.setSpan(
- opentelemetry.context.active(),
- callSpan,
- );
- const options = {
- links: [
- {
- context: callSpan.spanContext(),
- },
- ],
- };
- this.span = oTel.tracer.startSpan(this.type, options, ctx);
- }
-
- protected upsertTrackSpans(tracks: TrackStats[]): void {
- let prvTracks: TrackId[] = [...this.trackSpans.keys()];
- tracks.forEach((t) => {
- if (!this.trackSpans.has(t.id)) {
- this.trackSpans.set(
- t.id,
- new OTelCallMediaStreamTrackSpan(this.oTel, this.span, t),
- );
- }
- this.trackSpans.get(t.id)?.update(t);
- prvTracks = prvTracks.filter((prvTrackId) => prvTrackId !== t.id);
- });
-
- prvTracks.forEach((prvTrackId) => {
- this.trackSpans.get(prvTrackId)?.end();
- this.trackSpans.delete(prvTrackId);
- });
- }
-
- public abstract update(data: object): void;
-
- public end(): void {
- this.trackSpans.forEach((tSpan) => {
- tSpan.end();
- });
- this.span.end();
- }
-}
diff --git a/src/otel/OTelCallFeedMediaStreamSpan.ts b/src/otel/OTelCallFeedMediaStreamSpan.ts
deleted file mode 100644
index 59c780a5c..000000000
--- a/src/otel/OTelCallFeedMediaStreamSpan.ts
+++ /dev/null
@@ -1,64 +0,0 @@
-/*
-Copyright 2023, 2024 New Vector Ltd.
-
-SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
-Please see LICENSE in the repository root for full details.
-*/
-
-import { type Span } from "@opentelemetry/api";
-import {
- type CallFeedStats,
- type TrackStats,
-} from "matrix-js-sdk/lib/webrtc/stats/statsReport";
-
-import { type ElementCallOpenTelemetry } from "./otel";
-import { OTelCallAbstractMediaStreamSpan } from "./OTelCallAbstractMediaStreamSpan";
-
-export class OTelCallFeedMediaStreamSpan extends OTelCallAbstractMediaStreamSpan {
- private readonly prev: { isAudioMuted: boolean; isVideoMuted: boolean };
-
- public constructor(
- protected readonly oTel: ElementCallOpenTelemetry,
- protected readonly callSpan: Span,
- callFeed: CallFeedStats,
- ) {
- const postFix =
- callFeed.type === "local" && callFeed.prefix === "from-call-feed"
- ? "(clone)"
- : "";
- super(oTel, callSpan, `matrix.call.feed.${callFeed.type}${postFix}`);
- this.span.setAttribute("feed.streamId", callFeed.stream);
- this.span.setAttribute("feed.type", callFeed.type);
- this.span.setAttribute("feed.readFrom", callFeed.prefix);
- this.span.setAttribute("feed.purpose", callFeed.purpose);
- this.prev = {
- isAudioMuted: callFeed.isAudioMuted,
- isVideoMuted: callFeed.isVideoMuted,
- };
- this.span.addEvent("matrix.call.feed.initState", this.prev);
- }
-
- public update(callFeed: CallFeedStats): void {
- if (this.prev.isAudioMuted !== callFeed.isAudioMuted) {
- this.span.addEvent("matrix.call.feed.audioMuted", {
- isAudioMuted: callFeed.isAudioMuted,
- });
- this.prev.isAudioMuted = callFeed.isAudioMuted;
- }
- if (this.prev.isVideoMuted !== callFeed.isVideoMuted) {
- this.span.addEvent("matrix.call.feed.isVideoMuted", {
- isVideoMuted: callFeed.isVideoMuted,
- });
- this.prev.isVideoMuted = callFeed.isVideoMuted;
- }
-
- const trackStats: TrackStats[] = [];
- if (callFeed.video) {
- trackStats.push(callFeed.video);
- }
- if (callFeed.audio) {
- trackStats.push(callFeed.audio);
- }
- this.upsertTrackSpans(trackStats);
- }
-}
diff --git a/src/otel/OTelCallMediaStreamTrackSpan.ts b/src/otel/OTelCallMediaStreamTrackSpan.ts
deleted file mode 100644
index c81acd4f5..000000000
--- a/src/otel/OTelCallMediaStreamTrackSpan.ts
+++ /dev/null
@@ -1,69 +0,0 @@
-/*
-Copyright 2023, 2024 New Vector Ltd.
-
-SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
-Please see LICENSE in the repository root for full details.
-*/
-
-import { type TrackStats } from "matrix-js-sdk/lib/webrtc/stats/statsReport";
-import opentelemetry, { type Span } from "@opentelemetry/api";
-
-import { type ElementCallOpenTelemetry } from "./otel";
-
-export class OTelCallMediaStreamTrackSpan {
- private readonly span: Span;
- private prev: TrackStats;
-
- public constructor(
- protected readonly oTel: ElementCallOpenTelemetry,
- protected readonly streamSpan: Span,
- data: TrackStats,
- ) {
- const ctx = opentelemetry.trace.setSpan(
- opentelemetry.context.active(),
- streamSpan,
- );
- const options = {
- links: [
- {
- context: streamSpan.spanContext(),
- },
- ],
- };
- const type = `matrix.call.track.${data.label}.${data.kind}`;
- this.span = oTel.tracer.startSpan(type, options, ctx);
- this.span.setAttribute("track.trackId", data.id);
- this.span.setAttribute("track.kind", data.kind);
- this.span.setAttribute("track.constrainDeviceId", data.constrainDeviceId);
- this.span.setAttribute("track.settingDeviceId", data.settingDeviceId);
- this.span.setAttribute("track.label", data.label);
-
- this.span.addEvent("matrix.call.track.initState", {
- readyState: data.readyState,
- muted: data.muted,
- enabled: data.enabled,
- });
- this.prev = data;
- }
-
- public update(data: TrackStats): void {
- if (this.prev.muted !== data.muted) {
- this.span.addEvent("matrix.call.track.muted", { muted: data.muted });
- }
- if (this.prev.enabled !== data.enabled) {
- this.span.addEvent("matrix.call.track.enabled", {
- enabled: data.enabled,
- });
- }
- if (this.prev.readyState !== data.readyState) {
- this.span.addEvent("matrix.call.track.readyState", {
- readyState: data.readyState,
- });
- }
- this.prev = data;
- }
-
- public end(): void {
- this.span.end();
- }
-}
diff --git a/src/otel/OTelCallTransceiverMediaStreamSpan.ts b/src/otel/OTelCallTransceiverMediaStreamSpan.ts
deleted file mode 100644
index 675d793ef..000000000
--- a/src/otel/OTelCallTransceiverMediaStreamSpan.ts
+++ /dev/null
@@ -1,61 +0,0 @@
-/*
-Copyright 2023, 2024 New Vector Ltd.
-
-SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
-Please see LICENSE in the repository root for full details.
-*/
-
-import { type Span } from "@opentelemetry/api";
-import {
- type TrackStats,
- type TransceiverStats,
-} from "matrix-js-sdk/lib/webrtc/stats/statsReport";
-
-import { type ElementCallOpenTelemetry } from "./otel";
-import { OTelCallAbstractMediaStreamSpan } from "./OTelCallAbstractMediaStreamSpan";
-
-export class OTelCallTransceiverMediaStreamSpan extends OTelCallAbstractMediaStreamSpan {
- private readonly prev: {
- direction: string;
- currentDirection: string;
- };
-
- public constructor(
- protected readonly oTel: ElementCallOpenTelemetry,
- protected readonly callSpan: Span,
- stats: TransceiverStats,
- ) {
- super(oTel, callSpan, `matrix.call.transceiver.${stats.mid}`);
- this.span.setAttribute("transceiver.mid", stats.mid);
-
- this.prev = {
- direction: stats.direction,
- currentDirection: stats.currentDirection,
- };
- this.span.addEvent("matrix.call.transceiver.initState", this.prev);
- }
-
- public update(stats: TransceiverStats): void {
- if (this.prev.currentDirection !== stats.currentDirection) {
- this.span.addEvent("matrix.call.transceiver.currentDirection", {
- currentDirection: stats.currentDirection,
- });
- this.prev.currentDirection = stats.currentDirection;
- }
- if (this.prev.direction !== stats.direction) {
- this.span.addEvent("matrix.call.transceiver.direction", {
- direction: stats.direction,
- });
- this.prev.direction = stats.direction;
- }
-
- const trackStats: TrackStats[] = [];
- if (stats.sender) {
- trackStats.push(stats.sender);
- }
- if (stats.receiver) {
- trackStats.push(stats.receiver);
- }
- this.upsertTrackSpans(trackStats);
- }
-}
diff --git a/src/otel/OTelGroupCallMembership.ts b/src/otel/OTelGroupCallMembership.ts
deleted file mode 100644
index 668b989cc..000000000
--- a/src/otel/OTelGroupCallMembership.ts
+++ /dev/null
@@ -1,477 +0,0 @@
-/*
-Copyright 2023, 2024 New Vector Ltd.
-
-SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
-Please see LICENSE in the repository root for full details.
-*/
-
-import opentelemetry, {
- type Span,
- type Attributes,
- type Context,
-} from "@opentelemetry/api";
-import {
- type GroupCall,
- type MatrixClient,
- type MatrixEvent,
- type RoomMember,
-} from "matrix-js-sdk";
-import { logger } from "matrix-js-sdk/lib/logger";
-import {
- type CallError,
- type CallState,
- type MatrixCall,
- type VoipEvent,
-} from "matrix-js-sdk/lib/webrtc/call";
-import {
- type CallsByUserAndDevice,
- type GroupCallError,
- GroupCallEvent,
- type GroupCallStatsReport,
-} from "matrix-js-sdk/lib/webrtc/groupCall";
-import {
- type ConnectionStatsReport,
- type ByteSentStatsReport,
- type SummaryStatsReport,
- type CallFeedReport,
-} from "matrix-js-sdk/lib/webrtc/stats/statsReport";
-
-import { ElementCallOpenTelemetry } from "./otel";
-import { ObjectFlattener } from "./ObjectFlattener";
-import { OTelCall } from "./OTelCall";
-
-/**
- * Represent the span of time which we intend to be joined to a group call
- */
-export class OTelGroupCallMembership {
- private callMembershipSpan?: Span;
- private groupCallContext?: Context;
- private myUserId = "unknown";
- private myDeviceId: string;
- private myMember?: RoomMember;
- private callsByCallId = new Map();
- private statsReportSpan: {
- span: Span | undefined;
- stats: OTelStatsReportEvent[];
- };
- private readonly speakingSpans = new Map>();
-
- public constructor(
- private groupCall: GroupCall,
- client: MatrixClient,
- ) {
- const clientId = client.getUserId();
- if (clientId) {
- this.myUserId = clientId;
- const myMember = groupCall.room.getMember(clientId);
- if (myMember) {
- this.myMember = myMember;
- }
- }
- this.myDeviceId = client.getDeviceId() || "unknown";
- this.statsReportSpan = { span: undefined, stats: [] };
- this.groupCall.on(GroupCallEvent.CallsChanged, this.onCallsChanged);
- }
-
- public dispose(): void {
- this.groupCall.removeListener(
- GroupCallEvent.CallsChanged,
- this.onCallsChanged,
- );
- }
-
- public onJoinCall(): void {
- if (!ElementCallOpenTelemetry.instance) return;
- if (this.callMembershipSpan !== undefined) {
- logger.warn("Call membership span is already started");
- return;
- }
-
- // Create the main span that tracks the time we intend to be in the call
- this.callMembershipSpan =
- ElementCallOpenTelemetry.instance.tracer.startSpan(
- "matrix.groupCallMembership",
- );
- this.callMembershipSpan.setAttribute(
- "matrix.confId",
- this.groupCall.groupCallId,
- );
- this.callMembershipSpan.setAttribute("matrix.userId", this.myUserId);
- this.callMembershipSpan.setAttribute("matrix.deviceId", this.myDeviceId);
- this.callMembershipSpan.setAttribute(
- "matrix.displayName",
- this.myMember ? this.myMember.name : "unknown-name",
- );
-
- this.groupCallContext = opentelemetry.trace.setSpan(
- opentelemetry.context.active(),
- this.callMembershipSpan,
- );
-
- this.callMembershipSpan?.addEvent("matrix.joinCall");
- }
-
- public onLeaveCall(): void {
- if (this.callMembershipSpan === undefined) {
- logger.warn("Call membership span is already ended");
- return;
- }
-
- this.callMembershipSpan.addEvent("matrix.leaveCall");
- // and end the span to indicate we've left
- this.callMembershipSpan.end();
- this.callMembershipSpan = undefined;
- this.groupCallContext = undefined;
- }
-
- public onUpdateRoomState(event: MatrixEvent): void {
- if (
- !event ||
- (!event.getType().startsWith("m.call") &&
- !event.getType().startsWith("org.matrix.msc3401.call"))
- ) {
- return;
- }
-
- this.callMembershipSpan?.addEvent(
- `matrix.roomStateEvent_${event.getType()}`,
- ObjectFlattener.flattenVoipEvent(event.getContent()),
- );
- }
-
- public onCallsChanged(calls: CallsByUserAndDevice): void {
- for (const [userId, userCalls] of calls.entries()) {
- for (const [deviceId, call] of userCalls.entries()) {
- if (!this.callsByCallId.has(call.callId)) {
- if (ElementCallOpenTelemetry.instance) {
- const span = ElementCallOpenTelemetry.instance.tracer.startSpan(
- `matrix.call`,
- undefined,
- this.groupCallContext,
- );
- // XXX: anonymity
- span.setAttribute("matrix.call.target.userId", userId);
- span.setAttribute("matrix.call.target.deviceId", deviceId);
- const displayName =
- this.groupCall.room.getMember(userId)?.name ?? "unknown";
- span.setAttribute("matrix.call.target.displayName", displayName);
- this.callsByCallId.set(
- call.callId,
- new OTelCall(userId, deviceId, call, span),
- );
- }
- }
- }
- }
-
- for (const callTrackingInfo of this.callsByCallId.values()) {
- const userCalls = calls.get(callTrackingInfo.userId);
- if (
- !userCalls ||
- !userCalls.has(callTrackingInfo.deviceId) ||
- userCalls.get(callTrackingInfo.deviceId)?.callId !==
- callTrackingInfo.call.callId
- ) {
- callTrackingInfo.end();
- this.callsByCallId.delete(callTrackingInfo.call.callId);
- }
- }
- }
-
- public onCallStateChange(call: MatrixCall, newState: CallState): void {
- const callTrackingInfo = this.callsByCallId.get(call.callId);
- if (!callTrackingInfo) {
- logger.error(`Got call state change for unknown call ID ${call.callId}`);
- return;
- }
-
- callTrackingInfo.span.addEvent("matrix.call.stateChange", {
- state: newState,
- });
- }
-
- public onSendEvent(call: MatrixCall, event: VoipEvent): void {
- const eventType = event.eventType as string;
- if (
- !eventType.startsWith("m.call") &&
- !eventType.startsWith("org.matrix.call")
- )
- return;
-
- const callTrackingInfo = this.callsByCallId.get(call.callId);
- if (!callTrackingInfo) {
- logger.error(`Got call send event for unknown call ID ${call.callId}`);
- return;
- }
-
- if (event.type === "toDevice") {
- callTrackingInfo.span.addEvent(
- `matrix.sendToDeviceEvent_${event.eventType}`,
- ObjectFlattener.flattenVoipEvent(event),
- );
- } else if (event.type === "sendEvent") {
- callTrackingInfo.span.addEvent(
- `matrix.sendToRoomEvent_${event.eventType}`,
- ObjectFlattener.flattenVoipEvent(event),
- );
- }
- }
-
- public onReceivedVoipEvent(event: MatrixEvent): void {
- // These come straight from CallEventHandler so don't have
- // a call already associated (in principle we could receive
- // events for calls we don't know about).
- const callId = event.getContent().call_id;
- if (!callId) {
- this.callMembershipSpan?.addEvent("matrix.receive_voip_event_no_callid", {
- "sender.userId": event.getSender(),
- });
- logger.error("Received call event with no call ID!");
- return;
- }
-
- const call = this.callsByCallId.get(callId);
- if (!call) {
- this.callMembershipSpan?.addEvent(
- "matrix.receive_voip_event_unknown_callid",
- {
- "sender.userId": event.getSender(),
- },
- );
- logger.error("Received call event for unknown call ID " + callId);
- return;
- }
-
- call.span.addEvent("matrix.receive_voip_event", {
- "sender.userId": event.getSender(),
- ...ObjectFlattener.flattenVoipEvent(event.getContent()),
- });
- }
-
- public onToggleMicrophoneMuted(newValue: boolean): void {
- this.callMembershipSpan?.addEvent("matrix.toggleMicMuted", {
- "matrix.microphone.muted": newValue,
- });
- }
-
- public onSetMicrophoneMuted(setMuted: boolean): void {
- this.callMembershipSpan?.addEvent("matrix.setMicMuted", {
- "matrix.microphone.muted": setMuted,
- });
- }
-
- public onToggleLocalVideoMuted(newValue: boolean): void {
- this.callMembershipSpan?.addEvent("matrix.toggleVidMuted", {
- "matrix.video.muted": newValue,
- });
- }
-
- public onSetLocalVideoMuted(setMuted: boolean): void {
- this.callMembershipSpan?.addEvent("matrix.setVidMuted", {
- "matrix.video.muted": setMuted,
- });
- }
-
- public onToggleScreensharing(newValue: boolean): void {
- this.callMembershipSpan?.addEvent("matrix.setVidMuted", {
- "matrix.screensharing.enabled": newValue,
- });
- }
-
- public onSpeaking(
- member: RoomMember,
- deviceId: string,
- speaking: boolean,
- ): void {
- if (speaking) {
- // Ensure that there's an audio activity span for this speaker
- let deviceMap = this.speakingSpans.get(member);
- if (deviceMap === undefined) {
- deviceMap = new Map();
- this.speakingSpans.set(member, deviceMap);
- }
-
- if (!deviceMap.has(deviceId)) {
- const span = ElementCallOpenTelemetry.instance.tracer.startSpan(
- "matrix.audioActivity",
- undefined,
- this.groupCallContext,
- );
- span.setAttribute("matrix.userId", member.userId);
- span.setAttribute("matrix.displayName", member.rawDisplayName);
-
- deviceMap.set(deviceId, span);
- }
- } else {
- // End the audio activity span for this speaker, if any
- const deviceMap = this.speakingSpans.get(member);
- deviceMap?.get(deviceId)?.end();
- deviceMap?.delete(deviceId);
-
- if (deviceMap?.size === 0) this.speakingSpans.delete(member);
- }
- }
-
- public onCallError(error: CallError, call: MatrixCall): void {
- const callTrackingInfo = this.callsByCallId.get(call.callId);
- if (!callTrackingInfo) {
- logger.error(`Got error for unknown call ID ${call.callId}`);
- return;
- }
-
- callTrackingInfo.span.recordException(error);
- }
-
- public onGroupCallError(error: GroupCallError): void {
- this.callMembershipSpan?.recordException(error);
- }
-
- public onUndecryptableToDevice(event: MatrixEvent): void {
- this.callMembershipSpan?.addEvent("matrix.toDevice.undecryptable", {
- "sender.userId": event.getSender(),
- });
- }
-
- public onCallFeedStatsReport(
- report: GroupCallStatsReport,
- ): void {
- if (!ElementCallOpenTelemetry.instance) return;
- let call: OTelCall | undefined;
- const callId = report.report?.callId;
-
- if (callId) {
- call = this.callsByCallId.get(callId);
- }
-
- if (!call) {
- this.callMembershipSpan?.addEvent(
- OTelStatsReportType.CallFeedReport + "_unknown_callId",
- {
- "call.callId": callId,
- "call.opponentMemberId": report.report?.opponentMemberId
- ? report.report?.opponentMemberId
- : "unknown",
- },
- );
- logger.error(
- `Received ${OTelStatsReportType.CallFeedReport} with unknown call ID: ${callId}`,
- );
- return;
- } else {
- call.onCallFeedStats(report.report.callFeeds);
- call.onTransceiverStats(report.report.transceiver);
- }
- }
-
- public onConnectionStatsReport(
- statsReport: GroupCallStatsReport,
- ): void {
- this.buildCallStatsSpan(
- OTelStatsReportType.ConnectionReport,
- statsReport.report,
- );
- }
-
- public onByteSentStatsReport(
- statsReport: GroupCallStatsReport,
- ): void {
- this.buildCallStatsSpan(
- OTelStatsReportType.ByteSentReport,
- statsReport.report,
- );
- }
-
- public buildCallStatsSpan(
- type: OTelStatsReportType,
- report: ByteSentStatsReport | ConnectionStatsReport,
- ): void {
- if (!ElementCallOpenTelemetry.instance) return;
- let call: OTelCall | undefined;
- const callId = report?.callId;
-
- if (callId) {
- call = this.callsByCallId.get(callId);
- }
-
- if (!call) {
- this.callMembershipSpan?.addEvent(type + "_unknown_callid", {
- "call.callId": callId,
- "call.opponentMemberId": report.opponentMemberId
- ? report.opponentMemberId
- : "unknown",
- });
- logger.error(`Received ${type} with unknown call ID: ${callId}`);
- return;
- }
- const data = ObjectFlattener.flattenReportObject(type, report);
- const ctx = opentelemetry.trace.setSpan(
- opentelemetry.context.active(),
- call.span,
- );
-
- const options = {
- links: [
- {
- context: call.span.spanContext(),
- },
- ],
- };
-
- const span = ElementCallOpenTelemetry.instance.tracer.startSpan(
- type,
- options,
- ctx,
- );
-
- span.setAttribute("matrix.callId", callId ?? "unknown");
- span.setAttribute(
- "matrix.opponentMemberId",
- report.opponentMemberId ? report.opponentMemberId : "unknown",
- );
- span.addEvent("matrix.call.connection_stats_event", data);
- span.end();
- }
-
- public onSummaryStatsReport(
- statsReport: GroupCallStatsReport,
- ): void {
- if (!ElementCallOpenTelemetry.instance) return;
-
- const type = OTelStatsReportType.SummaryReport;
- const data = ObjectFlattener.flattenSummaryStatsReportObject(statsReport);
- if (this.statsReportSpan.span === undefined && this.callMembershipSpan) {
- const ctx = opentelemetry.trace.setSpan(
- opentelemetry.context.active(),
- this.callMembershipSpan,
- );
- const span = ElementCallOpenTelemetry.instance?.tracer.startSpan(
- "matrix.groupCallMembership.summaryReport",
- undefined,
- ctx,
- );
- if (span === undefined) {
- return;
- }
- span.setAttribute("matrix.confId", this.groupCall.groupCallId);
- span.setAttribute("matrix.userId", this.myUserId);
- span.setAttribute(
- "matrix.displayName",
- this.myMember ? this.myMember.name : "unknown-name",
- );
- span.addEvent(type, data);
- span.end();
- }
- }
-}
-
-interface OTelStatsReportEvent {
- type: OTelStatsReportType;
- data: Attributes;
-}
-
-enum OTelStatsReportType {
- ConnectionReport = "matrix.call.stats.connection",
- ByteSentReport = "matrix.call.stats.byteSent",
- SummaryReport = "matrix.stats.summary",
- CallFeedReport = "matrix.stats.call_feed",
-}
diff --git a/src/otel/ObjectFlattener.test.ts b/src/otel/ObjectFlattener.test.ts
deleted file mode 100644
index 5685617c4..000000000
--- a/src/otel/ObjectFlattener.test.ts
+++ /dev/null
@@ -1,266 +0,0 @@
-/*
-Copyright 2023, 2024 New Vector Ltd.
-
-SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
-Please see LICENSE in the repository root for full details.
-*/
-
-import { type GroupCallStatsReport } from "matrix-js-sdk/lib/webrtc/groupCall";
-import {
- type AudioConcealment,
- type ByteSentStatsReport,
- type ConnectionStatsReport,
-} from "matrix-js-sdk/lib/webrtc/stats/statsReport";
-import { describe, expect, it } from "vitest";
-
-import { ObjectFlattener } from "../../src/otel/ObjectFlattener";
-
-describe("ObjectFlattener", () => {
- const noConcealment: AudioConcealment = {
- concealedAudio: 0,
- totalAudioDuration: 0,
- };
-
- const statsReport: GroupCallStatsReport = {
- report: {
- callId: "callId",
- opponentMemberId: "opponentMemberId",
- bandwidth: { upload: 426, download: 0 },
- bitrate: {
- upload: 426,
- download: 0,
- audio: {
- upload: 124,
- download: 0,
- },
- video: {
- upload: 302,
- download: 0,
- },
- },
- packetLoss: {
- total: 0,
- download: 0,
- upload: 0,
- },
- framerate: {
- local: new Map([
- ["LOCAL_AUDIO_TRACK_ID", 0],
- ["LOCAL_VIDEO_TRACK_ID", 30],
- ]),
- remote: new Map([
- ["REMOTE_AUDIO_TRACK_ID", 0],
- ["REMOTE_VIDEO_TRACK_ID", 60],
- ]),
- },
- resolution: {
- local: new Map([
- ["LOCAL_AUDIO_TRACK_ID", { height: -1, width: -1 }],
- ["LOCAL_VIDEO_TRACK_ID", { height: 460, width: 780 }],
- ]),
- remote: new Map([
- ["REMOTE_AUDIO_TRACK_ID", { height: -1, width: -1 }],
- ["REMOTE_VIDEO_TRACK_ID", { height: 960, width: 1080 }],
- ]),
- },
- jitter: new Map([
- ["REMOTE_AUDIO_TRACK_ID", 2],
- ["REMOTE_VIDEO_TRACK_ID", 50],
- ]),
- codec: {
- local: new Map([
- ["LOCAL_AUDIO_TRACK_ID", "opus"],
- ["LOCAL_VIDEO_TRACK_ID", "v8"],
- ]),
- remote: new Map([
- ["REMOTE_AUDIO_TRACK_ID", "opus"],
- ["REMOTE_VIDEO_TRACK_ID", "v9"],
- ]),
- },
- transport: [
- {
- ip: "ff11::5fa:abcd:999c:c5c5:50000",
- type: "udp",
- localIp: "2aaa:9999:2aaa:999:8888:2aaa:2aaa:7777:50000",
- isFocus: true,
- localCandidateType: "host",
- remoteCandidateType: "host",
- networkType: "ethernet",
- rtt: NaN,
- },
- {
- ip: "10.10.10.2:22222",
- type: "tcp",
- localIp: "10.10.10.100:33333",
- isFocus: true,
- localCandidateType: "srfx",
- remoteCandidateType: "srfx",
- networkType: "ethernet",
- rtt: 0,
- },
- ],
- audioConcealment: new Map([
- ["REMOTE_AUDIO_TRACK_ID", noConcealment],
- ["REMOTE_VIDEO_TRACK_ID", noConcealment],
- ]),
- totalAudioConcealment: noConcealment,
- },
- };
-
- describe("on flattenObjectRecursive", () => {
- it("should flatter an Map object", () => {
- const flatObject = {};
- ObjectFlattener.flattenObjectRecursive(
- statsReport.report.resolution,
- flatObject,
- "matrix.call.stats.connection.resolution.",
- 0,
- );
- expect(flatObject).toEqual({
- "matrix.call.stats.connection.resolution.local.LOCAL_AUDIO_TRACK_ID.height":
- -1,
- "matrix.call.stats.connection.resolution.local.LOCAL_AUDIO_TRACK_ID.width":
- -1,
-
- "matrix.call.stats.connection.resolution.local.LOCAL_VIDEO_TRACK_ID.height": 460,
- "matrix.call.stats.connection.resolution.local.LOCAL_VIDEO_TRACK_ID.width": 780,
-
- "matrix.call.stats.connection.resolution.remote.REMOTE_AUDIO_TRACK_ID.height":
- -1,
- "matrix.call.stats.connection.resolution.remote.REMOTE_AUDIO_TRACK_ID.width":
- -1,
-
- "matrix.call.stats.connection.resolution.remote.REMOTE_VIDEO_TRACK_ID.height": 960,
- "matrix.call.stats.connection.resolution.remote.REMOTE_VIDEO_TRACK_ID.width": 1080,
- });
- });
- it("should flatter an Array object", () => {
- const flatObject = {};
- ObjectFlattener.flattenObjectRecursive(
- statsReport.report.transport,
- flatObject,
- "matrix.call.stats.connection.transport.",
- 0,
- );
- expect(flatObject).toEqual({
- "matrix.call.stats.connection.transport.0.ip":
- "ff11::5fa:abcd:999c:c5c5:50000",
- "matrix.call.stats.connection.transport.0.type": "udp",
- "matrix.call.stats.connection.transport.0.localIp":
- "2aaa:9999:2aaa:999:8888:2aaa:2aaa:7777:50000",
- "matrix.call.stats.connection.transport.0.isFocus": true,
- "matrix.call.stats.connection.transport.0.localCandidateType": "host",
- "matrix.call.stats.connection.transport.0.remoteCandidateType": "host",
- "matrix.call.stats.connection.transport.0.networkType": "ethernet",
- "matrix.call.stats.connection.transport.0.rtt": "NaN",
- "matrix.call.stats.connection.transport.1.ip": "10.10.10.2:22222",
- "matrix.call.stats.connection.transport.1.type": "tcp",
- "matrix.call.stats.connection.transport.1.localIp":
- "10.10.10.100:33333",
- "matrix.call.stats.connection.transport.1.isFocus": true,
- "matrix.call.stats.connection.transport.1.localCandidateType": "srfx",
- "matrix.call.stats.connection.transport.1.remoteCandidateType": "srfx",
- "matrix.call.stats.connection.transport.1.networkType": "ethernet",
- "matrix.call.stats.connection.transport.1.rtt": 0,
- });
- });
- });
-
- describe("on flattenReportObject Connection Stats", () => {
- it("should flatten a Report to otel Attributes Object", () => {
- expect(
- ObjectFlattener.flattenReportObject(
- "matrix.call.stats.connection",
- statsReport.report,
- ),
- ).toEqual({
- "matrix.call.stats.connection.callId": "callId",
- "matrix.call.stats.connection.opponentMemberId": "opponentMemberId",
- "matrix.call.stats.connection.bandwidth.download": 0,
- "matrix.call.stats.connection.bandwidth.upload": 426,
- "matrix.call.stats.connection.bitrate.audio.download": 0,
- "matrix.call.stats.connection.bitrate.audio.upload": 124,
- "matrix.call.stats.connection.bitrate.download": 0,
- "matrix.call.stats.connection.bitrate.upload": 426,
- "matrix.call.stats.connection.bitrate.video.download": 0,
- "matrix.call.stats.connection.bitrate.video.upload": 302,
- "matrix.call.stats.connection.codec.local.LOCAL_AUDIO_TRACK_ID": "opus",
- "matrix.call.stats.connection.codec.local.LOCAL_VIDEO_TRACK_ID": "v8",
- "matrix.call.stats.connection.codec.remote.REMOTE_AUDIO_TRACK_ID":
- "opus",
- "matrix.call.stats.connection.codec.remote.REMOTE_VIDEO_TRACK_ID": "v9",
- "matrix.call.stats.connection.framerate.local.LOCAL_AUDIO_TRACK_ID": 0,
- "matrix.call.stats.connection.framerate.local.LOCAL_VIDEO_TRACK_ID": 30,
- "matrix.call.stats.connection.framerate.remote.REMOTE_AUDIO_TRACK_ID": 0,
- "matrix.call.stats.connection.framerate.remote.REMOTE_VIDEO_TRACK_ID": 60,
- "matrix.call.stats.connection.jitter.REMOTE_AUDIO_TRACK_ID": 2,
- "matrix.call.stats.connection.jitter.REMOTE_VIDEO_TRACK_ID": 50,
- "matrix.call.stats.connection.packetLoss.download": 0,
- "matrix.call.stats.connection.packetLoss.total": 0,
- "matrix.call.stats.connection.packetLoss.upload": 0,
- "matrix.call.stats.connection.resolution.local.LOCAL_AUDIO_TRACK_ID.height":
- -1,
- "matrix.call.stats.connection.resolution.local.LOCAL_AUDIO_TRACK_ID.width":
- -1,
- "matrix.call.stats.connection.resolution.local.LOCAL_VIDEO_TRACK_ID.height": 460,
- "matrix.call.stats.connection.resolution.local.LOCAL_VIDEO_TRACK_ID.width": 780,
- "matrix.call.stats.connection.resolution.remote.REMOTE_AUDIO_TRACK_ID.height":
- -1,
- "matrix.call.stats.connection.resolution.remote.REMOTE_AUDIO_TRACK_ID.width":
- -1,
- "matrix.call.stats.connection.resolution.remote.REMOTE_VIDEO_TRACK_ID.height": 960,
- "matrix.call.stats.connection.resolution.remote.REMOTE_VIDEO_TRACK_ID.width": 1080,
- "matrix.call.stats.connection.transport.0.ip":
- "ff11::5fa:abcd:999c:c5c5:50000",
- "matrix.call.stats.connection.transport.0.type": "udp",
- "matrix.call.stats.connection.transport.0.localIp":
- "2aaa:9999:2aaa:999:8888:2aaa:2aaa:7777:50000",
- "matrix.call.stats.connection.transport.0.isFocus": true,
- "matrix.call.stats.connection.transport.0.localCandidateType": "host",
- "matrix.call.stats.connection.transport.0.remoteCandidateType": "host",
- "matrix.call.stats.connection.transport.0.networkType": "ethernet",
- "matrix.call.stats.connection.transport.0.rtt": "NaN",
- "matrix.call.stats.connection.transport.1.ip": "10.10.10.2:22222",
- "matrix.call.stats.connection.transport.1.type": "tcp",
- "matrix.call.stats.connection.transport.1.localIp":
- "10.10.10.100:33333",
- "matrix.call.stats.connection.transport.1.isFocus": true,
- "matrix.call.stats.connection.transport.1.localCandidateType": "srfx",
- "matrix.call.stats.connection.transport.1.remoteCandidateType": "srfx",
- "matrix.call.stats.connection.transport.1.networkType": "ethernet",
- "matrix.call.stats.connection.transport.1.rtt": 0,
- "matrix.call.stats.connection.audioConcealment.REMOTE_AUDIO_TRACK_ID.concealedAudio": 0,
- "matrix.call.stats.connection.audioConcealment.REMOTE_AUDIO_TRACK_ID.totalAudioDuration": 0,
- "matrix.call.stats.connection.audioConcealment.REMOTE_VIDEO_TRACK_ID.concealedAudio": 0,
- "matrix.call.stats.connection.audioConcealment.REMOTE_VIDEO_TRACK_ID.totalAudioDuration": 0,
- "matrix.call.stats.connection.totalAudioConcealment.concealedAudio": 0,
- "matrix.call.stats.connection.totalAudioConcealment.totalAudioDuration": 0,
- });
- });
- });
-
- describe("on flattenByteSendStatsReportObject", () => {
- const byteSentStatsReport = new Map<
- string,
- number
- >() as ByteSentStatsReport;
- byteSentStatsReport.callId = "callId";
- byteSentStatsReport.opponentMemberId = "opponentMemberId";
- byteSentStatsReport.set("4aa92608-04c6-428e-8312-93e17602a959", 132093);
- byteSentStatsReport.set("a08e4237-ee30-4015-a932-b676aec894b1", 913448);
-
- it("should flatten a Report to otel Attributes Object", () => {
- expect(
- ObjectFlattener.flattenReportObject(
- "matrix.call.stats.bytesSend",
- byteSentStatsReport,
- ),
- ).toEqual({
- "matrix.call.stats.bytesSend.4aa92608-04c6-428e-8312-93e17602a959": 132093,
- "matrix.call.stats.bytesSend.a08e4237-ee30-4015-a932-b676aec894b1": 913448,
- });
- expect(byteSentStatsReport.callId).toEqual("callId");
- expect(byteSentStatsReport.opponentMemberId).toEqual("opponentMemberId");
- });
- });
-});
diff --git a/src/otel/ObjectFlattener.ts b/src/otel/ObjectFlattener.ts
deleted file mode 100644
index a963c7434..000000000
--- a/src/otel/ObjectFlattener.ts
+++ /dev/null
@@ -1,100 +0,0 @@
-/*
-Copyright 2023, 2024 New Vector Ltd.
-
-SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
-Please see LICENSE in the repository root for full details.
-*/
-import { type Attributes } from "@opentelemetry/api";
-import { type VoipEvent } from "matrix-js-sdk/lib/webrtc/call";
-import { type GroupCallStatsReport } from "matrix-js-sdk/lib/webrtc/groupCall";
-import {
- type ByteSentStatsReport,
- type ConnectionStatsReport,
- type SummaryStatsReport,
-} from "matrix-js-sdk/lib/webrtc/stats/statsReport";
-
-export class ObjectFlattener {
- public static flattenReportObject(
- prefix: string,
- report: ConnectionStatsReport | ByteSentStatsReport,
- ): Attributes {
- const flatObject = {};
- ObjectFlattener.flattenObjectRecursive(report, flatObject, `${prefix}.`, 0);
- return flatObject;
- }
-
- public static flattenByteSentStatsReportObject(
- statsReport: GroupCallStatsReport,
- ): Attributes {
- const flatObject = {};
- ObjectFlattener.flattenObjectRecursive(
- statsReport.report,
- flatObject,
- "matrix.stats.bytesSent.",
- 0,
- );
- return flatObject;
- }
-
- public static flattenSummaryStatsReportObject(
- statsReport: GroupCallStatsReport,
- ): Attributes {
- const flatObject = {};
- ObjectFlattener.flattenObjectRecursive(
- statsReport.report,
- flatObject,
- "matrix.stats.summary.",
- 0,
- );
- return flatObject;
- }
-
- /* Flattens out an object into a single layer with components
- * of the key separated by dots
- */
- public static flattenVoipEvent(event: VoipEvent): Attributes {
- const flatObject = {};
- ObjectFlattener.flattenObjectRecursive(
- event as unknown as Record, // XXX Types
- flatObject,
- "matrix.event.",
- 0,
- );
-
- return flatObject;
- }
-
- public static flattenObjectRecursive(
- obj: object,
- flatObject: Attributes,
- prefix: string,
- depth: number,
- ): void {
- if (depth > 10)
- throw new Error(
- "Depth limit exceeded: aborting VoipEvent recursion. Prefix is " +
- prefix,
- );
- let entries;
- if (obj instanceof Map) {
- entries = obj.entries();
- } else {
- entries = Object.entries(obj);
- }
- for (const [k, v] of entries) {
- if (["string", "number", "boolean"].includes(typeof v) || v === null) {
- let value;
- value = v === null ? "null" : v;
- value = typeof v === "number" && Number.isNaN(v) ? "NaN" : value;
- flatObject[prefix + k] = value;
- } else if (typeof v === "object") {
- ObjectFlattener.flattenObjectRecursive(
- v,
- flatObject,
- prefix + k + ".",
- depth + 1,
- );
- }
- }
- }
-}
diff --git a/src/otel/otel.test.ts b/src/otel/otel.test.ts
deleted file mode 100644
index 0bf0573f2..000000000
--- a/src/otel/otel.test.ts
+++ /dev/null
@@ -1,79 +0,0 @@
-/*
-Copyright 2025 New Vector Ltd.
-
-SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
-Please see LICENSE in the repository root for full details.
-*/
-
-import {
- expect,
- describe,
- it,
- vi,
- beforeEach,
- beforeAll,
- afterAll,
-} from "vitest";
-
-import { ElementCallOpenTelemetry } from "./otel";
-import { mockConfig } from "../utils/test";
-
-describe("ElementCallOpenTelemetry", () => {
- describe("embedded package", () => {
- beforeAll(() => {
- vi.stubEnv("VITE_PACKAGE", "embedded");
- });
-
- beforeEach(() => {
- mockConfig({});
- });
-
- afterAll(() => {
- vi.unstubAllEnvs();
- });
-
- it("does not create instance without config value", () => {
- ElementCallOpenTelemetry.globalInit();
- expect(ElementCallOpenTelemetry.instance?.isOtlpEnabled).toBe(false);
- });
-
- it("ignores config value and does not create instance", () => {
- mockConfig({
- opentelemetry: {
- collector_url: "https://collector.example.com.localhost",
- },
- });
- ElementCallOpenTelemetry.globalInit();
- expect(ElementCallOpenTelemetry.instance?.isOtlpEnabled).toBe(false);
- });
- });
-
- describe("full package", () => {
- beforeAll(() => {
- vi.stubEnv("VITE_PACKAGE", "full");
- });
-
- beforeEach(() => {
- mockConfig({});
- });
-
- afterAll(() => {
- vi.unstubAllEnvs();
- });
-
- it("does not create instance without config value", () => {
- ElementCallOpenTelemetry.globalInit();
- expect(ElementCallOpenTelemetry.instance?.isOtlpEnabled).toBe(false);
- });
-
- it("creates instance with config value", () => {
- mockConfig({
- opentelemetry: {
- collector_url: "https://collector.example.com.localhost",
- },
- });
- ElementCallOpenTelemetry.globalInit();
- expect(ElementCallOpenTelemetry.instance?.isOtlpEnabled).toBe(true);
- });
- });
-});
diff --git a/src/otel/otel.ts b/src/otel/otel.ts
deleted file mode 100644
index a2cd809e1..000000000
--- a/src/otel/otel.ts
+++ /dev/null
@@ -1,114 +0,0 @@
-/*
-Copyright 2023, 2024 New Vector Ltd.
-
-SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
-Please see LICENSE in the repository root for full details.
-*/
-
-import { SimpleSpanProcessor } from "@opentelemetry/sdk-trace-base";
-import { OTLPTraceExporter } from "@opentelemetry/exporter-trace-otlp-http";
-import { WebTracerProvider } from "@opentelemetry/sdk-trace-web";
-import opentelemetry, { type Tracer } from "@opentelemetry/api";
-import { Resource } from "@opentelemetry/resources";
-import { SemanticResourceAttributes } from "@opentelemetry/semantic-conventions";
-import { logger } from "matrix-js-sdk/lib/logger";
-
-import { PosthogSpanProcessor } from "../analytics/PosthogSpanProcessor";
-import { Config } from "../config/Config";
-import { RageshakeSpanProcessor } from "../analytics/RageshakeSpanProcessor";
-import { getRageshakeSubmitUrl } from "../settings/submit-rageshake";
-
-const SERVICE_NAME = "element-call";
-
-let sharedInstance: ElementCallOpenTelemetry;
-
-export class ElementCallOpenTelemetry {
- private _provider: WebTracerProvider;
- private _tracer: Tracer;
- private otlpExporter?: OTLPTraceExporter;
- public readonly rageshakeProcessor?: RageshakeSpanProcessor;
-
- public static globalInit(): void {
- // this is only supported in the full package as the is currently no support for passing in the collector URL from the widget host
- const collectorUrl =
- import.meta.env.VITE_PACKAGE === "full"
- ? Config.get().opentelemetry?.collector_url
- : undefined;
- // we always enable opentelemetry in general. We only enable the OTLP
- // collector if a URL is defined (and in future if another setting is defined)
- // Posthog reporting is enabled or disabled
- // within the posthog code.
- const shouldEnableOtlp = Boolean(collectorUrl);
-
- if (!sharedInstance || sharedInstance.isOtlpEnabled !== shouldEnableOtlp) {
- logger.info("(Re)starting OpenTelemetry debug reporting");
- sharedInstance?.dispose();
-
- sharedInstance = new ElementCallOpenTelemetry(
- collectorUrl,
- getRageshakeSubmitUrl(),
- );
- }
- }
-
- public static get instance(): ElementCallOpenTelemetry {
- return sharedInstance;
- }
-
- private constructor(
- collectorUrl: string | undefined,
- rageshakeUrl: string | undefined,
- ) {
- // This is how we can make Jaeger show a reasonable service in the dropdown on the left.
- const providerConfig = {
- resource: new Resource({
- [SemanticResourceAttributes.SERVICE_NAME]: SERVICE_NAME,
- }),
- };
- this._provider = new WebTracerProvider(providerConfig);
-
- if (collectorUrl) {
- logger.info("Enabling OTLP collector with URL " + collectorUrl);
- this.otlpExporter = new OTLPTraceExporter({
- url: collectorUrl,
- });
- this._provider.addSpanProcessor(
- new SimpleSpanProcessor(this.otlpExporter),
- );
- } else {
- logger.info("OTLP collector disabled");
- }
-
- if (rageshakeUrl) {
- this.rageshakeProcessor = new RageshakeSpanProcessor();
- this._provider.addSpanProcessor(this.rageshakeProcessor);
- }
-
- this._provider.addSpanProcessor(new PosthogSpanProcessor());
- opentelemetry.trace.setGlobalTracerProvider(this._provider);
-
- this._tracer = opentelemetry.trace.getTracer(
- // This is not the serviceName shown in jaeger
- "my-element-call-otl-tracer",
- );
- }
-
- public dispose(): void {
- opentelemetry.trace.disable();
- this._provider?.shutdown().catch((e) => {
- logger.error("Failed to shutdown OpenTelemetry", e);
- });
- }
-
- public get isOtlpEnabled(): boolean {
- return Boolean(this.otlpExporter);
- }
-
- public get tracer(): Tracer {
- return this._tracer;
- }
-
- public get provider(): WebTracerProvider {
- return this._provider;
- }
-}
diff --git a/src/reactions/RaisedHandIndicator.test.tsx b/src/reactions/RaisedHandIndicator.test.tsx
index fedd8ec2b..62e3ffb5f 100644
--- a/src/reactions/RaisedHandIndicator.test.tsx
+++ b/src/reactions/RaisedHandIndicator.test.tsx
@@ -5,7 +5,7 @@ SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
Please see LICENSE in the repository root for full details.
*/
-import { describe, expect, test } from "vitest";
+import { beforeEach, describe, expect, test, vi } from "vitest";
import { render, configure } from "@testing-library/react";
import { RaisedHandIndicator } from "./RaisedHandIndicator";
@@ -15,6 +15,13 @@ configure({
});
describe("RaisedHandIndicator", () => {
+ const fixedTime = new Date("2025-01-01T12:00:00.000Z");
+
+ beforeEach(() => {
+ vi.useFakeTimers();
+ vi.setSystemTime(fixedTime);
+ });
+
test("renders nothing when no hand has been raised", () => {
const { container } = render();
expect(container.firstChild).toBeNull();
diff --git a/src/reactions/RaisedHandIndicator.tsx b/src/reactions/RaisedHandIndicator.tsx
index 129748498..67d9cf16b 100644
--- a/src/reactions/RaisedHandIndicator.tsx
+++ b/src/reactions/RaisedHandIndicator.tsx
@@ -22,11 +22,13 @@ export function RaisedHandIndicator({
miniature,
showTimer,
onClick,
+ tabIndex,
}: {
raisedHandTime?: Date;
miniature?: boolean;
showTimer?: boolean;
onClick?: () => void;
+ tabIndex?: number;
}): ReactNode {
const { t } = useTranslation();
const [raisedHandDuration, setRaisedHandDuration] = useState("");
@@ -94,6 +96,7 @@ export function RaisedHandIndicator({
background: "none",
}}
onClick={clickCallback}
+ tabIndex={tabIndex}
>
{content}
diff --git a/src/reactions/ReactionIndicator.module.css b/src/reactions/ReactionIndicator.module.css
index 0fba73511..ef5c14cb1 100644
--- a/src/reactions/ReactionIndicator.module.css
+++ b/src/reactions/ReactionIndicator.module.css
@@ -1,9 +1,9 @@
.reactionIndicatorWidget {
display: flex;
- background-color: #00000030;
border-radius: var(--cpd-radius-pill-effect);
box-shadow: 0 0 var(--cpd-space-2x) #00000040;
- background: "ffffff40";
+ color: var(--cpd-color-text-on-solid-primary);
+ background: var(--cpd-color-icon-secondary-alpha);
backdrop-filter: blur(10px);
outline: var(--cpd-border-width-1) solid var(--cpd-color-alpha-gray-400);
outline-offset: calc(-1 * var(--cpd-border-width-1));
@@ -33,7 +33,6 @@
.reaction {
margin: var(--cpd-space-1x);
- color: white;
display: flex;
align-items: center;
border-radius: var(--cpd-radius-pill-effect);
diff --git a/src/reactions/ReactionsReader.test.tsx b/src/reactions/ReactionsReader.test.tsx
index b8acf5c75..dd82a718c 100644
--- a/src/reactions/ReactionsReader.test.tsx
+++ b/src/reactions/ReactionsReader.test.tsx
@@ -7,7 +7,6 @@ Please see LICENSE in the repository root for full details.
import { renderHook } from "@testing-library/react";
import { afterEach, test, vitest } from "vitest";
-import { type MatrixRTCSession } from "matrix-js-sdk/lib/matrixrtc";
import {
RoomEvent as MatrixRoomEvent,
MatrixEvent,
@@ -24,7 +23,7 @@ import {
localRtcMember,
} from "../utils/test-fixtures";
import { getBasicRTCSession } from "../utils/test-viewmodel";
-import { withTestScheduler } from "../utils/test";
+import { testScope, withTestScheduler } from "../utils/test";
import { ElementCallReactionEventType, ReactionSet } from ".";
afterEach(() => {
@@ -38,7 +37,8 @@ test("handles a hand raised reaction", () => {
withTestScheduler(({ schedule, expectObservable }) => {
renderHook(() => {
const { raisedHands$ } = new ReactionsReader(
- rtcSession as unknown as MatrixRTCSession,
+ testScope(),
+ rtcSession.asMockedSession(),
);
schedule("ab", {
a: () => {},
@@ -48,7 +48,7 @@ test("handles a hand raised reaction", () => {
new MatrixEvent({
room_id: rtcSession.room.roomId,
event_id: reactionEventId,
- sender: localRtcMember.sender,
+ sender: localRtcMember.userId,
type: EventType.Reaction,
origin_server_ts: localTimestamp.getTime(),
content: {
@@ -68,7 +68,7 @@ test("handles a hand raised reaction", () => {
expectObservable(raisedHands$).toBe("ab", {
a: {},
b: {
- [`${localRtcMember.sender}:${localRtcMember.deviceId}`]: {
+ [`${localRtcMember.userId}:${localRtcMember.deviceId}`]: {
reactionEventId,
membershipEventId: localRtcMember.eventId,
time: localTimestamp,
@@ -86,7 +86,8 @@ test("handles a redaction", () => {
withTestScheduler(({ schedule, expectObservable }) => {
renderHook(() => {
const { raisedHands$ } = new ReactionsReader(
- rtcSession as unknown as MatrixRTCSession,
+ testScope(),
+ rtcSession.asMockedSession(),
);
schedule("abc", {
a: () => {},
@@ -96,7 +97,7 @@ test("handles a redaction", () => {
new MatrixEvent({
room_id: rtcSession.room.roomId,
event_id: reactionEventId,
- sender: localRtcMember.sender,
+ sender: localRtcMember.userId,
type: EventType.Reaction,
origin_server_ts: localTimestamp.getTime(),
content: {
@@ -118,7 +119,7 @@ test("handles a redaction", () => {
new MatrixEvent({
room_id: rtcSession.room.roomId,
event_id: reactionEventId,
- sender: localRtcMember.sender,
+ sender: localRtcMember.userId,
type: EventType.RoomRedaction,
redacts: reactionEventId,
}),
@@ -130,7 +131,7 @@ test("handles a redaction", () => {
expectObservable(raisedHands$).toBe("abc", {
a: {},
b: {
- [`${localRtcMember.sender}:${localRtcMember.deviceId}`]: {
+ [`${localRtcMember.userId}:${localRtcMember.deviceId}`]: {
reactionEventId,
membershipEventId: localRtcMember.eventId,
time: localTimestamp,
@@ -149,7 +150,8 @@ test("handles waiting for event decryption", () => {
withTestScheduler(({ schedule, expectObservable }) => {
renderHook(() => {
const { raisedHands$ } = new ReactionsReader(
- rtcSession as unknown as MatrixRTCSession,
+ testScope(),
+ rtcSession.asMockedSession(),
);
schedule("abc", {
a: () => {},
@@ -157,7 +159,7 @@ test("handles waiting for event decryption", () => {
const encryptedEvent = new MatrixEvent({
room_id: rtcSession.room.roomId,
event_id: reactionEventId,
- sender: localRtcMember.sender,
+ sender: localRtcMember.userId,
type: EventType.Reaction,
origin_server_ts: localTimestamp.getTime(),
content: {
@@ -184,7 +186,7 @@ test("handles waiting for event decryption", () => {
new MatrixEvent({
room_id: rtcSession.room.roomId,
event_id: reactionEventId,
- sender: localRtcMember.sender,
+ sender: localRtcMember.userId,
type: EventType.Reaction,
origin_server_ts: localTimestamp.getTime(),
content: {
@@ -200,7 +202,7 @@ test("handles waiting for event decryption", () => {
expectObservable(raisedHands$).toBe("a-c", {
a: {},
c: {
- [`${localRtcMember.sender}:${localRtcMember.deviceId}`]: {
+ [`${localRtcMember.userId}:${localRtcMember.deviceId}`]: {
reactionEventId,
membershipEventId: localRtcMember.eventId,
time: localTimestamp,
@@ -218,7 +220,8 @@ test("hands rejecting events without a proper membership", () => {
withTestScheduler(({ schedule, expectObservable }) => {
renderHook(() => {
const { raisedHands$ } = new ReactionsReader(
- rtcSession as unknown as MatrixRTCSession,
+ testScope(),
+ rtcSession.asMockedSession(),
);
schedule("ab", {
a: () => {},
@@ -228,7 +231,7 @@ test("hands rejecting events without a proper membership", () => {
new MatrixEvent({
room_id: rtcSession.room.roomId,
event_id: reactionEventId,
- sender: localRtcMember.sender,
+ sender: localRtcMember.userId,
type: EventType.Reaction,
origin_server_ts: localTimestamp.getTime(),
content: {
@@ -263,7 +266,8 @@ test("handles a reaction", () => {
withTestScheduler(({ schedule, time, expectObservable }) => {
renderHook(() => {
const { reactions$ } = new ReactionsReader(
- rtcSession as unknown as MatrixRTCSession,
+ testScope(),
+ rtcSession.asMockedSession(),
);
schedule(`abc`, {
a: () => {},
@@ -273,7 +277,7 @@ test("handles a reaction", () => {
new MatrixEvent({
room_id: rtcSession.room.roomId,
event_id: reactionEventId,
- sender: localRtcMember.sender,
+ sender: localRtcMember.userId,
type: ElementCallReactionEventType,
content: {
emoji: reaction.emoji,
@@ -298,7 +302,7 @@ test("handles a reaction", () => {
{
a: {},
b: {
- [`${localRtcMember.sender}:${localRtcMember.deviceId}`]: {
+ [`${localRtcMember.userId}:${localRtcMember.deviceId}`]: {
reactionOption: reaction,
expireAfter: new Date(REACTION_ACTIVE_TIME_MS),
},
@@ -321,7 +325,8 @@ test("ignores bad reaction events", () => {
withTestScheduler(({ schedule, expectObservable }) => {
renderHook(() => {
const { reactions$ } = new ReactionsReader(
- rtcSession as unknown as MatrixRTCSession,
+ testScope(),
+ rtcSession.asMockedSession(),
);
schedule("ab", {
a: () => {},
@@ -332,7 +337,7 @@ test("ignores bad reaction events", () => {
new MatrixEvent({
room_id: rtcSession.room.roomId,
event_id: reactionEventId,
- sender: localRtcMember.sender,
+ sender: localRtcMember.userId,
type: ElementCallReactionEventType,
content: {},
}),
@@ -347,7 +352,7 @@ test("ignores bad reaction events", () => {
new MatrixEvent({
room_id: rtcSession.room.roomId,
event_id: reactionEventId,
- sender: localRtcMember.sender,
+ sender: localRtcMember.userId,
type: ElementCallReactionEventType,
content: {
emoji: reaction.emoji,
@@ -368,7 +373,7 @@ test("ignores bad reaction events", () => {
new MatrixEvent({
room_id: rtcSession.room.roomId,
event_id: reactionEventId,
- sender: aliceRtcMember.sender,
+ sender: aliceRtcMember.userId,
type: ElementCallReactionEventType,
content: {
emoji: reaction.emoji,
@@ -389,7 +394,7 @@ test("ignores bad reaction events", () => {
new MatrixEvent({
room_id: rtcSession.room.roomId,
event_id: reactionEventId,
- sender: localRtcMember.sender,
+ sender: localRtcMember.userId,
type: ElementCallReactionEventType,
content: {
name: reaction.name,
@@ -409,7 +414,7 @@ test("ignores bad reaction events", () => {
new MatrixEvent({
room_id: rtcSession.room.roomId,
event_id: reactionEventId,
- sender: localRtcMember.sender,
+ sender: localRtcMember.userId,
type: ElementCallReactionEventType,
content: {
emoji: " ",
@@ -445,7 +450,8 @@ test("that reactions cannot be spammed", () => {
withTestScheduler(({ schedule, expectObservable }) => {
renderHook(() => {
const { reactions$ } = new ReactionsReader(
- rtcSession as unknown as MatrixRTCSession,
+ testScope(),
+ rtcSession.asMockedSession(),
);
schedule("abcd", {
a: () => {},
@@ -455,7 +461,7 @@ test("that reactions cannot be spammed", () => {
new MatrixEvent({
room_id: rtcSession.room.roomId,
event_id: reactionEventId,
- sender: localRtcMember.sender,
+ sender: localRtcMember.userId,
type: ElementCallReactionEventType,
content: {
emoji: reactionA.emoji,
@@ -477,7 +483,7 @@ test("that reactions cannot be spammed", () => {
new MatrixEvent({
room_id: rtcSession.room.roomId,
event_id: reactionEventId,
- sender: localRtcMember.sender,
+ sender: localRtcMember.userId,
type: ElementCallReactionEventType,
content: {
emoji: reactionB.emoji,
@@ -502,7 +508,7 @@ test("that reactions cannot be spammed", () => {
{
a: {},
b: {
- [`${localRtcMember.sender}:${localRtcMember.deviceId}`]: {
+ [`${localRtcMember.userId}:${localRtcMember.deviceId}`]: {
reactionOption: reactionA,
expireAfter: new Date(REACTION_ACTIVE_TIME_MS),
},
diff --git a/src/reactions/ReactionsReader.ts b/src/reactions/ReactionsReader.ts
index b630f4b93..7ce59812a 100644
--- a/src/reactions/ReactionsReader.ts
+++ b/src/reactions/ReactionsReader.ts
@@ -18,7 +18,7 @@ import {
EventType,
RoomEvent as MatrixRoomEvent,
} from "matrix-js-sdk";
-import { BehaviorSubject, delay, type Subscription } from "rxjs";
+import { BehaviorSubject, delay } from "rxjs";
import {
ElementCallReactionEventType,
@@ -28,6 +28,7 @@ import {
type RaisedHandInfo,
type ReactionInfo,
} from ".";
+import { type ObservableScope } from "../state/ObservableScope";
export const REACTION_ACTIVE_TIME_MS = 3000;
@@ -54,12 +55,13 @@ export class ReactionsReader {
*/
public readonly reactions$ = this.reactionsSubject$.asObservable();
- private readonly reactionsSub: Subscription;
-
- public constructor(private readonly rtcSession: MatrixRTCSession) {
+ public constructor(
+ private readonly scope: ObservableScope,
+ private readonly rtcSession: MatrixRTCSession,
+ ) {
// Hide reactions after a given time.
- this.reactionsSub = this.reactionsSubject$
- .pipe(delay(REACTION_ACTIVE_TIME_MS))
+ this.reactionsSubject$
+ .pipe(delay(REACTION_ACTIVE_TIME_MS), this.scope.bind())
.subscribe((reactions) => {
const date = new Date();
const nextEntries = Object.fromEntries(
@@ -71,15 +73,38 @@ export class ReactionsReader {
this.reactionsSubject$.next(nextEntries);
});
+ // TODO: Convert this class to the functional reactive style and get rid of
+ // all this manual setup and teardown for event listeners
+
this.rtcSession.room.on(MatrixRoomEvent.Timeline, this.handleReactionEvent);
+ this.scope.onEnd(() =>
+ this.rtcSession.room.off(
+ MatrixRoomEvent.Timeline,
+ this.handleReactionEvent,
+ ),
+ );
+
this.rtcSession.room.on(
MatrixRoomEvent.Redaction,
this.handleReactionEvent,
);
+ this.scope.onEnd(() =>
+ this.rtcSession.room.off(
+ MatrixRoomEvent.Redaction,
+ this.handleReactionEvent,
+ ),
+ );
+
this.rtcSession.room.client.on(
MatrixEventEvent.Decrypted,
this.handleReactionEvent,
);
+ this.scope.onEnd(() =>
+ this.rtcSession.room.client.off(
+ MatrixEventEvent.Decrypted,
+ this.handleReactionEvent,
+ ),
+ );
// We listen for a local echo to get the real event ID, as timeline events
// may still be sending.
@@ -87,21 +112,33 @@ export class ReactionsReader {
MatrixRoomEvent.LocalEchoUpdated,
this.handleReactionEvent,
);
+ this.scope.onEnd(() =>
+ this.rtcSession.room.off(
+ MatrixRoomEvent.LocalEchoUpdated,
+ this.handleReactionEvent,
+ ),
+ );
- rtcSession.on(
+ this.rtcSession.on(
MatrixRTCSessionEvent.MembershipsChanged,
this.onMembershipsChanged,
);
+ this.scope.onEnd(() =>
+ this.rtcSession.off(
+ MatrixRTCSessionEvent.MembershipsChanged,
+ this.onMembershipsChanged,
+ ),
+ );
// Run this once to ensure we have fetched the state from the call.
this.onMembershipsChanged([]);
}
/**
- * Fetchest any hand wave reactions by the given sender on the given
+ * Fetches any hand wave reactions by the given sender on the given
* membership event.
- * @param membershipEventId
- * @param expectedSender
+ * @param membershipEventId - The user membership event id.
+ * @param expectedSender - The expected sender of the reaction.
* @returns A MatrixEvent if one was found.
*/
private getLastReactionEvent(
@@ -130,7 +167,7 @@ export class ReactionsReader {
private onMembershipsChanged = (oldMemberships: CallMembership[]): void => {
// Remove any raised hands for users no longer joined to the call.
for (const identifier of Object.keys(this.raisedHandsSubject$.value).filter(
- (rhId) => oldMemberships.find((u) => u.sender == rhId),
+ (rhId) => oldMemberships.find((u) => u.userId == rhId),
)) {
this.removeRaisedHand(identifier);
}
@@ -138,10 +175,10 @@ export class ReactionsReader {
// For each member in the call, check to see if a reaction has
// been raised and adjust.
for (const m of this.rtcSession.memberships) {
- if (!m.sender || !m.eventId) {
+ if (!m.userId || !m.eventId) {
continue;
}
- const identifier = `${m.sender}:${m.deviceId}`;
+ const identifier = `${m.userId}:${m.deviceId}`;
if (
this.raisedHandsSubject$.value[identifier] &&
this.raisedHandsSubject$.value[identifier].membershipEventId !==
@@ -151,13 +188,13 @@ export class ReactionsReader {
// was raised, reset.
this.removeRaisedHand(identifier);
}
- const reaction = this.getLastReactionEvent(m.eventId, m.sender);
+ const reaction = this.getLastReactionEvent(m.eventId, m.userId);
if (reaction) {
const eventId = reaction?.getId();
if (!eventId) {
continue;
}
- this.addRaisedHand(`${m.sender}:${m.deviceId}`, {
+ this.addRaisedHand(`${m.userId}:${m.deviceId}`, {
membershipEventId: m.eventId,
reactionEventId: eventId,
time: new Date(reaction.localTimestamp),
@@ -219,7 +256,7 @@ export class ReactionsReader {
const membershipEventId = content?.["m.relates_to"]?.event_id;
const membershipEvent = this.rtcSession.memberships.find(
- (e) => e.eventId === membershipEventId && e.sender === sender,
+ (e) => e.eventId === membershipEventId && e.userId === sender,
);
// Check to see if this reaction was made to a membership event (and the
// sender of the reaction matches the membership)
@@ -229,7 +266,8 @@ export class ReactionsReader {
);
return;
}
- const identifier = `${membershipEvent.sender}:${membershipEvent.deviceId}`;
+ // TODO refactor to use memer id `membershipEvent.membershipID` (needs to happen in combination with other memberId refactors)
+ const identifier = `${membershipEvent.userId}:${membershipEvent.deviceId}`;
if (!content.emoji) {
logger.warn(`Reaction had no emoji from ${reactionEventId}`);
@@ -278,7 +316,7 @@ export class ReactionsReader {
// Check to see if this reaction was made to a membership event (and the
// sender of the reaction matches the membership)
const membershipEvent = this.rtcSession.memberships.find(
- (e) => e.eventId === membershipEventId && e.sender === sender,
+ (e) => e.eventId === membershipEventId && e.userId === sender,
);
if (!membershipEvent) {
logger.warn(
@@ -289,7 +327,7 @@ export class ReactionsReader {
if (content?.["m.relates_to"].key === "🖐️") {
this.addRaisedHand(
- `${membershipEvent.sender}:${membershipEvent.deviceId}`,
+ `${membershipEvent.userId}:${membershipEvent.deviceId}`,
{
reactionEventId,
membershipEventId,
@@ -309,31 +347,4 @@ export class ReactionsReader {
this.removeRaisedHand(targetUser);
}
};
-
- /**
- * Stop listening for events.
- */
- public destroy(): void {
- this.rtcSession.off(
- MatrixRTCSessionEvent.MembershipsChanged,
- this.onMembershipsChanged,
- );
- this.rtcSession.room.off(
- MatrixRoomEvent.Timeline,
- this.handleReactionEvent,
- );
- this.rtcSession.room.off(
- MatrixRoomEvent.Redaction,
- this.handleReactionEvent,
- );
- this.rtcSession.room.client.off(
- MatrixEventEvent.Decrypted,
- this.handleReactionEvent,
- );
- this.rtcSession.room.off(
- MatrixRoomEvent.LocalEchoUpdated,
- this.handleReactionEvent,
- );
- this.reactionsSub.unsubscribe();
- }
}
diff --git a/src/reactions/__snapshots__/RaisedHandIndicator.test.tsx.snap b/src/reactions/__snapshots__/RaisedHandIndicator.test.tsx.snap
index ab6fafa34..ca8ecfb08 100644
--- a/src/reactions/__snapshots__/RaisedHandIndicator.test.tsx.snap
+++ b/src/reactions/__snapshots__/RaisedHandIndicator.test.tsx.snap
@@ -2,10 +2,10 @@
exports[`RaisedHandIndicator > renders a smaller indicator when miniature is specified 1`] = `
renders a smaller indicator when miniature is spe
- 00:01
+ 00:00
`;
exports[`RaisedHandIndicator > renders an indicator when a hand has been raised 1`] = `
renders an indicator when a hand has been raised
- 00:01
+ 00:00
`;
exports[`RaisedHandIndicator > renders an indicator when a hand has been raised with the expected time 1`] = `
renders an indicator when a hand has been raised
- 01:01
+ 01:00
`;
diff --git a/src/reactions/index.ts b/src/reactions/index.ts
index d3c2d9c90..acf7e1816 100644
--- a/src/reactions/index.ts
+++ b/src/reactions/index.ts
@@ -27,6 +27,8 @@ import rockSoundOgg from "../sound/reactions/rock.ogg?url";
import rockSoundMp3 from "../sound/reactions/rock.mp3?url";
import waveSoundOgg from "../sound/reactions/wave.ogg?url";
import waveSoundMp3 from "../sound/reactions/wave.mp3?url";
+import baduntssSoundOgg from "../sound/reactions/baduntss.ogg?url";
+import baduntssSoundMp3 from "../sound/reactions/baduntss.mp3?url";
export const ElementCallReactionEventType = "io.element.call.reaction";
@@ -191,6 +193,15 @@ export const ReactionSet: ReactionOption[] = [
mp3: waveSoundMp3,
},
},
+ {
+ emoji: "🥁",
+ name: "drum",
+ alias: ["joke"],
+ sound: {
+ ogg: baduntssSoundOgg,
+ mp3: baduntssSoundMp3,
+ },
+ },
];
export interface RaisedHandInfo {
diff --git a/src/reactions/useReactionsSender.tsx b/src/reactions/useReactionsSender.tsx
index 85f1505ca..1b7e099a2 100644
--- a/src/reactions/useReactionsSender.tsx
+++ b/src/reactions/useReactionsSender.tsx
@@ -8,7 +8,7 @@ Please see LICENSE in the repository root for full details.
import { EventType, RelationType } from "matrix-js-sdk";
import {
createContext,
- useContext,
+ use,
type ReactNode,
useCallback,
useMemo,
@@ -16,12 +16,12 @@ import {
} from "react";
import { type MatrixRTCSession } from "matrix-js-sdk/lib/matrixrtc";
import { logger } from "matrix-js-sdk/lib/logger";
-import { useObservableEagerState } from "observable-hooks";
import { useMatrixRTCSessionMemberships } from "../useMatrixRTCSessionMemberships";
import { useClientState } from "../ClientContext";
import { ElementCallReactionEventType, type ReactionOption } from ".";
-import { type CallViewModel } from "../state/CallViewModel";
+import { type CallViewModel } from "../state/CallViewModel/CallViewModel";
+import { useBehavior } from "../useBehavior";
interface ReactionsSenderContextType {
supportsReactions: boolean;
@@ -29,12 +29,12 @@ interface ReactionsSenderContextType {
sendReaction: (reaction: ReactionOption) => Promise;
}
-const ReactionsSenderContext = createContext<
+export const ReactionsSenderContext = createContext<
ReactionsSenderContextType | undefined
>(undefined);
export const useReactionsSender = (): ReactionsSenderContextType => {
- const context = useContext(ReactionsSenderContext);
+ const context = use(ReactionsSenderContext);
if (!context) {
throw new Error("useReactions must be used within a ReactionsProvider");
}
@@ -65,12 +65,12 @@ export const ReactionsSenderProvider = ({
const myMembershipEvent = useMemo(
() =>
memberships.find(
- (m) => m.sender === myUserId && m.deviceId === myDeviceId,
+ (m) => m.userId === myUserId && m.deviceId === myDeviceId,
)?.eventId,
[memberships, myUserId, myDeviceId],
);
- const reactions = useObservableEagerState(vm.reactions$);
+ const reactions = useBehavior(vm.reactions$);
const myReaction = useMemo(
() =>
myMembershipIdentifier !== undefined
@@ -79,7 +79,7 @@ export const ReactionsSenderProvider = ({
[myMembershipIdentifier, reactions],
);
- const handsRaised = useObservableEagerState(vm.handsRaised$);
+ const handsRaised = useBehavior(vm.handsRaised$);
const myRaisedHand = useMemo(
() =>
myMembershipIdentifier !== undefined
@@ -157,7 +157,7 @@ export const ReactionsSenderProvider = ({
);
return (
-
{children}
-
+
);
};
diff --git a/src/room/AppSelectionModal.module.css b/src/room/AppSelectionModal.module.css
deleted file mode 100644
index ed510c3c8..000000000
--- a/src/room/AppSelectionModal.module.css
+++ /dev/null
@@ -1,24 +0,0 @@
-/*
-Copyright 2023, 2024 New Vector Ltd.
-
-SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
-Please see LICENSE in the repository root for full details.
-*/
-
-.modal p {
- text-align: center;
- margin-block-end: var(--cpd-space-8x);
-}
-
-.modal button,
-.modal a {
- width: 100%;
-}
-
-.modal button {
- margin-block-end: var(--cpd-space-6x);
-}
-
-.modal a {
- box-sizing: border-box;
-}
diff --git a/src/room/AppSelectionModal.tsx b/src/room/AppSelectionModal.tsx
deleted file mode 100644
index c57abfcaa..000000000
--- a/src/room/AppSelectionModal.tsx
+++ /dev/null
@@ -1,92 +0,0 @@
-/*
-Copyright 2023, 2024 New Vector Ltd.
-
-SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
-Please see LICENSE in the repository root for full details.
-*/
-
-import {
- type FC,
- type MouseEvent,
- useCallback,
- useMemo,
- useState,
-} from "react";
-import { useTranslation } from "react-i18next";
-import { Button, Text } from "@vector-im/compound-web";
-import { PopOutIcon } from "@vector-im/compound-design-tokens/assets/web/icons";
-import { logger } from "matrix-js-sdk/lib/logger";
-
-import { Modal } from "../Modal";
-import { useRoomEncryptionSystem } from "../e2ee/sharedKeyManagement";
-import { getAbsoluteRoomUrl } from "../utils/matrix";
-import styles from "./AppSelectionModal.module.css";
-import { editFragmentQuery } from "../UrlParams";
-import { E2eeType } from "../e2ee/e2eeType";
-
-interface Props {
- roomId: string;
-}
-
-export const AppSelectionModal: FC = ({ roomId }) => {
- const { t } = useTranslation();
-
- const [open, setOpen] = useState(true);
- const onBrowserClick = useCallback(
- (e: MouseEvent) => {
- e.preventDefault();
- e.stopPropagation();
- setOpen(false);
- },
- [setOpen],
- );
- const e2eeSystem = useRoomEncryptionSystem(roomId);
-
- if (e2eeSystem.kind === E2eeType.NONE) {
- logger.error(
- "Generating app redirect URL for encrypted room but don't have key available!",
- );
- }
-
- const appUrl = useMemo(() => {
- // If the room ID is not known, fall back to the URL of the current page
- // Also, we don't really know the room name at this stage as we haven't
- // started a client and synced to get the room details. We could take the one
- // we got in our own URL and use that, but it's not a string that a human
- // ever sees so it's somewhat redundant. We just don't pass a name.
- const url = new URL(
- roomId === null
- ? window.location.href
- : getAbsoluteRoomUrl(roomId, e2eeSystem),
- );
- // Edit the URL to prevent the app selection prompt from appearing a second
- // time within the app, and to keep the user confined to the current room
- url.hash = editFragmentQuery(url.hash, (params) => {
- params.set("appPrompt", "false");
- params.set("confineToRoom", "true");
- return params;
- });
-
- const result = new URL("io.element.call:/");
- result.searchParams.set("url", url.toString());
- return result.toString();
- }, [e2eeSystem, roomId]);
-
- return (
-
-
- {t("app_selection_modal.text")}
-
-
- {t("app_selection_modal.continue_in_browser")}
-
-
- {t("app_selection_modal.open_in_app")}
-
-
- );
-};
diff --git a/src/room/CallEndedView.module.css b/src/room/CallEndedView.module.css
index c2a02f0bc..e62e93d0c 100644
--- a/src/room/CallEndedView.module.css
+++ b/src/room/CallEndedView.module.css
@@ -57,7 +57,8 @@ Please see LICENSE in the repository root for full details.
flex: 1;
flex-direction: column;
align-items: center;
- padding-inline: var(--inline-content-inset);
+ padding-left: var(--content-inset-left);
+ padding-right: var(--content-inset-right);
}
.logo {
diff --git a/src/room/CallEndedView.tsx b/src/room/CallEndedView.tsx
index 43aa96e24..4df3f297b 100644
--- a/src/room/CallEndedView.tsx
+++ b/src/room/CallEndedView.tsx
@@ -25,6 +25,7 @@ import { LinkButton } from "../button";
interface Props {
client: MatrixClient;
isPasswordlessUser: boolean;
+ hideHeader: boolean;
confineToRoom: boolean;
endedCallId: string;
}
@@ -32,6 +33,7 @@ interface Props {
export const CallEndedView: FC = ({
client,
isPasswordlessUser,
+ hideHeader,
confineToRoom,
endedCallId,
}) => {
@@ -133,10 +135,12 @@ export const CallEndedView: FC = ({
return (
<>
-
- {!confineToRoom && }
-
-
+ {!hideHeader && (
+
+ {!confineToRoom && }
+
+
+ )}
diff --git a/src/room/CallEventAudioRenderer.test.tsx b/src/room/CallEventAudioRenderer.test.tsx
index 281bbafde..9ab64dfd6 100644
--- a/src/room/CallEventAudioRenderer.test.tsx
+++ b/src/room/CallEventAudioRenderer.test.tsx
@@ -7,7 +7,6 @@ Please see LICENSE in the repository root for full details.
import { render } from "@testing-library/react";
import {
- afterAll,
beforeEach,
expect,
type MockedFunction,
@@ -16,32 +15,42 @@ import {
afterEach,
} from "vitest";
import { act } from "react";
-import { type CallMembership } from "matrix-js-sdk/lib/matrixrtc";
-
-import { mockRtcMembership } from "../utils/test";
+import { type RoomMember } from "matrix-js-sdk";
import {
- CallEventAudioRenderer,
- MAX_PARTICIPANT_COUNT_FOR_SOUND,
-} from "./CallEventAudioRenderer";
+ type LivekitTransport,
+ type CallMembership,
+} from "matrix-js-sdk/lib/matrixrtc";
+
+import {
+ exampleTransport,
+ mockMatrixRoomMember,
+ mockRtcMembership,
+} from "../utils/test";
+import { CallEventAudioRenderer } from "./CallEventAudioRenderer";
import { useAudioContext } from "../useAudioContext";
import { prefetchSounds } from "../soundUtils";
import { getBasicCallViewModelEnvironment } from "../utils/test-viewmodel";
import {
alice,
aliceRtcMember,
+ bob,
bobRtcMember,
local,
+ localRtcMember,
} from "../utils/test-fixtures";
-
+import { MAX_PARTICIPANT_COUNT_FOR_SOUND } from "../state/CallViewModel/CallViewModel";
+import { initializeWidget } from "../widget";
+initializeWidget();
+vitest.mock("livekit-client/e2ee-worker?worker");
vitest.mock("../useAudioContext");
vitest.mock("../soundUtils");
+vitest.mock("../rtcSessionHelpers", async (importOriginal) => ({
+ ...(await importOriginal()),
+ makeTransport: (): [LivekitTransport] => [exampleTransport],
+}));
afterEach(() => {
- vitest.resetAllMocks();
-});
-
-afterAll(() => {
- vitest.restoreAllMocks();
+ vitest.clearAllMocks();
});
let playSound: MockedFunction<
@@ -55,6 +64,8 @@ beforeEach(() => {
playSound = vitest.fn();
(useAudioContext as MockedFunction).mockReturnValue({
playSound,
+ playSoundLooping: vitest.fn(),
+ soundDuration: {},
});
});
@@ -66,64 +77,84 @@ beforeEach(() => {
* a noise every time.
*/
test("plays one sound when entering a call", () => {
- const { vm, remoteRtcMemberships$ } = getBasicCallViewModelEnvironment([
+ const { vm, rtcMemberships$ } = getBasicCallViewModelEnvironment([
local,
alice,
+ bob,
]);
render();
// Joining a call usually means remote participants are added later.
act(() => {
- remoteRtcMemberships$.next([aliceRtcMember, bobRtcMember]);
+ rtcMemberships$.next([localRtcMember, aliceRtcMember, bobRtcMember]);
});
expect(playSound).toHaveBeenCalledOnce();
});
test("plays a sound when a user joins", () => {
- const { vm, remoteRtcMemberships$ } = getBasicCallViewModelEnvironment([
+ const { vm, rtcMemberships$ } = getBasicCallViewModelEnvironment([
local,
alice,
+ bob,
]);
render();
act(() => {
- remoteRtcMemberships$.next([aliceRtcMember, bobRtcMember]);
+ rtcMemberships$.next([localRtcMember, aliceRtcMember, bobRtcMember]);
});
// Play a sound when joining a call.
expect(playSound).toBeCalledWith("join");
});
test("plays a sound when a user leaves", () => {
- const { vm, remoteRtcMemberships$ } = getBasicCallViewModelEnvironment([
+ const { vm, rtcMemberships$ } = getBasicCallViewModelEnvironment([
local,
alice,
]);
render();
act(() => {
- remoteRtcMemberships$.next([]);
+ rtcMemberships$.next([localRtcMember]);
});
expect(playSound).toBeCalledWith("left");
});
+test("does not play a sound before the call is successful", () => {
+ const { vm, rtcMemberships$ } = getBasicCallViewModelEnvironment(
+ [local, alice],
+ [localRtcMember],
+ undefined,
+ { waitForCallPickup: true },
+ );
+ render();
+
+ act(() => {
+ rtcMemberships$.next([localRtcMember]);
+ });
+ expect(playSound).not.toBeCalledWith("left");
+});
+
test("plays no sound when the participant list is more than the maximum size", () => {
- const mockRtcMemberships: CallMembership[] = [];
+ const mockMembers: RoomMember[] = [local];
+ const mockRtcMemberships: CallMembership[] = [localRtcMember];
for (let i = 0; i < MAX_PARTICIPANT_COUNT_FOR_SOUND; i++) {
- mockRtcMemberships.push(
- mockRtcMembership(`@user${i}:example.org`, `DEVICE${i}`),
- );
+ const membership = mockRtcMembership(`@user${i}:example.org`, `DEVICE${i}`);
+ mockMembers.push(mockMatrixRoomMember(membership));
+ mockRtcMemberships.push(membership);
}
- const { vm, remoteRtcMemberships$ } = getBasicCallViewModelEnvironment(
- [local, alice],
+ const { vm, rtcMemberships$ } = getBasicCallViewModelEnvironment(
+ mockMembers,
mockRtcMemberships,
);
render();
expect(playSound).not.toBeCalled();
+ // Remove the last membership in the array to test the leaving sound
+ // (The array has length MAX_PARTICIPANT_COUNT_FOR_SOUND + 1)
act(() => {
- remoteRtcMemberships$.next(
- mockRtcMemberships.slice(0, MAX_PARTICIPANT_COUNT_FOR_SOUND - 1),
+ rtcMemberships$.next(
+ mockRtcMemberships.slice(0, MAX_PARTICIPANT_COUNT_FOR_SOUND),
);
});
expect(playSound).toBeCalledWith("left");
@@ -133,12 +164,14 @@ test("plays one sound when a hand is raised", () => {
const { vm, handRaisedSubject$ } = getBasicCallViewModelEnvironment([
local,
alice,
+ bob,
]);
render();
act(() => {
handRaisedSubject$.next({
- [bobRtcMember.callId]: {
+ // TODO: What is this string supposed to be?
+ [`${bobRtcMember.userId}:${bobRtcMember.deviceId}`]: {
time: new Date(),
membershipEventId: "",
reactionEventId: "",
@@ -155,6 +188,7 @@ test("should not play a sound when a hand raise is retracted", () => {
]);
render();
+ playSound.mockClear();
act(() => {
handRaisedSubject$.next({
["foo"]: {
@@ -169,7 +203,7 @@ test("should not play a sound when a hand raise is retracted", () => {
},
});
});
- expect(playSound).toHaveBeenCalledTimes(2);
+ expect(playSound).toHaveBeenCalledExactlyOnceWith("raiseHand");
act(() => {
handRaisedSubject$.next({
["foo"]: {
@@ -179,5 +213,5 @@ test("should not play a sound when a hand raise is retracted", () => {
},
});
});
- expect(playSound).toHaveBeenCalledTimes(2);
+ expect(playSound).toHaveBeenCalledExactlyOnceWith("raiseHand");
});
diff --git a/src/room/CallEventAudioRenderer.tsx b/src/room/CallEventAudioRenderer.tsx
index 6eeef4c48..d33f3b843 100644
--- a/src/room/CallEventAudioRenderer.tsx
+++ b/src/room/CallEventAudioRenderer.tsx
@@ -6,9 +6,8 @@ Please see LICENSE in the repository root for full details.
*/
import { type ReactNode, useEffect } from "react";
-import { filter, interval, throttle } from "rxjs";
-import { type CallViewModel } from "../state/CallViewModel";
+import { type CallViewModel } from "../state/CallViewModel/CallViewModel";
import joinCallSoundMp3 from "../sound/join_call.mp3";
import joinCallSoundOgg from "../sound/join_call.ogg";
import leftCallSoundMp3 from "../sound/left_call.mp3";
@@ -17,15 +16,14 @@ import handSoundOgg from "../sound/raise_hand.ogg";
import handSoundMp3 from "../sound/raise_hand.mp3";
import screenShareStartedOgg from "../sound/screen_share_started.ogg";
import screenShareStartedMp3 from "../sound/screen_share_started.mp3";
+import declineMp3 from "../sound/call_declined.mp3?url";
+import declineOgg from "../sound/call_declined.ogg?url";
+import timeoutMp3 from "../sound/call_timeout.mp3?url";
+import timeoutOgg from "../sound/call_timeout.ogg?url";
import { useAudioContext } from "../useAudioContext";
import { prefetchSounds } from "../soundUtils";
import { useLatest } from "../useLatest";
-// Do not play any sounds if the participant count has exceeded this
-// number.
-export const MAX_PARTICIPANT_COUNT_FOR_SOUND = 8;
-export const THROTTLE_SOUND_EFFECT_MS = 500;
-
export const callEventAudioSounds = prefetchSounds({
join: {
mp3: joinCallSoundMp3,
@@ -43,51 +41,45 @@ export const callEventAudioSounds = prefetchSounds({
mp3: screenShareStartedMp3,
ogg: screenShareStartedOgg,
},
+ decline: {
+ mp3: declineMp3,
+ ogg: declineOgg,
+ },
+ timeout: {
+ mp3: timeoutMp3,
+ ogg: timeoutOgg,
+ },
});
+export type CallEventSounds = keyof Awaited;
+
export function CallEventAudioRenderer({
vm,
+ muted,
}: {
vm: CallViewModel;
+ muted?: boolean;
}): ReactNode {
const audioEngineCtx = useAudioContext({
sounds: callEventAudioSounds,
latencyHint: "interactive",
+ muted,
});
const audioEngineRef = useLatest(audioEngineCtx);
useEffect(() => {
- const joinSub = vm.memberChanges$
- .pipe(
- filter(
- ({ joined, ids }) =>
- ids.length <= MAX_PARTICIPANT_COUNT_FOR_SOUND && joined.length > 0,
- ),
- throttle(() => interval(THROTTLE_SOUND_EFFECT_MS)),
- )
- .subscribe(() => {
- void audioEngineRef.current?.playSound("join");
- });
-
- const leftSub = vm.memberChanges$
- .pipe(
- filter(
- ({ ids, left }) =>
- ids.length <= MAX_PARTICIPANT_COUNT_FOR_SOUND && left.length > 0,
- ),
- throttle(() => interval(THROTTLE_SOUND_EFFECT_MS)),
- )
- .subscribe(() => {
- void audioEngineRef.current?.playSound("left");
- });
-
- const handRaisedSub = vm.newHandRaised$.subscribe(() => {
- void audioEngineRef.current?.playSound("raiseHand");
- });
-
- const screenshareSub = vm.newScreenShare$.subscribe(() => {
- void audioEngineRef.current?.playSound("screenshareStarted");
- });
+ const joinSub = vm.joinSoundEffect$.subscribe(
+ () => void audioEngineRef.current?.playSound("join"),
+ );
+ const leftSub = vm.leaveSoundEffect$.subscribe(
+ () => void audioEngineRef.current?.playSound("left"),
+ );
+ const handRaisedSub = vm.newHandRaised$.subscribe(
+ () => void audioEngineRef.current?.playSound("raiseHand"),
+ );
+ const screenshareSub = vm.newScreenShare$.subscribe(
+ () => void audioEngineRef.current?.playSound("screenshareStarted"),
+ );
return (): void => {
joinSub.unsubscribe();
diff --git a/src/room/EarpieceOverlay.module.css b/src/room/EarpieceOverlay.module.css
new file mode 100644
index 000000000..e53a1974b
--- /dev/null
+++ b/src/room/EarpieceOverlay.module.css
@@ -0,0 +1,49 @@
+.overlay {
+ position: fixed;
+ z-index: var(--call-view-overlay-layer);
+ inset: 0;
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ justify-content: center;
+ gap: var(--cpd-space-2x);
+ transition: opacity 200ms;
+}
+
+.overlay[data-show="true"] {
+ opacity: 1;
+}
+
+.overlay[data-show="false"] {
+ opacity: 0;
+ pointer-events: none;
+ transition-duration: 130ms;
+}
+
+.overlay::before {
+ content: "";
+ position: absolute;
+ z-index: -1;
+ inset: 0;
+ background: var(--cpd-color-bg-canvas-default);
+ opacity: 0.94;
+}
+
+.icon {
+ margin-block-end: var(--cpd-space-4x);
+ background: var(--cpd-color-alpha-gray-600);
+ color: var(--cpd-color-icon-primary);
+}
+
+.overlay > h2 {
+ text-align: center;
+ margin: 0;
+}
+
+.overlay > p {
+ text-align: center;
+}
+
+.spacer {
+ min-height: var(--cpd-space-32x);
+}
diff --git a/src/room/EarpieceOverlay.tsx b/src/room/EarpieceOverlay.tsx
new file mode 100644
index 000000000..574792f0a
--- /dev/null
+++ b/src/room/EarpieceOverlay.tsx
@@ -0,0 +1,44 @@
+/*
+Copyright 2025 New Vector Ltd.
+
+SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
+Please see LICENSE in the repository root for full details.
+*/
+
+import { type FC } from "react";
+import { BigIcon, Button, Heading, Text } from "@vector-im/compound-web";
+import { VoiceCallIcon } from "@vector-im/compound-design-tokens/assets/web/icons";
+import { useTranslation } from "react-i18next";
+
+import styles from "./EarpieceOverlay.module.css";
+
+interface Props {
+ show: boolean;
+ onBackToVideoPressed?: (() => void) | null;
+}
+
+export const EarpieceOverlay: FC = ({ show, onBackToVideoPressed }) => {
+ const { t } = useTranslation();
+ return (
+
+
+
+
+
+ {t("handset.overlay_title")}
+
+ {t("handset.overlay_description")}
+ {
+ onBackToVideoPressed?.();
+ }}
+ >
+ {t("handset.overlay_back_button")}
+
+ {/* This spacer is used to give the overlay an offset to the top. */}
+
+
+ );
+};
diff --git a/src/room/GroupCallErrorBoundary.test.tsx b/src/room/GroupCallErrorBoundary.test.tsx
index f2a10bc2d..e10044ae1 100644
--- a/src/room/GroupCallErrorBoundary.test.tsx
+++ b/src/room/GroupCallErrorBoundary.test.tsx
@@ -16,6 +16,8 @@ import {
} from "react";
import { BrowserRouter } from "react-router-dom";
import userEvent from "@testing-library/user-event";
+import { ConnectionError } from "livekit-client";
+import { MatrixError } from "matrix-js-sdk";
import {
type CallErrorRecoveryAction,
@@ -25,8 +27,12 @@ import {
ConnectionLostError,
E2EENotSupportedError,
type ElementCallError,
+ FailToGetOpenIdToken,
InsufficientCapacityError,
- MatrixRTCFocusMissingError,
+ LivekitConnectionError,
+ MatrixRTCTransportMissingError,
+ PeerConnectionTimeoutError,
+ StickyEventsRequiredError,
UnknownCallError,
} from "../utils/errors.ts";
import { mockConfig } from "../utils/test.ts";
@@ -34,7 +40,7 @@ import { ElementWidgetActions, type WidgetHelpers } from "../widget.ts";
test.each([
{
- error: new MatrixRTCFocusMissingError("example.com"),
+ error: new MatrixRTCTransportMissingError("example.com"),
expectedTitle: "Call is not supported",
},
{
@@ -54,6 +60,12 @@ test.each([
expectedDescription:
"The server has reached its maximum capacity and you cannot join the call at this time. Try again later, or contact your server admin if the problem persists.",
},
+ {
+ error: new StickyEventsRequiredError(),
+ expectedTitle: "Homeserver does not support Matrix 2.0 calls",
+ expectedDescription:
+ "This deployment is configured to use Matrix 2.0 call mode, but the homeserver does not advertise support for sticky events (MSC4354). Ask your server admin to upgrade, or switch the deployment to a compatible mode.",
+ },
])(
"should report correct error for $expectedTitle",
async ({ error, expectedTitle, expectedDescription }) => {
@@ -85,7 +97,7 @@ test.each([
);
test("should render the error page with link back to home", async () => {
- const error = new MatrixRTCFocusMissingError("example.com");
+ const error = new MatrixRTCTransportMissingError("example.com");
const TestComponent = (): ReactNode => {
throw error;
};
@@ -106,7 +118,7 @@ test("should render the error page with link back to home", async () => {
await screen.findByText("Call is not supported");
expect(screen.getByText(/Domain: example\.com/i)).toBeInTheDocument();
expect(
- screen.getByText(/Error Code: MISSING_MATRIX_RTC_FOCUS/i),
+ screen.getByText(/Error Code: MISSING_MATRIX_RTC_TRANSPORT/i),
).toBeInTheDocument();
await screen.findByRole("button", { name: "Return to home screen" });
@@ -132,9 +144,10 @@ test("ConnectionLostError: Action handling should reset error state", async () =
const WrapComponent = (): ReactNode => {
const [failState, setFailState] = useState(true);
const reconnectCallback = useCallback(
- (action: CallErrorRecoveryAction) => {
+ async (action: CallErrorRecoveryAction) => {
reconnectCallbackSpy(action);
setFailState(false);
+ return Promise.resolve();
},
[setFailState],
);
@@ -212,7 +225,7 @@ describe("Rageshake button", () => {
});
test("should have a close button in widget mode", async () => {
- const error = new MatrixRTCFocusMissingError("example.com");
+ const error = new MatrixRTCTransportMissingError("example.com");
const TestComponent = (): ReactNode => {
throw error;
};
@@ -251,3 +264,165 @@ test("should have a close button in widget mode", async () => {
);
expect(mockWidget.api.transport.stop).toHaveBeenCalled();
});
+
+test("should show technical details when error has a matrixError cause", async () => {
+ const underlyingError = new MatrixError(
+ {
+ errcode: "M_LOOKUP_FAILED",
+ error: "Failed to look up user info from homeserver",
+ },
+ 500,
+ "https://matrix-rtc.m.localhost/livekit/jwt/sfu/get",
+ );
+ const error = new FailToGetOpenIdToken(underlyingError);
+
+ const TestComponent = (): ReactNode => {
+ throw error;
+ };
+
+ render(
+
+
+
+
+ ,
+ );
+
+ await screen.findByText("Something went wrong");
+
+ // Technical details should be present
+ const detailsElement = screen.getByText("Technical details");
+ expect(detailsElement).toBeInTheDocument();
+
+ // Verify error details are shown
+ expect(
+ screen.getByText(/Failed to look up user info from homeserver/i, {
+ selector: "pre",
+ }),
+ ).toBeInTheDocument();
+});
+
+test("should not show technical details when error has no matrix error cause", async () => {
+ const error = new ConnectionLostError();
+
+ const TestComponent = (): ReactNode => {
+ throw error;
+ };
+
+ render(
+
+
+
+
+ ,
+ );
+
+ await screen.findByText("Connection lost");
+
+ // Technical details should not be present (ConnectionLostError has no cause)
+ expect(screen.queryByText("Technical details")).not.toBeInTheDocument();
+});
+
+describe("LiveKit ConnectionError variants", () => {
+ test.each([
+ {
+ name: "notAllowed",
+ error: ConnectionError.notAllowed("Permission denied by server", 403),
+ expectedReason: "NotAllowed",
+ },
+ {
+ name: "timeout",
+ error: ConnectionError.timeout("Connection timed out"),
+ expectedReason: "Timeout",
+ },
+ {
+ name: "serverUnreachable",
+ error: ConnectionError.serverUnreachable("Server is unreachable", 503),
+ expectedReason: "ServerUnreachable",
+ },
+ {
+ name: "serviceNotFound",
+ error: ConnectionError.serviceNotFound(
+ "RTC service not found",
+ "v0-rtc" as const,
+ ),
+ expectedReason: "ServiceNotFound",
+ },
+ {
+ name: "internal",
+ error: ConnectionError.internal("Internal server error", {
+ status: 500,
+ statusText: "Internal Server Error",
+ }),
+ expectedReason: "InternalError",
+ },
+ ])(
+ "should display LiveKit $name error correctly",
+ async ({ error, expectedReason }) => {
+ const TestComponent = (): ReactNode => {
+ throw new LivekitConnectionError(error);
+ };
+
+ const { asFragment } = render(
+
+
+
+
+ ,
+ );
+
+ // Check title
+ await screen.findByText("Failed to connect to Livekit server");
+
+ // Check that reason is displayed in the description
+ expect(screen.getByText(/Reason:/i)).toBeInTheDocument();
+ expect(screen.getByText(expectedReason)).toBeInTheDocument();
+
+ expect(asFragment()).toMatchSnapshot();
+ },
+ );
+
+ test("should link to troubleshoot guide when timeout error", async () => {
+ const error = new PeerConnectionTimeoutError();
+
+ const TestComponent = (): ReactNode => {
+ throw error;
+ };
+
+ const { asFragment } = render(
+
+
+
+
+ ,
+ );
+
+ await screen.findByText("Connection timeout");
+
+ // Verify the link is present and has correct href
+ const link = screen.getByText("troubleshooting guide");
+ expect(link).toHaveAttribute(
+ "href",
+ "https://docs.element.io/latest/element-server-suite-pro/configuring-components/configuring-matrix-rtc/#sfu-connectivity-troubleshooting",
+ );
+
+ // Snapshot the complete rendered error
+ expect(asFragment()).toMatchSnapshot();
+ });
+});
diff --git a/src/room/GroupCallErrorBoundary.tsx b/src/room/GroupCallErrorBoundary.tsx
index 170718d6a..390a5a8c2 100644
--- a/src/room/GroupCallErrorBoundary.tsx
+++ b/src/room/GroupCallErrorBoundary.tsx
@@ -16,11 +16,14 @@ import {
} from "react";
import { Trans, useTranslation } from "react-i18next";
import {
- ErrorIcon,
+ ErrorSolidIcon,
HostIcon,
OfflineIcon,
WebBrowserIcon,
} from "@vector-im/compound-design-tokens/assets/web/icons";
+import { Button } from "@vector-im/compound-web";
+import { logger } from "matrix-js-sdk/lib/logger";
+import { MatrixError } from "matrix-js-sdk";
import {
ConnectionLostError,
@@ -32,10 +35,13 @@ import {
import { FullScreenView } from "../FullScreenView.tsx";
import { ErrorView } from "../ErrorView.tsx";
import { type WidgetHelpers } from "../widget.ts";
+import styles from "../ErrorView.module.css";
export type CallErrorRecoveryAction = "reconnect"; // | "retry" ;
-export type RecoveryActionHandler = (action: CallErrorRecoveryAction) => void;
+export type RecoveryActionHandler = (
+ action: CallErrorRecoveryAction,
+) => Promise;
interface ErrorPageProps {
error: ElementCallError;
@@ -50,7 +56,7 @@ const ErrorPage: FC = ({
widget,
}: ErrorPageProps): ReactElement => {
const { t } = useTranslation();
-
+ logger.error("Error boundary caught:", error);
let icon: ComponentType>;
switch (error.category) {
case ErrorCategory.CONFIGURATION_ISSUE:
@@ -63,17 +69,20 @@ const ErrorPage: FC = ({
icon = WebBrowserIcon;
break;
default:
- icon = ErrorIcon;
+ icon = ErrorSolidIcon;
}
const actions: { label: string; onClick: () => void }[] = [];
if (error instanceof ConnectionLostError) {
actions.push({
label: t("call_ended_view.reconnect_button"),
- onClick: () => recoveryActionHandler("reconnect"),
+ onClick: () => void recoveryActionHandler("reconnect"),
});
}
+ const technicalError =
+ error.cause instanceof MatrixError ? error.cause : null;
+
return (
= ({
widget={widget}
>
);
},
@@ -98,13 +136,16 @@ beforeEach(() => {
function createGroupCallView(
widget: WidgetHelpers | null,
joined = true,
+ options: {
+ withErrorBoundary?: boolean;
+ } = {},
): {
- rtcSession: MockRTCSession;
+ rtcSession: MatrixRTCSession;
getByText: ReturnType["getByText"];
} {
const client = {
getUser: () => null,
- getUserId: () => localRtcMember.sender,
+ getUserId: () => localRtcMember.userId,
getDeviceId: () => localRtcMember.deviceId,
getRoom: (rId) => (rId === roomId ? room : null),
} as Partial as MatrixClient;
@@ -121,44 +162,61 @@ function createGroupCallView(
getMxcAvatarUrl: () => null,
getCanonicalAlias: () => null,
currentState: {
+ ...mockEmitter(),
getJoinRule: () => JoinRule.Invite,
} as Partial as RoomState,
});
- const rtcSession = new MockRTCSession(
- room,
- localRtcMember,
- [],
- ).withMemberships(of([]));
+ const rtcSession = new MockRTCSession(room, []).withMemberships(
+ constant([localRtcMember]),
+ );
rtcSession.joined = joined;
const muteState = {
audio: { enabled: false },
video: { enabled: false },
- } as MuteStates;
+ // TODO-MULTI-SFU: This cast isn't valid, it's likely the cause of some current test failures
+ } as unknown as MuteStates;
+ const groupCallView = (
+
+ );
const { getByText } = render(
-
+
+
+ {options.withErrorBoundary ? (
+
+ {groupCallView}
+
+ ) : (
+ groupCallView
+ )}
+
+ ,
);
return {
getByText,
- rtcSession,
+ rtcSession: rtcSession.asMockedSession(),
};
}
-test("GroupCallView plays a leave sound asynchronously in SPA mode", async () => {
+test.skip("GroupCallView plays a leave sound asynchronously in SPA mode", async () => {
const user = userEvent.setup();
const { getByText, rtcSession } = createGroupCallView(null);
const leaveButton = getByText("Leave");
@@ -175,7 +233,7 @@ test("GroupCallView plays a leave sound asynchronously in SPA mode", async () =>
await waitFor(() => expect(leaveRTCSession).toHaveResolved());
});
-test("GroupCallView plays a leave sound synchronously in widget mode", async () => {
+test.skip("GroupCallView plays a leave sound synchronously in widget mode", async () => {
const user = userEvent.setup();
const widget = {
api: {
@@ -191,6 +249,8 @@ test("GroupCallView plays a leave sound synchronously in widget mode", async ()
);
(useAudioContext as MockedFunction).mockReturnValue({
playSound,
+ playSoundLooping: vitest.fn(),
+ soundDuration: {},
});
const { getByText, rtcSession } = createGroupCallView(
@@ -212,7 +272,84 @@ test("GroupCallView plays a leave sound synchronously in widget mode", async ()
expect(leaveRTCSession).toHaveBeenCalledOnce();
});
-test("GroupCallView leaves the session when an error occurs", async () => {
+test("Should close widget when all other left and play a sound", async () => {
+ const user = userEvent.setup();
+ let widgetClosedCalled = false;
+ const { promise: widgetClosedPromise, resolve: widgetClosedResolver } =
+ Promise.withResolvers();
+ const widgetSendMock = vi.fn().mockImplementation((action: string) => {
+ if (action === ElementWidgetActions.Close) {
+ widgetClosedCalled = true;
+ widgetClosedResolver();
+ }
+ });
+ const widgetStopMock = vi.fn().mockResolvedValue(undefined);
+ const widget = {
+ api: {
+ setAlwaysOnScreen: vi.fn().mockResolvedValue(true),
+ transport: {
+ send: widgetSendMock,
+ reply: vi.fn().mockResolvedValue(undefined),
+ stop: widgetStopMock,
+ } as unknown as ITransport,
+ } as Partial,
+ lazyActions: new LazyEventEmitter(),
+ };
+ const resolvePlaySound = Promise.withResolvers();
+ playSound = vi.fn().mockReturnValue(resolvePlaySound.promise);
+ (useAudioContext as MockedFunction).mockReturnValue({
+ playSound,
+ playSoundLooping: vitest.fn(),
+ soundDuration: {},
+ });
+
+ const { getByText } = createGroupCallView(widget as WidgetHelpers);
+ const leaveButton = getByText("SimulateOtherLeft");
+ await user.click(leaveButton);
+ await flushPromises();
+ expect(widgetClosedCalled).toBeFalsy();
+ resolvePlaySound.resolve();
+
+ expect(playSound).toHaveBeenCalledWith("left", 0);
+ await widgetClosedPromise;
+ await flushPromises();
+ expect(widgetClosedCalled).toBeTruthy();
+ expect(widgetStopMock).toHaveBeenCalledOnce();
+}, 80000);
+
+test("Should not close widget when auto leave due to error", async () => {
+ const user = userEvent.setup();
+
+ const widgetStopMock = vi.fn().mockResolvedValue(undefined);
+ const widgetSendMock = vi.fn().mockResolvedValue(undefined);
+ const widget = {
+ api: {
+ setAlwaysOnScreen: vi.fn().mockResolvedValue(true),
+ transport: {
+ send: widgetSendMock,
+ reply: vi.fn().mockResolvedValue(undefined),
+ stop: widgetStopMock,
+ } as unknown as ITransport,
+ } as Partial,
+ lazyActions: new LazyEventEmitter(),
+ };
+
+ const alwaysOnScreenSpy = vi.spyOn(widget.api, "setAlwaysOnScreen");
+
+ const { getByText } = createGroupCallView(widget as WidgetHelpers);
+ const leaveButton = getByText("SimulateErrorLeft");
+ await user.click(leaveButton);
+ await flushPromises();
+
+ // When onLeft is called, we first set always on screen to false
+ await waitFor(() => expect(alwaysOnScreenSpy).toHaveBeenCalledWith(false));
+ await flushPromises();
+ // But then we do not close the widget automatically
+ expect(widgetStopMock).not.toHaveBeenCalledOnce();
+ expect(widgetSendMock).not.toHaveBeenCalledOnce();
+});
+
+test.skip("GroupCallView leaves the session when an error occurs", async () => {
(ActiveCall as MockedFunction).mockImplementation(() => {
const [error, setError] = useState(null);
if (error !== null) throw error;
@@ -233,9 +370,10 @@ test("GroupCallView leaves the session when an error occurs", async () => {
);
});
-test("GroupCallView shows errors that occur during joining", async () => {
+test.skip("GroupCallView shows errors that occur during joining", async () => {
const user = userEvent.setup();
- enterRTCSession.mockRejectedValue(new MatrixRTCFocusMissingError(""));
+ // This should not mock this error that deep. it should only mock the CallViewModel.
+ enterRTCSession.mockRejectedValue(new MatrixRTCTransportMissingError(""));
onTestFinished(() => {
enterRTCSession.mockReset();
});
@@ -243,3 +381,63 @@ test("GroupCallView shows errors that occur during joining", async () => {
await user.click(screen.getByRole("button", { name: "Join call" }));
screen.getByText("Call is not supported");
});
+
+test("translates wrapped UnsupportedStickyEventsEndpointError to the StickyEventsRequiredError screen", async () => {
+ // Mirror the shape the SDK emits: the MembershipManager scheduler wraps
+ // the original UnsupportedStickyEventsEndpointError in a generic Error
+ // but preserves the original on `.cause`.
+ const stickyError = new UnsupportedStickyEventsEndpointError(
+ "Server does not support the sticky events",
+ "sendStickyEvent",
+ );
+ const wrappedError = new Error(
+ "The MembershipManager shut down because of the end condition: " +
+ String(stickyError),
+ { cause: stickyError },
+ );
+
+ const { rtcSession } = createGroupCallView(null, true, {
+ withErrorBoundary: true,
+ });
+
+ await act(() =>
+ rtcSession.emit(MatrixRTCSessionEvent.MembershipManagerError, wrappedError),
+ );
+
+ await screen.findByText("Homeserver does not support Matrix 2.0 calls");
+});
+
+test("falls back to ConnectionLostError for unrecognised membership manager errors", async () => {
+ const { rtcSession } = createGroupCallView(null, true, {
+ withErrorBoundary: true,
+ });
+
+ await act(() =>
+ rtcSession.emit(
+ MatrixRTCSessionEvent.MembershipManagerError,
+ new Error("something else broke"),
+ ),
+ );
+
+ await screen.findByText("Connection lost");
+});
+
+test("user can reconnect after a membership manager error", async () => {
+ const user = userEvent.setup();
+ const { rtcSession } = createGroupCallView(null, true);
+ await act(() =>
+ rtcSession.emit(MatrixRTCSessionEvent.MembershipManagerError, undefined),
+ );
+ // XXX: Wrapping the following click in act() shouldn't be necessary (the
+ // async state update should be processed automatically by the waitFor call),
+ // and yet here we are.
+ await act(async () =>
+ user
+ // With css vitest turned on this test thinks that the button has pointer_events: none;.
+ // TODO investigate if this is a test setup issue or an actual problem.
+ .setup({ pointerEventsCheck: PointerEventsCheckLevel.Never })
+ .click(screen.getByRole("button", { name: "Reconnect" })),
+ );
+ // In-call controls should be visible again
+ await waitFor(() => screen.getByRole("button", { name: "Leave" }));
+});
diff --git a/src/room/GroupCallView.tsx b/src/room/GroupCallView.tsx
index 3d9b98089..831ee9194 100644
--- a/src/room/GroupCallView.tsx
+++ b/src/room/GroupCallView.tsx
@@ -13,7 +13,12 @@ import {
useMemo,
useState,
} from "react";
-import { type MatrixClient, JoinRule, type Room } from "matrix-js-sdk";
+import {
+ type MatrixClient,
+ JoinRule,
+ type Room,
+ UnsupportedStickyEventsEndpointError,
+} from "matrix-js-sdk";
import {
Room as LivekitRoom,
isE2EESupported as isE2EESupportedBrowser,
@@ -38,34 +43,49 @@ import { PosthogAnalytics } from "../analytics/PosthogAnalytics";
import { useProfile } from "../profile/useProfile";
import { findDeviceByName } from "../utils/media";
import { ActiveCall } from "./InCallView";
-import { MUTE_PARTICIPANT_COUNT, type MuteStates } from "./MuteStates";
-import { useMediaDevices } from "../livekit/MediaDevicesContext";
+import { type MuteStates } from "../state/MuteStates";
+import { useMediaDevices } from "../MediaDevicesContext";
import { useMatrixRTCSessionMemberships } from "../useMatrixRTCSessionMemberships";
-import { enterRTCSession, leaveRTCSession } from "../rtcSessionHelpers";
-import { useRoomEncryptionSystem } from "../e2ee/sharedKeyManagement";
+import {
+ saveKeyForRoom,
+ useRoomEncryptionSystem,
+} from "../e2ee/sharedKeyManagement";
import { useRoomAvatar } from "./useRoomAvatar";
import { useRoomName } from "./useRoomName";
import { useJoinRule } from "./useJoinRule";
import { InviteModal } from "./InviteModal";
-import { useUrlParams } from "../UrlParams";
+import {
+ getUrlParams,
+ HeaderStyle,
+ type UrlParams,
+ useUrlParams,
+} from "../UrlParams";
import { E2eeType } from "../e2ee/e2eeType";
import { useAudioContext } from "../useAudioContext";
-import { callEventAudioSounds } from "./CallEventAudioRenderer";
+import {
+ callEventAudioSounds,
+ type CallEventSounds,
+} from "./CallEventAudioRenderer";
import { useLatest } from "../useLatest";
import { usePageTitle } from "../usePageTitle";
import {
+ ConnectionLostError,
E2EENotSupportedError,
ElementCallError,
- ErrorCode,
- RTCSessionError,
+ StickyEventsRequiredError,
UnknownCallError,
} from "../utils/errors.ts";
import { GroupCallErrorBoundary } from "./GroupCallErrorBoundary.tsx";
-import {
- useNewMembershipManagerSetting as useNewMembershipManagerSetting,
- useSetting,
-} from "../settings/settings";
import { useTypedEventEmitter } from "../useEvents";
+import { muteAllAudio$ } from "../state/MuteAllAudioModel.ts";
+import { useAppBarTitle } from "../AppBar.tsx";
+import { useBehavior } from "../useBehavior.ts";
+
+/**
+ * If there already are this many participants in the call, we automatically mute
+ * the user.
+ */
+export const MUTE_PARTICIPANT_COUNT = 8;
declare global {
interface Window {
@@ -77,11 +97,11 @@ interface Props {
client: MatrixClient;
isPasswordlessUser: boolean;
confineToRoom: boolean;
- preload: boolean;
- skipLobby: boolean;
- hideHeader: boolean;
+ preload: UrlParams["preload"];
+ skipLobby: UrlParams["skipLobby"];
rtcSession: MatrixRTCSession;
- isJoined: boolean;
+ joined: boolean;
+ setJoined: (value: boolean) => void;
muteStates: MuteStates;
widget: WidgetHelpers | null;
}
@@ -92,9 +112,9 @@ export const GroupCallView: FC = ({
confineToRoom,
preload,
skipLobby,
- hideHeader,
rtcSession,
- isJoined,
+ joined,
+ setJoined,
muteStates,
widget,
}) => {
@@ -102,21 +122,40 @@ export const GroupCallView: FC = ({
const [externalError, setExternalError] = useState(
null,
);
-
const memberships = useMatrixRTCSessionMemberships(rtcSession);
+
+ const muteAllAudio = useBehavior(muteAllAudio$);
const leaveSoundContext = useLatest(
- useAudioContext({
+ useAudioContext({
sounds: callEventAudioSounds,
latencyHint: "interactive",
+ muted: muteAllAudio,
}),
);
// This should use `useEffectEvent` (only available in experimental versions)
useEffect(() => {
if (memberships.length >= MUTE_PARTICIPANT_COUNT)
- muteStates.audio.setEnabled?.(false);
+ muteStates.audio.setEnabled$.value?.(false);
// eslint-disable-next-line react-hooks/exhaustive-deps
}, []);
+ useEffect(() => {
+ logger.info("[Lifecycle] GroupCallView Component mounted");
+ return (): void => {
+ logger.info("[Lifecycle] GroupCallView Component unmounted");
+ };
+ }, []);
+
+ // This CSS is the only way we could find to not make element call scroll for
+ // viewport sizes smaller than 122px width. (It is actually this exact number: 122px
+ // tested on different devices...)
+ useEffect(() => {
+ document.body.classList.add("no-scroll-body");
+ return (): void => {
+ document.body.classList.remove("no-scroll-body");
+ };
+ }, []);
+
useEffect(() => {
window.rtcSession = rtcSession;
return (): void => {
@@ -124,18 +163,27 @@ export const GroupCallView: FC = ({
};
}, [rtcSession]);
+ // TODO move this into the callViewModel LocalMembership.ts
+ // We might actually not need this at all. Since we get into fatalError on those errors already?
useTypedEventEmitter(
rtcSession,
MatrixRTCSessionEvent.MembershipManagerError,
(error) => {
- setExternalError(
- new RTCSessionError(
- ErrorCode.MEMBERSHIP_MANAGER_UNRECOVERABLE,
- error.message ?? error,
- ),
- );
+ // When matrix_rtc_mode=matrix_2_0 is in effect but the homeserver does
+ // not advertise MSC4354 (sticky events), the SDK throws an
+ // `UnsupportedStickyEventsEndpointError`. The MembershipManager
+ // scheduler wraps it and exposes the original via `.cause`.
+ if (
+ error instanceof Error &&
+ error.cause instanceof UnsupportedStickyEventsEndpointError
+ ) {
+ setExternalError(new StickyEventsRequiredError());
+ } else {
+ setExternalError(new ConnectionLostError());
+ }
},
);
+
useEffect(() => {
// Sanity check the room object
if (client.getRoom(rtcSession.room.roomId) !== rtcSession.room)
@@ -148,11 +196,21 @@ export const GroupCallView: FC = ({
const { displayName, avatarUrl } = useProfile(client);
const roomName = useRoomName(room);
const roomAvatar = useRoomAvatar(room);
- const { perParticipantE2EE, returnToLobby } = useUrlParams();
+ const {
+ perParticipantE2EE,
+ returnToLobby,
+ password: passwordFromUrl,
+ header,
+ } = useUrlParams();
const e2eeSystem = useRoomEncryptionSystem(room.roomId);
- const [useNewMembershipManager] = useSetting(useNewMembershipManagerSetting);
+
+ // Save the password once we start the groupCallView
+ useEffect(() => {
+ if (passwordFromUrl) saveKeyForRoom(room.roomId, passwordFromUrl);
+ }, [passwordFromUrl, room.roomId]);
usePageTitle(roomName);
+ useAppBarTitle(roomName);
const matrixInfo = useMemo((): MatrixInfo => {
return {
@@ -169,26 +227,19 @@ export const GroupCallView: FC = ({
// Count each member only once, regardless of how many devices they use
const participantCount = useMemo(
- () => new Set(memberships.map((m) => m.sender!)).size,
+ () => new Set(memberships.map((m) => m.userId!)).size,
[memberships],
);
- const deviceContext = useMediaDevices();
- const latestDevices = useLatest(deviceContext);
+ const mediaDevices = useMediaDevices();
const latestMuteStates = useLatest(muteStates);
const enterRTCSessionOrError = useCallback(
- async (
- rtcSession: MatrixRTCSession,
- perParticipantE2EE: boolean,
- newMembershipManager: boolean,
- ): Promise => {
+ async (rtcSession: MatrixRTCSession): Promise => {
try {
- await enterRTCSession(
- rtcSession,
- perParticipantE2EE,
- newMembershipManager,
- );
+ setJoined(true);
+ // TODO-MULTI-SFU what to do with error handling now that we don't use this function?
+ // @BillCarsonFr
} catch (e) {
if (e instanceof ElementCallError) {
setExternalError(e);
@@ -200,8 +251,9 @@ export const GroupCallView: FC = ({
setExternalError(error);
}
}
+ return Promise.resolve();
},
- [setExternalError],
+ [setJoined],
);
useEffect(() => {
@@ -220,12 +272,12 @@ export const GroupCallView: FC = ({
if (!deviceId) {
logger.warn("Unknown audio input: " + audioInput);
// override the default mute state
- latestMuteStates.current!.audio.setEnabled?.(false);
+ latestMuteStates.current!.audio.setEnabled$.value?.(false);
} else {
logger.debug(
`Found audio input ID ${deviceId} for name ${audioInput}`,
);
- latestDevices.current!.audioInput.select(deviceId);
+ mediaDevices.audioInput.select(deviceId);
}
}
@@ -234,57 +286,35 @@ export const GroupCallView: FC = ({
if (!deviceId) {
logger.warn("Unknown video input: " + videoInput);
// override the default mute state
- latestMuteStates.current!.video.setEnabled?.(false);
+ latestMuteStates.current!.video.setEnabled$.value?.(false);
} else {
logger.debug(
`Found video input ID ${deviceId} for name ${videoInput}`,
);
- latestDevices.current!.videoInput.select(deviceId);
+ mediaDevices.videoInput.select(deviceId);
}
}
};
if (skipLobby) {
- if (widget) {
- if (preload) {
- // In preload mode without lobby we wait for a join action before entering
- const onJoin = (ev: CustomEvent): void => {
- (async (): Promise => {
- await defaultDeviceSetup(
- ev.detail.data as unknown as JoinCallData,
- );
- await enterRTCSessionOrError(
- rtcSession,
- perParticipantE2EE,
- useNewMembershipManager,
- );
- widget.api.transport.reply(ev.detail, {});
- })().catch((e) => {
- logger.error("Error joining RTC session", e);
- });
- };
- widget.lazyActions.on(ElementWidgetActions.JoinCall, onJoin);
- return (): void => {
- widget.lazyActions.off(ElementWidgetActions.JoinCall, onJoin);
- };
- } else {
- // No lobby and no preload: we enter the rtc session right away
+ if (widget && preload) {
+ // In preload mode without lobby we wait for a join action before entering
+ const onJoin = (ev: CustomEvent): void => {
(async (): Promise => {
- await enterRTCSessionOrError(
- rtcSession,
- perParticipantE2EE,
- useNewMembershipManager,
- );
+ await defaultDeviceSetup(ev.detail.data as unknown as JoinCallData);
+ setJoined(true);
+ widget.api.transport.reply(ev.detail, {});
})().catch((e) => {
- logger.error("Error joining RTC session", e);
+ logger.error("Error joining RTC session on preload", e);
});
- }
+ };
+ widget.lazyActions.on(ElementWidgetActions.JoinCall, onJoin);
+ return (): void => {
+ widget.lazyActions.off(ElementWidgetActions.JoinCall, onJoin);
+ };
} else {
- void enterRTCSessionOrError(
- rtcSession,
- perParticipantE2EE,
- useNewMembershipManager,
- );
+ // No lobby and no preload: we enter the rtc session right away
+ setJoined(true);
}
}
}, [
@@ -293,60 +323,104 @@ export const GroupCallView: FC = ({
preload,
skipLobby,
perParticipantE2EE,
- latestDevices,
+ mediaDevices,
latestMuteStates,
- enterRTCSessionOrError,
- useNewMembershipManager,
+ setJoined,
]);
+ // TODO refactor this + "joined" to just one callState
const [left, setLeft] = useState(false);
const navigate = useNavigate();
- const onLeave = useCallback(
- (cause: "user" | "error" = "user"): void => {
- const audioPromise = leaveSoundContext.current?.playSound("left");
- // In embedded/widget mode the iFrame will be killed right after the call ended prohibiting the posthog event from getting sent,
- // therefore we want the event to be sent instantly without getting queued/batched.
- const sendInstantly = !!widget;
+ // TODO split this into leave and onDisconnect
+ const onLeft = useCallback(
+ (
+ reason: "timeout" | "user" | "allOthersLeft" | "decline" | "error",
+ ): void => {
+ let audioPromise: Promise | undefined = undefined;
+ switch (reason) {
+ case "allOthersLeft":
+ // When "allOthersLeft", the leaveSoundEffect$ in CallEventAudioRenderer
+ // already plays the "left" sound when the remote participant's media
+ // disappears. We play it here silenced (volumeOverwrite = 0) so we have the right duration in the audioPromise.
+ // (used to destory the widget)
+ audioPromise = leaveSoundContext.current?.playSound("left", 0);
+ break;
+ case "timeout":
+ case "decline":
+ audioPromise = leaveSoundContext.current?.playSound(reason);
+ break;
+ default:
+ audioPromise = leaveSoundContext.current?.playSound("left");
+ }
+
+ setJoined(false);
setLeft(true);
- // we need to wait until the callEnded event is tracked on posthog.
- // Otherwise the iFrame gets killed before the callEnded event got tracked.
+
+ // We need to wait until the callEnded event is tracked on PostHog,
+ // otherwise the iframe may get killed first.
const posthogRequest = new Promise((resolve) => {
+ // To increase the likelihood of the PostHog event being sent out in
+ // widget mode before the iframe is killed, we ask it to skip the
+ // usual queuing/batching of requests.
+ const sendInstantly = widget !== null;
PosthogAnalytics.instance.eventCallEnded.track(
room.roomId,
rtcSession.memberships.length,
sendInstantly,
rtcSession,
);
+ // Unfortunately the PostHog library provides no way to await the
+ // tracking of an event, but we don't really want it to hold up the
+ // closing of the widget that long anyway, so giving it 10 ms will do.
window.setTimeout(resolve, 10);
});
- leaveRTCSession(
- rtcSession,
- cause,
- // Wait for the sound in widget mode (it's not long)
- Promise.all([audioPromise, posthogRequest]),
- )
- // Only sends matrix leave event. The Livekit session will disconnect once the ActiveCall-view unmounts.
+ void Promise.all([audioPromise, posthogRequest])
+ .catch((e) =>
+ logger.error(
+ "Failed to play leave audio and/or send PostHog leave event",
+ e,
+ ),
+ )
.then(async () => {
if (
!isPasswordlessUser &&
!confineToRoom &&
!PosthogAnalytics.instance.isEnabled()
- ) {
- await navigate("/");
+ )
+ void navigate("/");
+
+ if (widget) {
+ // After this point the iframe could die at any moment!
+ try {
+ await widget.api.setAlwaysOnScreen(false);
+ } catch (e) {
+ logger.error(
+ "Failed to set call widget `alwaysOnScreen` to false",
+ e,
+ );
+ }
+ // On a normal user hangup we can shut down and close the widget. But if an
+ // error occurs we should keep the widget open until the user reads it.
+ if (reason != "error" && !getUrlParams().returnToLobby) {
+ try {
+ await widget.api.transport.send(ElementWidgetActions.Close, {});
+ } catch (e) {
+ logger.error("Failed to send close action", e);
+ }
+ widget.api.transport.stop();
+ }
}
- })
- .catch((e) => {
- logger.error("Error leaving RTC session", e);
});
},
[
+ setJoined,
leaveSoundContext,
widget,
- rtcSession,
room.roomId,
+ rtcSession,
isPasswordlessUser,
confineToRoom,
navigate,
@@ -354,25 +428,12 @@ export const GroupCallView: FC = ({
);
useEffect(() => {
- if (widget && isJoined) {
+ if (widget && joined)
// set widget to sticky once joined.
widget.api.setAlwaysOnScreen(true).catch((e) => {
logger.error("Error calling setAlwaysOnScreen(true)", e);
});
-
- const onHangup = (ev: CustomEvent): void => {
- widget.api.transport.reply(ev.detail, {});
- // Only sends matrix leave event. The Livekit session will disconnect once the ActiveCall-view unmounts.
- leaveRTCSession(rtcSession, "user").catch((e) => {
- logger.error("Failed to leave RTC session", e);
- });
- };
- widget.lazyActions.once(ElementWidgetActions.HangupCall, onHangup);
- return (): void => {
- widget.lazyActions.off(ElementWidgetActions.HangupCall, onHangup);
- };
- }
- }, [widget, isJoined, rtcSession]);
+ }, [widget, joined, rtcSession]);
const joinRule = useJoinRule(room);
@@ -407,15 +468,9 @@ export const GroupCallView: FC = ({
client={client}
matrixInfo={matrixInfo}
muteStates={muteStates}
- onEnter={() =>
- void enterRTCSessionOrError(
- rtcSession,
- perParticipantE2EE,
- useNewMembershipManager,
- )
- }
+ onEnter={() => setJoined(true)}
confineToRoom={confineToRoom}
- hideHeader={hideHeader}
+ hideHeader={header !== HeaderStyle.Standard}
participantCount={participantCount}
onShareClick={onShareClick}
/>
@@ -431,7 +486,7 @@ export const GroupCallView: FC = ({
throw externalError;
};
body = ;
- } else if (isJoined) {
+ } else if (joined) {
body = (
<>
{shareModal}
@@ -439,9 +494,8 @@ export const GroupCallView: FC = ({
client={client}
matrixInfo={matrixInfo}
rtcSession={rtcSession as MatrixRTCSession}
- participantCount={participantCount}
- onLeave={onLeave}
- hideHeader={hideHeader}
+ matrixRoom={room}
+ onLeft={onLeft}
muteStates={muteStates}
e2eeSystem={e2eeSystem}
//otelGroupCallMembership={otelGroupCallMembership}
@@ -467,6 +521,7 @@ export const GroupCallView: FC = ({
endedCallId={rtcSession.room.roomId}
client={client}
isPasswordlessUser={isPasswordlessUser}
+ hideHeader={header === HeaderStyle.None}
confineToRoom={confineToRoom}
/>
);
@@ -480,6 +535,7 @@ export const GroupCallView: FC = ({
// Left in widget mode:
body = returnToLobby ? lobbyView : null;
} else if (preload || skipLobby) {
+ // The RTC session is not joined to yet (`isJoined`), but enterRTCSessionOrError should have been called.
body = null;
} else {
body = lobbyView;
@@ -488,23 +544,18 @@ export const GroupCallView: FC = ({
return (
{
+ recoveryActionHandler={async (action) => {
+ setExternalError(null);
if (action == "reconnect") {
setLeft(false);
- enterRTCSessionOrError(
- rtcSession,
- perParticipantE2EE,
- useNewMembershipManager,
- ).catch((e) => {
+ await enterRTCSessionOrError(rtcSession).catch((e) => {
logger.error("Error re-entering RTC session", e);
});
}
}}
- onError={
- (/**error*/) => {
- if (rtcSession.isJoined()) onLeave("error");
- }
- }
+ onError={(_error) => {
+ if (rtcSession.isJoined()) onLeft("error");
+ }}
>
{body}
diff --git a/src/room/InCallView.module.css b/src/room/InCallView.module.css
index bb9cc0524..736a915a2 100644
--- a/src/room/InCallView.module.css
+++ b/src/room/InCallView.module.css
@@ -14,35 +14,16 @@ Please see LICENSE in the repository root for full details.
overflow-y: auto;
}
-.header {
- position: sticky;
- flex-shrink: 0;
- inset-block-start: 0;
- z-index: 1;
- background: linear-gradient(
- 0deg,
- rgba(0, 0, 0, 0) 0%,
- var(--cpd-color-bg-canvas-default) 100%
- );
-}
-
-.header.filler {
- block-size: var(--cpd-space-6x);
- background: none;
-}
-
-.footer {
- position: sticky;
- inset-block-end: 0;
- z-index: 1;
- display: grid;
- grid-template-columns:
- minmax(0, var(--inline-content-inset))
- 1fr auto 1fr minmax(0, var(--inline-content-inset));
- grid-template-areas: ". logo buttons layout .";
- align-items: center;
- gap: var(--cpd-space-3x);
- padding-block: var(--cpd-space-10x);
+/* Normally the footer uses a transparent background to allow our expressive
+page gradients to shine through. However, we sometimes need to visually separate
+it from the content underneath. If the call layout is overflowing, or if the
+spotlight tile is maximised and displaying video, apply a gradient background. */
+.overflowing > .footer,
+.fixedGrid:has(
+ > .tile[data-maximised="true"]
+ .spotlightItem[data-background="transparent"][data-video-enabled="true"][aria-hidden="false"]
+ )
+ ~ .footer {
background: linear-gradient(
180deg,
rgba(0, 0, 0, 0) 0%,
@@ -50,99 +31,54 @@ Please see LICENSE in the repository root for full details.
);
}
-.footer.hidden {
+.header {
+ position: sticky;
+ flex-shrink: 0;
+ inset-block-start: 0;
+ z-index: var(--call-view-header-footer-layer);
+ background: linear-gradient(
+ 0deg,
+ rgba(0, 0, 0, 0) 0%,
+ var(--cpd-color-bg-canvas-default) 100%
+ );
+}
+
+.header.hidden {
display: none;
}
-.footer.overlay {
- position: absolute;
- inset-block-end: 0;
- inset-inline: 0;
+.header.overlay {
+ /* Note that the header is still position: sticky in this case so that certain
+ tiles can move down out of the way of the header when visible. */
opacity: 1;
transition: opacity 0.15s;
}
-.footer.overlay.hidden {
- display: grid;
+.header.overlay.hidden {
+ display: flex;
opacity: 0;
+ pointer-events: none;
+ /* Switch to position: absolute so the header takes up no space in the layout
+ when hidden. */
+ position: absolute;
+ inset-block-start: 0;
+ inset-inline: 0;
}
-.footer.overlay:has(:focus-visible) {
+.header.overlay:has(:focus-visible) {
opacity: 1;
pointer-events: initial;
}
-.logo {
- grid-area: logo;
- justify-self: start;
- display: flex;
- align-items: center;
- gap: var(--cpd-space-2x);
- padding-inline-start: var(--cpd-space-1x);
+.header.filler {
+ block-size: var(--cpd-space-6x);
+ background: none;
}
-.buttons {
- grid-area: buttons;
- justify-self: center;
- display: flex;
- gap: var(--cpd-space-3x);
-}
-
-.layout {
- grid-area: layout;
- justify-self: end;
-}
-
-@media (max-width: 660px) {
- .footer {
- grid-template-areas: ". buttons buttons buttons .";
- }
-
- .logo {
+@media (max-width: 320px) {
+ .invite {
display: none;
}
-
- .layout {
- display: none !important;
- }
-}
-
-@media (max-width: 370px) {
- .raiseHand {
- display: none;
- }
-}
-
-@media (max-width: 340px) {
- .invite,
- .switchCamera,
- .shareScreen {
- display: none;
- }
-
- @media (max-height: 400px) {
- .footer {
- display: none;
- }
- }
-}
-
-@media (max-height: 400px) {
- .footer {
- padding-block: var(--cpd-space-4x);
- }
-}
-
-@media (max-height: 800px) {
- .footer {
- padding-block: var(--cpd-space-8x);
- }
-}
-
-@media (min-width: 800px) {
- .buttons {
- gap: var(--cpd-space-4x);
- }
}
.fixedGrid {
@@ -163,19 +99,18 @@ Please see LICENSE in the repository root for full details.
/* Disable pointer events so the overlay doesn't block interaction with
elements behind it */
pointer-events: none;
-}
-.fixedGrid > :not(:first-child),
-.scrollingGrid > :not(:first-child) {
- pointer-events: initial;
+ > :not(:first-child) {
+ pointer-events: initial;
+ }
+
+ .tile {
+ position: absolute;
+ inset-block-start: 0;
+ }
}
.tile {
- position: absolute;
- inset-block-start: 0;
-}
-
-.tile.maximised {
position: relative;
flex-grow: 1;
}
diff --git a/src/room/InCallView.test.tsx b/src/room/InCallView.test.tsx
new file mode 100644
index 000000000..94b152e43
--- /dev/null
+++ b/src/room/InCallView.test.tsx
@@ -0,0 +1,228 @@
+/*
+Copyright 2025 New Vector Ltd.
+Copyright 2026 Element Creations Ltd.
+
+SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
+Please see LICENSE in the repository root for full details.
+*/
+
+import {
+ beforeEach,
+ describe,
+ expect,
+ it,
+ type MockedFunction,
+ vi,
+} from "vitest";
+import { render, type RenderResult } from "@testing-library/react";
+import { type LocalParticipant } from "livekit-client";
+import { BehaviorSubject, of } from "rxjs";
+import { BrowserRouter } from "react-router-dom";
+import { TooltipProvider } from "@vector-im/compound-web";
+import { RoomContext, useLocalParticipant } from "@livekit/components-react";
+import userEvent from "@testing-library/user-event";
+
+import { InCallView } from "./InCallView";
+import {
+ mockLivekitRoom,
+ mockLocalParticipant,
+ mockMediaDevices,
+ mockMuteStates,
+ mockRemoteParticipant,
+ mockRtcMembership,
+ type MockRTCSession,
+} from "../utils/test";
+import { E2eeType } from "../e2ee/e2eeType";
+import { getBasicCallViewModelEnvironment } from "../utils/test-viewmodel";
+import {
+ type CallViewModel,
+ type CallViewModelOptions,
+} from "../state/CallViewModel/CallViewModel";
+import { alice, local } from "../utils/test-fixtures";
+import { ReactionsSenderProvider } from "../reactions/useReactionsSender";
+import { useRoomEncryptionSystem } from "../e2ee/sharedKeyManagement";
+import { LivekitRoomAudioRenderer } from "../livekit/MatrixAudioRenderer";
+import { MediaDevicesContext } from "../MediaDevicesContext";
+import { type MediaDevices as ECMediaDevices } from "../state/MediaDevices";
+import { AppBar } from "../AppBar";
+import { initializeWidget } from "../widget";
+
+initializeWidget();
+vi.hoisted(
+ () =>
+ // Use globalThis rather than global because vite-plugin-node-polyfills seems
+ // to rewrite global into an import which then interferes with vitest's hoisting
+ // which runs before imports.
+ (globalThis.ImageData = class MockImageData {
+ public data: number[] = [];
+ } as unknown as typeof ImageData),
+);
+
+vi.mock("../soundUtils");
+vi.mock("../useAudioContext");
+vi.mock("../tile/GridTile");
+vi.mock("../tile/SpotlightTile");
+vi.mock("@livekit/components-react");
+vi.mock("livekit-client/e2ee-worker?worker");
+vi.mock("../e2ee/sharedKeyManagement");
+vi.mock("../livekit/MatrixAudioRenderer");
+vi.mock("react-use-measure", () => ({
+ default: (): [() => void, object] => [(): void => {}, {}],
+}));
+
+const localRtcMember = mockRtcMembership("@carol:example.org", "CCCC");
+const localParticipant = mockLocalParticipant({
+ identity: "@local:example.org:AAAAAA",
+});
+const remoteParticipant = mockRemoteParticipant({
+ identity: "@alice:example.org:AAAAAA",
+});
+
+let useRoomEncryptionSystemMock: MockedFunction;
+
+beforeEach(() => {
+ vi.clearAllMocks();
+
+ // MatrixAudioRenderer is tested separately.
+ (
+ LivekitRoomAudioRenderer as MockedFunction
+ ).mockImplementation((_props) => {
+ return
mocked: MatrixAudioRenderer
;
+ });
+ (
+ useLocalParticipant as MockedFunction
+ ).mockImplementation(
+ () =>
+ ({
+ isScreenShareEnabled: false,
+ localParticipant: localRtcMember as unknown as LocalParticipant,
+ }) as unknown as ReturnType,
+ );
+ useRoomEncryptionSystemMock =
+ useRoomEncryptionSystem as typeof useRoomEncryptionSystemMock;
+ useRoomEncryptionSystemMock.mockReturnValue({ kind: E2eeType.NONE });
+});
+interface CreateInCallViewArgs {
+ mediaDevices?: ECMediaDevices;
+ callViewModelOptions?: Partial;
+ /** If true, wraps the rendered tree in an AppBar provider */
+ withAppBar?: boolean;
+}
+function createInCallView(args: CreateInCallViewArgs = {}): RenderResult & {
+ rtcSession: MockRTCSession;
+ vm: CallViewModel;
+} {
+ const mediaDevices = args.mediaDevices ?? mockMediaDevices({});
+ const muteState = mockMuteStates();
+ const livekitRoom = mockLivekitRoom(
+ {
+ localParticipant,
+ },
+ {
+ remoteParticipants$: of([remoteParticipant]),
+ },
+ );
+ const { vm, footerVm, rtcSession } = getBasicCallViewModelEnvironment(
+ [local, alice],
+ undefined,
+ mediaDevices,
+ args.callViewModelOptions,
+ );
+
+ rtcSession.joined = true;
+ const room = rtcSession.room;
+ const client = room.client;
+
+ const inCallView = (
+
+ );
+
+ const content = args.withAppBar ? {inCallView} : inCallView;
+
+ const renderResult = render(
+
+
+
+
+ {content}
+
+
+
+ ,
+ );
+ return {
+ ...renderResult,
+ rtcSession,
+ vm,
+ };
+}
+
+describe("InCallView", () => {
+ describe("rendering", () => {
+ it("renders", () => {
+ const { container } = createInCallView();
+ expect(container).toMatchSnapshot();
+ });
+ });
+
+ describe("audioOutputSwitcher", () => {
+ it("is visible and can be clicked", async () => {
+ const user = userEvent.setup();
+ const switchFn = vi.fn();
+ // Create mediaDevices with a speaker and an earpiece available,
+ // with the speaker currently selected.
+ // This is needed so that the audio switcher button is visible
+ const available$ = new BehaviorSubject(
+ new Map([
+ ["speaker-id", { type: "speaker" }],
+ ["earpiece-id", { type: "earpiece" }],
+ ]),
+ );
+ const selected$ = new BehaviorSubject({
+ id: "speaker-id",
+ virtualEarpiece: false,
+ });
+
+ const mediaDevices = mockMediaDevices({
+ audioOutput: {
+ available$,
+ selected$,
+ select: switchFn,
+ },
+ });
+
+ const { getByRole } = createInCallView({ mediaDevices });
+ // The button should be visible. When current output is "speaker",
+ const audioOutputBtn = getByRole("button", { name: "Loudspeaker" });
+ expect(audioOutputBtn).toBeVisible();
+
+ await user.click(audioOutputBtn);
+
+ // Clicking the button should call select -> switchFn with the earpiece device id
+ expect(switchFn).toHaveBeenCalledWith("earpiece-id");
+ });
+ });
+});
diff --git a/src/room/InCallView.tsx b/src/room/InCallView.tsx
index 53742fc27..322380eee 100644
--- a/src/room/InCallView.tsx
+++ b/src/room/InCallView.tsx
@@ -5,81 +5,52 @@ SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
Please see LICENSE in the repository root for full details.
*/
-import {
- RoomAudioRenderer,
- RoomContext,
- useLocalParticipant,
-} from "@livekit/components-react";
-import { ConnectionState, type Room } from "livekit-client";
-import { type MatrixClient } from "matrix-js-sdk";
+import { type MatrixClient, type Room as MatrixRoom } from "matrix-js-sdk";
import {
type FC,
- type PointerEvent,
- type PropsWithoutRef,
- type TouchEvent,
- forwardRef,
+ type PointerEvent as ReactPointerEvent,
useCallback,
useEffect,
useMemo,
useRef,
useState,
type JSX,
+ type ReactNode,
} from "react";
import useMeasure from "react-use-measure";
import { type MatrixRTCSession } from "matrix-js-sdk/lib/matrixrtc";
import classNames from "classnames";
-import { BehaviorSubject, map } from "rxjs";
-import { useObservable, useObservableEagerState } from "observable-hooks";
-import { logger } from "matrix-js-sdk/lib/logger";
+import { map } from "rxjs";
+import { useObservable } from "observable-hooks";
+import { logger as rootLogger } from "matrix-js-sdk/lib/logger";
+import { useTranslation } from "react-i18next";
-import LogoMark from "../icons/LogoMark.svg?react";
-import LogoType from "../icons/LogoType.svg?react";
-import type { IWidgetApiRequest } from "matrix-widget-api";
-import {
- EndCallButton,
- MicButton,
- VideoButton,
- ShareScreenButton,
- SettingsButton,
- ReactionToggleButton,
- SwitchCameraButton,
-} from "../button";
import { Header, LeftNav, RightNav, RoomHeaderInfo } from "../Header";
-import { useUrlParams } from "../UrlParams";
+import { HeaderStyle, useUrlParams } from "../UrlParams";
import { useCallViewKeyboardShortcuts } from "../useCallViewKeyboardShortcuts";
-import { ElementWidgetActions, widget } from "../widget";
+import { widget } from "../widget";
import styles from "./InCallView.module.css";
import { GridTile } from "../tile/GridTile";
-import { type OTelGroupCallMembership } from "../otel/OTelGroupCallMembership";
import { SettingsModal, defaultSettingsTab } from "../settings/SettingsModal";
import { useRageshakeRequestModal } from "../settings/submit-rageshake";
import { RageshakeRequestModal } from "./RageshakeRequestModal";
-import { useLiveKit } from "../livekit/useLiveKit";
import { useWakeLock } from "../useWakeLock";
import { useMergedRefs } from "../useMergedRefs";
-import { type MuteStates } from "./MuteStates";
+import { type MuteStates } from "../state/MuteStates";
import { type MatrixInfo } from "./VideoPreview";
import { InviteButton } from "../button/InviteButton";
-import { LayoutToggle } from "./LayoutToggle";
-import { type ECConnectionState } from "../livekit/useECConnectionState";
-import { useOpenIDSFU } from "../livekit/openIDSFU";
import {
- CallViewModel,
- type GridMode,
- type Layout,
-} from "../state/CallViewModel";
+ type CallViewModel,
+ createCallViewModel$,
+} from "../state/CallViewModel/CallViewModel.ts";
import { Grid, type TileProps } from "../grid/Grid";
-import { useInitial } from "../useInitial";
import { SpotlightTile } from "../tile/SpotlightTile";
import { type EncryptionSystem } from "../e2ee/sharedKeyManagement";
import { E2eeType } from "../e2ee/e2eeType";
import { makeGridLayout } from "../grid/GridLayout";
-import {
- type CallLayoutOutputs,
- defaultPipAlignment,
- defaultSpotlightAlignment,
-} from "../grid/CallLayout";
-import { makeOneOnOneLayout } from "../grid/OneOnOneLayout";
+import { type CallLayoutOutputs } from "../grid/CallLayout";
+import { makeOneOnOneDesktopLayout } from "../grid/OneOnOneDesktopLayout";
+import { makeOneOnOneMobileLayout } from "../grid/OneOnOneMobileLayout";
import { makeSpotlightExpandedLayout } from "../grid/SpotlightExpandedLayout";
import { makeSpotlightLandscapeLayout } from "../grid/SpotlightLandscapeLayout";
import { makeSpotlightPortraitLayout } from "../grid/SpotlightPortraitLayout";
@@ -89,224 +60,254 @@ import {
useReactionsSender,
} from "../reactions/useReactionsSender";
import { ReactionsAudioRenderer } from "./ReactionAudioRenderer";
-import { useSwitchCamera } from "./useSwitchCamera";
import { ReactionsOverlay } from "./ReactionsOverlay";
import { CallEventAudioRenderer } from "./CallEventAudioRenderer";
-import {
- debugTileLayout as debugTileLayoutSetting,
- useSetting,
-} from "../settings/settings";
+import { matrixRTCMode as matrixRTCModeSetting } from "../settings/settings";
import { ReactionsReader } from "../reactions/ReactionsReader";
-import { ConnectionLostError } from "../utils/errors.ts";
+import { LivekitRoomAudioRenderer } from "../livekit/MatrixAudioRenderer.tsx";
+import { muteAllAudio$ } from "../state/MuteAllAudioModel.ts";
+import { useMediaDevices } from "../MediaDevicesContext.ts";
+import { EarpieceOverlay } from "./EarpieceOverlay.tsx";
+import {
+ useAppBarHidden,
+ useAppBarSecondaryButton,
+ useAppBarSubtitle,
+} from "../AppBar.tsx";
+import { useBehavior } from "../useBehavior.ts";
+import { constant } from "../state/Behavior.ts";
+import { Toast } from "../Toast.tsx";
+import overlayStyles from "../Overlay.module.css";
+import { useTrackProcessorObservable$ } from "../livekit/TrackProcessorContext.tsx";
+import { type Layout } from "../state/layout-types.ts";
+import { ObservableScope } from "../state/ObservableScope.ts";
+import { CallFooter, type FooterSnapshot } from "../components/CallFooter.tsx";
+import { SettingsIconButton } from "../button/Button.tsx";
+import { createCallFooterViewModel } from "../components/CallFooterViewModel.tsx";
+import { type ViewModel } from "../state/ViewModel.ts";
+import { RingingStatus } from "../tile/RingingStatus.tsx";
+import { RingingAudioRenderer } from "./RingingAudioRenderer.tsx";
-const canScreenshare = "getDisplayMedia" in (navigator.mediaDevices ?? {});
+declare module "react" {
+ interface CSSProperties {
+ "--call-view-safe-area-inset-top"?: string;
+ "--call-view-safe-area-inset-bottom"?: string;
+ }
+}
-const maxTapDurationMs = 400;
-
-export interface ActiveCallProps
- extends Omit {
+export interface ActiveCallProps extends Omit<
+ InCallViewProps,
+ "vm" | "livekitRoom" | "connState" | "footerVm"
+> {
e2eeSystem: EncryptionSystem;
+ // TODO refactor those reasons into an enum
+ onLeft: (
+ reason: "user" | "timeout" | "decline" | "allOthersLeft" | "error",
+ ) => void;
}
export const ActiveCall: FC = (props) => {
- const sfuConfig = useOpenIDSFU(props.client, props.rtcSession);
- const { livekitRoom, connState } = useLiveKit(
- props.rtcSession,
- props.muteStates,
- sfuConfig,
- props.e2eeSystem,
- );
- const connStateObservable$ = useObservable(
- (inputs$) => inputs$.pipe(map(([connState]) => connState)),
- [connState],
- );
const [vm, setVm] = useState(null);
-
+ const [footerVm, setFooterVm] = useState | null>(
+ null,
+ );
+ const urlParams = useUrlParams();
+ const mediaDevices = useMediaDevices();
+ const trackProcessorState$ = useTrackProcessorObservable$();
useEffect(() => {
+ rootLogger.info("START CALL VIEW SCOPE");
+ const scope = new ObservableScope();
+ const reactionsReader = new ReactionsReader(scope, props.rtcSession);
+ const { autoLeaveWhenOthersLeft, waitForCallPickup, sendNotificationType } =
+ urlParams;
+
+ const vm = createCallViewModel$(
+ scope,
+ props.rtcSession,
+ props.matrixRoom,
+ mediaDevices,
+ props.muteStates,
+ {
+ encryptionSystem: props.e2eeSystem,
+ autoLeaveWhenOthersLeft,
+ waitForCallPickup: waitForCallPickup && sendNotificationType === "ring",
+ matrixRTCMode$: matrixRTCModeSetting.value$,
+ },
+ reactionsReader.raisedHands$,
+ reactionsReader.reactions$,
+ scope.behavior(trackProcessorState$),
+ );
+ // TODO move this somewhere else once we use the callViewModel in the lobby as well!
+ vm.join();
+ setVm(vm);
+
+ vm.leave$.pipe(scope.bind()).subscribe(props.onLeft);
+
return (): void => {
- livekitRoom?.disconnect().catch((e) => {
- logger.error("Failed to disconnect from livekit room", e);
- });
+ scope.end();
};
- // eslint-disable-next-line react-hooks/exhaustive-deps
- }, []);
+ }, [
+ props.rtcSession,
+ props.matrixRoom,
+ props.muteStates,
+ props.e2eeSystem,
+ props.onLeft,
+ urlParams,
+ mediaDevices,
+ trackProcessorState$,
+ props.client,
+ ]);
useEffect(() => {
- if (livekitRoom !== undefined) {
- const reactionsReader = new ReactionsReader(props.rtcSession);
- const vm = new CallViewModel(
- props.rtcSession,
- livekitRoom,
- props.e2eeSystem,
- connStateObservable$,
- reactionsReader.raisedHands$,
- reactionsReader.reactions$,
- );
- setVm(vm);
- return (): void => {
- vm.destroy();
- reactionsReader.destroy();
- };
- }
- }, [props.rtcSession, livekitRoom, props.e2eeSystem, connStateObservable$]);
+ if (vm === null) return;
- if (livekitRoom === undefined || vm === null) return null;
+ const scope = new ObservableScope();
+ const footerVm = createCallFooterViewModel(
+ scope,
+ vm,
+ props.muteStates,
+ mediaDevices,
+ `${props.client.getUserId()}:${props.client.getDeviceId()}`,
+ );
+ setFooterVm(footerVm);
+
+ return (): void => {
+ scope.end();
+ };
+ }, [
+ props.rtcSession,
+ props.matrixRoom,
+ props.muteStates,
+ props.e2eeSystem,
+ props.onLeft,
+ urlParams,
+ mediaDevices,
+ trackProcessorState$,
+ props.client,
+ vm,
+ ]);
+
+ if (vm === null) return null;
+ if (footerVm === null) return null;
return (
-
-
-
-
-
+
+
+
);
};
export interface InCallViewProps {
client: MatrixClient;
vm: CallViewModel;
+ footerVm: ViewModel;
matrixInfo: MatrixInfo;
rtcSession: MatrixRTCSession;
- livekitRoom: Room;
+ matrixRoom: MatrixRoom;
muteStates: MuteStates;
- participantCount: number;
- /** Function to call when the user explicitly ends the call */
- onLeave: () => void;
- hideHeader: boolean;
- otelGroupCallMembership?: OTelGroupCallMembership;
- connState: ECConnectionState;
onShareClick: (() => void) | null;
}
export const InCallView: FC = ({
client,
vm,
+ footerVm,
matrixInfo,
- rtcSession,
- livekitRoom,
+ matrixRoom,
muteStates,
- participantCount,
- onLeave,
- hideHeader,
- connState,
onShareClick,
}) => {
- const { supportsReactions, sendReaction, toggleRaisedHand } =
- useReactionsSender();
+ const logger = rootLogger.getChild("[InCallView]");
+ const { t } = useTranslation();
+ const { sendReaction, toggleRaisedHand } = useReactionsSender();
useWakeLock();
+ // TODO-MULTI-SFU This is unused now??
+ // const connectionState = useObservableEagerState(vm.livekitConnectionState$);
// annoyingly we don't get the disconnection reason this way,
// only by listening for the emitted event
- if (connState === ConnectionState.Disconnected)
- throw new ConnectionLostError();
+ // This needs to be done differential. with the vm connection state we start with Disconnected.
+ // TODO-MULTI-SFU decide how to handle this properly
+ // @BillCarsonFr
+ // if (connectionState === ConnectionState.Disconnected)
+ // throw new ConnectionLostError();
const containerRef1 = useRef(null);
const [containerRef2, bounds] = useMeasure();
// Merge the refs so they can attach to the same element
const containerRef = useMergedRefs(containerRef1, containerRef2);
- const { hideScreensharing, showControls } = useUrlParams();
+ const { showControls, header: headerStyle } = useUrlParams();
- const { isScreenShareEnabled, localParticipant } = useLocalParticipant({
- room: livekitRoom,
- });
+ const muteAllAudio = useBehavior(muteAllAudio$);
+ const toggleAudio = useBehavior(muteStates.audio.toggle$);
+ const toggleVideo = useBehavior(muteStates.video.toggle$);
+ const setAudioEnabled = useBehavior(muteStates.audio.setEnabled$);
- const toggleMicrophone = useCallback(
- () => muteStates.audio.setEnabled?.((e) => !e),
- [muteStates],
- );
- const toggleCamera = useCallback(
- () => muteStates.video.setEnabled?.((e) => !e),
- [muteStates],
- );
-
- // This function incorrectly assumes that there is a camera and microphone, which is not always the case.
- // TODO: Make sure that this module is resilient when it comes to camera/microphone availability!
useCallViewKeyboardShortcuts(
- containerRef1,
- toggleMicrophone,
- toggleCamera,
- (muted) => muteStates.audio.setEnabled?.(!muted),
+ toggleAudio,
+ toggleVideo,
+ setAudioEnabled,
(reaction) => void sendReaction(reaction),
() => void toggleRaisedHand(),
);
- const windowMode = useObservableEagerState(vm.windowMode$);
- const layout = useObservableEagerState(vm.layout$);
- const tileStoreGeneration = useObservableEagerState(vm.tileStoreGeneration$);
- const [debugTileLayout] = useSetting(debugTileLayoutSetting);
- const gridMode = useObservableEagerState(vm.gridMode$);
- const showHeader = useObservableEagerState(vm.showHeader$);
- const showFooter = useObservableEagerState(vm.showFooter$);
- const switchCamera = useSwitchCamera(vm.localVideo$);
+ const ringingVm = useBehavior(vm.ringingVm$);
+ const audioParticipants = useBehavior(vm.livekitRoomItems$);
+ const participantCount = useBehavior(vm.participantCount$);
+ const reconnecting = useBehavior(vm.reconnecting$);
+ const layout = useBehavior(vm.layout$);
+ const edgeToEdge = useBehavior(vm.edgeToEdge$);
+ const overflowing = useBehavior(vm.overflowing$);
+ const showNameTags = useBehavior(vm.showNameTags$);
+ const showHeader = useBehavior(vm.showHeader$);
+ const settingsOpen = useBehavior(vm.settingsOpen$);
+ const setSettingsOpen = useBehavior(vm.setSettingsOpen$);
+ const earpieceMode = useBehavior(vm.earpieceMode$);
+ const audioOutputSwitcher = useBehavior(vm.audioOutputSwitcher$);
- // Ideally we could detect taps by listening for click events and checking
- // that the pointerType of the event is "touch", but this isn't yet supported
- // in Safari: https://developer.mozilla.org/en-US/docs/Web/API/Element/click_event#browser_compatibility
- // Instead we have to watch for sufficiently fast touch events.
- const touchStart = useRef(null);
- const onTouchStart = useCallback(() => (touchStart.current = Date.now()), []);
- const onTouchEnd = useCallback(() => {
- const start = touchStart.current;
- if (start !== null && Date.now() - start <= maxTapDurationMs)
- vm.tapScreen();
- touchStart.current = null;
- }, [vm]);
- const onTouchCancel = useCallback(() => (touchStart.current = null), []);
+ const fatalCallError = useBehavior(vm.fatalError$);
+ // Stop the rendering and throw for the error boundary
+ if (fatalCallError) {
+ logger.debug("fatalCallError stop rendering", fatalCallError);
+ throw fatalCallError;
+ }
- // We also need to tell the footer controls to prevent touch events from
- // bubbling up, or else the footer will be dismissed before a click/change
- // event can be registered on the control
- const onControlsTouchEnd = useCallback(
- (e: TouchEvent) => {
- // Somehow applying pointer-events: none to the controls when the footer
- // is hidden is not enough to stop clicks from happening as the footer
- // becomes visible, so we check manually whether the footer is shown
- if (showFooter) {
- e.stopPropagation();
- vm.tapControls();
- } else {
- e.preventDefault();
- }
+ // iOS Safari doesn't reliably fire `click` on plain
s, so we listen
+ // for `pointerup` instead. Scrolls end in `pointercancel`, not `pointerup`,
+ // so this still only fires for taps.
+ const onViewPointerUp = useCallback(
+ (e: ReactPointerEvent) => {
+ if (
+ e.pointerType === "touch" &&
+ // If an interactive element was tapped, don't count this as a tap on the screen
+ (e.target as Element).closest?.("button, input") === null
+ )
+ vm.tapScreen();
},
- [vm, showFooter],
+ [vm],
);
const onPointerMove = useCallback(
- (e: PointerEvent) => {
+ (e: ReactPointerEvent) => {
if (e.pointerType === "mouse") vm.hoverScreen();
},
[vm],
);
const onPointerOut = useCallback(() => vm.unhoverScreen(), [vm]);
- const [settingsModalOpen, setSettingsModalOpen] = useState(false);
const [settingsTab, setSettingsTab] = useState(defaultSettingsTab);
- const openSettings = useCallback(
- () => setSettingsModalOpen(true),
- [setSettingsModalOpen],
- );
- const closeSettings = useCallback(
- () => setSettingsModalOpen(false),
- [setSettingsModalOpen],
- );
-
const openProfile = useMemo(
() =>
// Profile settings are unavailable in widget mode
widget === null
? (): void => {
setSettingsTab("profile");
- setSettingsModalOpen(true);
+ setSettingsOpen(true);
}
: null,
- [setSettingsTab, setSettingsModalOpen],
+ [setSettingsTab, setSettingsOpen],
);
const [headerRef, headerBounds] = useMeasure();
@@ -317,15 +318,14 @@ export const InCallView: FC = ({
width: bounds.width,
height:
bounds.height -
- headerBounds.height -
- (windowMode === "flat" ? 0 : footerBounds.height),
+ (edgeToEdge ? 0 : headerBounds.height + footerBounds.height),
}),
[
bounds.width,
bounds.height,
headerBounds.height,
footerBounds.height,
- windowMode,
+ edgeToEdge,
],
);
const gridBoundsObservable$ = useObservable(
@@ -333,79 +333,112 @@ export const InCallView: FC = ({
[gridBounds],
);
- const spotlightAlignment$ = useInitial(
- () => new BehaviorSubject(defaultSpotlightAlignment),
- );
- const pipAlignment$ = useInitial(
- () => new BehaviorSubject(defaultPipAlignment),
+ useAppBarHidden(!showHeader);
+ useAppBarSubtitle(
+ ringingVm && vm.ringingStatusLocation === "app_bar" && (
+
+ ),
);
- const setGridMode = useCallback(
- (mode: GridMode) => vm.setGridMode(mode),
- [vm],
- );
-
- useEffect(() => {
- widget?.api.transport
- .send(
- gridMode === "grid"
- ? ElementWidgetActions.TileLayout
- : ElementWidgetActions.SpotlightLayout,
- {},
- )
- .catch((e) => {
- logger.error("Failed to send layout change to widget API", e);
- });
- }, [gridMode]);
-
- useEffect(() => {
- if (widget) {
- const onTileLayout = (ev: CustomEvent): void => {
- setGridMode("grid");
- widget!.api.transport.reply(ev.detail, {});
- };
- const onSpotlightLayout = (ev: CustomEvent): void => {
- setGridMode("spotlight");
- widget!.api.transport.reply(ev.detail, {});
- };
-
- widget.lazyActions.on(ElementWidgetActions.TileLayout, onTileLayout);
- widget.lazyActions.on(
- ElementWidgetActions.SpotlightLayout,
- onSpotlightLayout,
- );
-
- return (): void => {
- widget!.lazyActions.off(ElementWidgetActions.TileLayout, onTileLayout);
- widget!.lazyActions.off(
- ElementWidgetActions.SpotlightLayout,
- onSpotlightLayout,
- );
- };
+ let header: ReactNode = null;
+ switch (headerStyle) {
+ case HeaderStyle.AppBar: {
+ // dont build a header here. The AppBar will take care of it.
+ break;
}
- }, [setGridMode]);
+ case HeaderStyle.None:
+ // Cosmetic header to fill out space while still affecting the bounds of
+ // the grid
+ header = showHeader && (
+
+ );
+ break;
+ case HeaderStyle.Standard:
+ header = (
+
+
+
+
+
+ {showControls && onShareClick !== null && (
+
+ )}
+
+
+ );
+ }
+
+ // The reconnecting toast cannot be dismissed
+ const onDismissReconnectingToast = useCallback(() => {}, []);
+ // We need to use a non-modal toast to avoid trapping focus within the toast.
+ // However, a non-modal toast will not render any background overlay on its
+ // own, so we must render one manually.
+ const reconnectingToast = (
+ <>
+
+
+ {t("common.reconnecting")}
+
+ >
+ );
+
+ const earpieceOverlay = (
+
+ );
+
+ // If the reconnecting toast or earpiece overlay obscures the media tiles, we
+ // need to remove them from the accessibility tree and block focus.
+ const contentObscured = reconnecting || earpieceMode;
const Tile = useMemo(
() =>
- forwardRef<
- HTMLDivElement,
- PropsWithoutRef>
- >(function Tile(
- { className, style, targetWidth, targetHeight, model },
+ function Tile({
ref,
- ) {
- const spotlightExpanded = useObservableEagerState(
- vm.spotlightExpanded$,
- );
- const onToggleExpanded = useObservableEagerState(
- vm.toggleSpotlightExpanded$,
- );
- const showSpeakingIndicatorsValue = useObservableEagerState(
- vm.showSpeakingIndicators$,
- );
- const showSpotlightIndicatorsValue = useObservableEagerState(
+ className,
+ style,
+ targetWidth,
+ targetHeight,
+ model,
+ }: TileProps): ReactNode {
+ const spotlightExpanded = useBehavior(vm.spotlightExpanded$);
+ const onToggleExpanded = useBehavior(vm.toggleSpotlightExpanded$);
+ const showSpotlightIndicators = useBehavior(
vm.showSpotlightIndicators$,
);
+ const showSpeakingIndicators = useBehavior(vm.showSpeakingIndicators$);
+ const showNameTags = useBehavior(vm.showNameTags$);
+ const showRingingStatus = vm.ringingStatusLocation === "tile";
+ const showOutline = useBehavior(
+ model instanceof GridTileViewModel
+ ? model.showOutline$
+ : constant(false),
+ );
return model instanceof GridTileViewModel ? (
= ({
targetHeight={targetHeight}
className={classNames(className, styles.tile)}
style={style}
- showSpeakingIndicators={showSpeakingIndicatorsValue}
+ showSpeakingIndicators={showSpeakingIndicators}
+ showNameTags={showNameTags}
+ showRingingStatus={showRingingStatus}
+ showOutline={showOutline}
+ focusable={!contentObscured}
/>
) : (
= ({
onToggleExpanded={onToggleExpanded}
targetWidth={targetWidth}
targetHeight={targetHeight}
- showIndicators={showSpotlightIndicatorsValue}
+ showIndicators={showSpotlightIndicators}
+ showNameTags={showNameTags}
+ showRingingStatus={showRingingStatus}
+ focusable={!contentObscured}
className={classNames(className, styles.tile)}
+ itemClassName={styles.spotlightItem}
style={style}
/>
);
- }),
- [vm, openProfile],
+ },
+ [vm, openProfile, contentObscured],
);
const layouts = useMemo(() => {
- const inputs = {
- minBounds$: gridBoundsObservable$,
- spotlightAlignment$,
- pipAlignment$,
- };
+ const inputs = { minBounds$: gridBoundsObservable$ };
return {
grid: makeGridLayout(inputs),
"spotlight-landscape": makeSpotlightLandscapeLayout(inputs),
"spotlight-portrait": makeSpotlightPortraitLayout(inputs),
"spotlight-expanded": makeSpotlightExpandedLayout(inputs),
- "one-on-one": makeOneOnOneLayout(inputs),
+ "one-on-one-desktop": makeOneOnOneDesktopLayout(inputs),
+ "one-on-one-mobile": makeOneOnOneMobileLayout(inputs),
};
- }, [gridBoundsObservable$, spotlightAlignment$, pipAlignment$]);
+ }, [gridBoundsObservable$]);
+ const showFooter = useBehavior(footerVm.showFooter$);
const renderContent = (): JSX.Element => {
if (layout.type === "pip") {
return (
);
}
@@ -471,12 +516,31 @@ export const InCallView: FC = ({
key="fixed"
className={styles.fixedGrid}
style={{
- insetBlockStart: headerBounds.bottom,
- height: gridBounds.height,
+ // If not edge-to-edge, consume the header insets right here.
+ insetBlockStart: edgeToEdge ? 0 : bounds.top + headerBounds.height,
+ height: edgeToEdge ? "100%" : gridBounds.height,
+ // If edge-to-edge, compute new safe area insets that account for the
+ // header and footer, passing them down to the tiles.
+ "--call-view-safe-area-inset-top":
+ edgeToEdge && headerStyle !== HeaderStyle.None && showHeader
+ ? // Header has two relevant cases: if it's an app bar, it lives
+ // outside the InCallView and consumes the safe area insets
+ // itself. Otherwise account for the safe area and header size
+ // as part of the InCallView.
+ headerStyle === HeaderStyle.AppBar
+ ? `${bounds.top}px`
+ : `calc(env(safe-area-inset-top) + ${headerBounds.height}px)`
+ : undefined,
+ "--call-view-safe-area-inset-bottom":
+ edgeToEdge && showFooter
+ ? // Footer always lives inside the InCallView.
+ `calc(env(safe-area-inset-bottom) + ${footerBounds.height}px)`
+ : undefined,
}}
model={layout}
Layout={layers.fixed}
Tile={Tile}
+ aria-hidden={contentObscured}
/>
);
const scrollingGrid = (
@@ -486,186 +550,76 @@ export const InCallView: FC = ({
model={layout}
Layout={layers.scrolling}
Tile={Tile}
+ aria-hidden={contentObscured}
/>
);
- // The grid tiles go *under* the spotlight in the portrait layout, but
- // *over* the spotlight in the expanded layout
- return layout.type === "spotlight-expanded" ? (
- <>
- {fixedGrid}
- {scrollingGrid}
- >
- ) : (
- <>
- {scrollingGrid}
- {fixedGrid}
- >
- );
+
+ // Put the right layer in the foreground for the requested layout
+ switch (layers.foreground) {
+ case "fixed":
+ return (
+ <>
+ {scrollingGrid}
+ {fixedGrid}
+ >
+ );
+ case "scrolling":
+ return (
+ <>
+ {fixedGrid}
+ {scrollingGrid}
+ >
+ );
+ }
};
const rageshakeRequestModalProps = useRageshakeRequestModal(
- rtcSession.room.roomId,
+ matrixRoom.roomId,
);
- const toggleScreensharing = useCallback(() => {
- localParticipant
- .setScreenShareEnabled(!isScreenShareEnabled, {
- audio: true,
- selfBrowserSurface: "include",
- surfaceSwitching: "include",
- systemAudio: "include",
- })
- .catch(logger.error);
- }, [localParticipant, isScreenShareEnabled]);
-
- const buttons: JSX.Element[] = [];
-
- buttons.push(
- ,
- setSettingsOpen(true)}
+ data-testid="settings-app-bar"
/>,
);
- if (switchCamera !== null)
- buttons.push(
- ,
- );
- if (canScreenshare && !hideScreensharing) {
- buttons.push(
- ,
- );
- }
- if (supportsReactions) {
- buttons.push(
- ,
- );
- }
- if (layout.type !== "pip")
- buttons.push(
- ,
- );
- buttons.push(
- ,
- );
- const footer = (
-
- {!hideHeader && (
-
-
-
- {/* Don't mind this odd placement, it's just a little debug label */}
- {debugTileLayout
- ? `Tiles generation: ${tileStoreGeneration}`
- : undefined}
-
- )}
- {showControls &&
{buttons}
}
- {showControls && (
-
- )}
-
+ // Only hide the settings button if we have an AppBar header and we are showing the header
+ const footer = footerVm !== null && (
+
);
+ const allConnections = useBehavior(vm.allConnections$);
return (
+ // The pointer handler here exists to control the visibility of the footer,
+ // and the footer is also viewable by moving focus into it, so this is fine.
+ // eslint-disable-next-line jsx-a11y/no-static-element-interactions
- {showHeader &&
- (hideHeader ? (
- // Cosmetic header to fill out space while still affecting the bounds
- // of the grid
-
- ) : (
-
-
-
-
-
- {showControls && onShareClick !== null && (
-
- )}
-
-
- ))}
-
+ {header}
+ {audioParticipants.map(({ livekitRoom, url, participants }) => (
+
+ ))}
{renderContent()}
-
-
+
+
+
+ {reconnectingToast}
+ {earpieceOverlay}
{footer}
{layout.type !== "pip" && (
@@ -673,12 +627,20 @@ export const InCallView: FC = ({
setSettingsOpen(false)}
tab={settingsTab}
onTabChange={setSettingsTab}
- livekitRoom={livekitRoom}
+ livekitRooms={allConnections
+ .getConnections()
+ .map((connectionItem) => ({
+ room: connectionItem.livekitRoom,
+ livekitAlias: connectionItem.livekitAlias,
+ // TODO compute is local or tag it in the livekit room items already
+ isLocal: undefined,
+ url: connectionItem.transport.livekit_service_url,
+ }))}
/>
>
)}
diff --git a/src/room/InviteModal.tsx b/src/room/InviteModal.tsx
index 8ee68cb8e..759dce302 100644
--- a/src/room/InviteModal.tsx
+++ b/src/room/InviteModal.tsx
@@ -19,7 +19,7 @@ import {
LinkIcon,
CheckIcon,
} from "@vector-im/compound-design-tokens/assets/web/icons";
-import useClipboard from "react-use-clipboard";
+import copy from "copy-to-clipboard";
import { Modal } from "../Modal";
import { getAbsoluteRoomUrl } from "../utils/matrix";
@@ -42,18 +42,17 @@ export const InviteModal: FC = ({ room, open, onDismiss }) => {
() => getAbsoluteRoomUrl(room.roomId, e2eeSystem, room.name),
[e2eeSystem, room.name, room.roomId],
);
- const [, setCopied] = useClipboard(url);
const [toastOpen, setToastOpen] = useState(false);
const onToastDismiss = useCallback(() => setToastOpen(false), [setToastOpen]);
const onButtonClick = useCallback(
(e: MouseEvent) => {
e.stopPropagation();
- setCopied();
+ copy(url);
onDismiss();
setToastOpen(true);
},
- [setCopied, onDismiss],
+ [url, onDismiss],
);
return (
diff --git a/src/room/LayoutSwitch.tsx b/src/room/LayoutSwitch.tsx
new file mode 100644
index 000000000..91ba0654f
--- /dev/null
+++ b/src/room/LayoutSwitch.tsx
@@ -0,0 +1,44 @@
+/*
+Copyright 2026 Element Creations Ltd.
+
+SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
+Please see LICENSE in the repository root for full details.
+*/
+
+import { useId, type FC } from "react";
+import {
+ SpotlightViewIcon,
+ GridIcon,
+} from "@vector-im/compound-design-tokens/assets/web/icons";
+
+import { type LayoutSwitchViewModel } from "../state/LayoutSwitchViewModel";
+import { useBehavior } from "../useBehavior";
+import { useTranslation } from "react-i18next";
+import { Switch } from "@vector-im/compound-web";
+
+interface Props {
+ vm: LayoutSwitchViewModel;
+ className?: string;
+}
+
+export const LayoutSwitch: FC = ({ vm, className }) => {
+ const { t } = useTranslation();
+ const layout = useBehavior(vm.layout$);
+ const name = useId();
+
+ return (
+
+ name={name}
+ aria-label={t("layout_switch_label")}
+ leftLabel={t("layout_spotlight_label")}
+ leftValue="spotlight"
+ leftIcon={SpotlightViewIcon}
+ rightLabel={t("layout_grid_label")}
+ rightValue="grid"
+ rightIcon={GridIcon}
+ className={className}
+ value={layout}
+ onChange={vm.setLayout}
+ />
+ );
+};
diff --git a/src/room/LayoutToggle.module.css b/src/room/LayoutToggle.module.css
deleted file mode 100644
index d9ae58137..000000000
--- a/src/room/LayoutToggle.module.css
+++ /dev/null
@@ -1,79 +0,0 @@
-/*
-Copyright 2023, 2024 New Vector Ltd.
-
-SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
-Please see LICENSE in the repository root for full details.
-*/
-
-.toggle {
- padding: 2px;
- border: 1px solid var(--cpd-color-border-interactive-secondary);
- border-radius: var(--cpd-radius-pill-effect);
- background: var(--cpd-color-bg-canvas-default);
- display: flex;
- position: relative;
-}
-
-.toggle input {
- appearance: none;
- /* Safari puts a margin on these, which is not removed via appearance: none */
- margin: 0;
- block-size: var(--cpd-space-11x);
- inline-size: var(--cpd-space-11x);
- cursor: pointer;
- border-radius: var(--cpd-radius-pill-effect);
- background: var(--cpd-color-bg-action-secondary-rest);
- box-shadow: var(--small-drop-shadow);
- transition: background-color 0.1s;
-}
-
-.toggle svg {
- display: block;
- position: absolute;
- padding: calc(2.5 * var(--cpd-space-1x));
- pointer-events: none;
- color: var(--cpd-color-icon-primary);
- transition: color 0.1s;
-}
-
-.toggle svg:nth-child(2) {
- inset-inline-start: 2px;
-}
-
-.toggle svg:nth-child(4) {
- inset-inline-end: 2px;
-}
-
-@media (hover: hover) {
- .toggle input:hover {
- background: var(--cpd-color-bg-action-secondary-hovered);
- box-shadow: none;
- }
-}
-
-.toggle input:active {
- background: var(--cpd-color-bg-action-secondary-pressed);
- box-shadow: none;
-}
-
-.toggle input:checked {
- background: var(--cpd-color-bg-action-primary-rest);
-}
-
-.toggle input:checked + svg {
- color: var(--cpd-color-icon-on-solid-primary);
-}
-
-@media (hover: hover) {
- .toggle input:checked:hover {
- background: var(--cpd-color-bg-action-primary-hovered);
- }
-}
-
-.toggle input:checked:active {
- background: var(--cpd-color-bg-action-primary-pressed);
-}
-
-.toggle input:first-child {
- margin-inline-end: 5px;
-}
diff --git a/src/room/LayoutToggle.tsx b/src/room/LayoutToggle.tsx
deleted file mode 100644
index 6cddc95f6..000000000
--- a/src/room/LayoutToggle.tsx
+++ /dev/null
@@ -1,67 +0,0 @@
-/*
-Copyright 2023, 2024 New Vector Ltd.
-
-SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
-Please see LICENSE in the repository root for full details.
-*/
-
-import { type ChangeEvent, type FC, type TouchEvent, useCallback } from "react";
-import { useTranslation } from "react-i18next";
-import { Tooltip } from "@vector-im/compound-web";
-import {
- SpotlightIcon,
- GridIcon,
-} from "@vector-im/compound-design-tokens/assets/web/icons";
-import classNames from "classnames";
-
-import styles from "./LayoutToggle.module.css";
-
-export type Layout = "spotlight" | "grid";
-
-interface Props {
- layout: Layout;
- setLayout: (layout: Layout) => void;
- className?: string;
- onTouchEnd?: (e: TouchEvent) => void;
-}
-
-export const LayoutToggle: FC = ({
- layout,
- setLayout,
- className,
- onTouchEnd,
-}) => {
- const { t } = useTranslation();
-
- const onChange = useCallback(
- (e: ChangeEvent) => setLayout(e.target.value as Layout),
- [setLayout],
- );
-
- return (
-